.tab-switcher-container {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 4px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.4);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.tab-switcher-container:hover {
    opacity: 1;
}
.view-tab-btn.active {
    background: white;
    color: #ef4444; /* red-500 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .tab-switcher-container {
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        padding: 8px 16px calc(8px + env(safe-area-inset-bottom));
    }
    .tab-switcher-container .flex {
        width: 100%;
    }
    .view-tab-btn {
        flex: 1;
        justify-content: center;
    }
}
