/* Tab Navigation */
.tab-navigation {
    display: flex;
    gap: 4px;
    margin-bottom: 32px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--neutral-gray-200);
    width: 100%;
    max-width: 100%;
    position: relative;
}

.tab-button {
    background: transparent;
    border: none;
    padding: 14px 32px;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--neutral-gray-600);
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    font-family: var(--font-family);
    position: relative;
    flex: 1;
    text-align: center;
    min-width: 160px;
}

.tab-button:hover {
    color: var(--primary-blue);
    background: var(--neutral-gray-50);
}

.tab-button.active {
    color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(0, 94, 184, 0.1) 0%, rgba(77, 166, 255, 0.1) 100%);
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 94, 184, 0.15);
}

.tab-button.active::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 2px 2px 0 0;
}

/* Tab Content */
.tab-content {
    display: none;
    width: 100%;
    /* animation: fadeIn 0.3s ease; */
}

.tab-content.active {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}