/* Tab switcher */
.tabs-con-switcher {
    display: flex;
    gap: 8px;
    margin: 24px 0 32px;
    padding: 8px;
    border-radius: 8px;
}

.tabs-btn-tab {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
    opacity: 0.6;
}

.tabs-btn-tab:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
}

.tabs-btn-tab.active {
    background: #2563eb;
    color: #fff !important;
    opacity: 1;
}

/* Panels */
.tabs-con-panel {
    display: none;
    animation: tabsFadeIn 0.25s ease;
}

.tabs-con-panel.active {
    display: block;
}

@keyframes tabsFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}