/* Customer Type Navigation Buttons */
.customer-type-navigation {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.customer-type-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.customer-type-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.customer-type-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(4px);
}

.customer-type-btn.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    border-color: var(--primary);
    color: var(--primary-light);
}

.customer-type-btn.active::before {
    transform: scaleY(1);
}

.customer-type-btn i {
    font-size: 1.25rem;
    min-width: 24px;
    text-align: center;
}

.customer-type-btn .btn-label {
    flex: 1;
}

.customer-type-btn .badge {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .customer-type-navigation {
        flex-direction: row;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .customer-type-btn {
        flex: 1;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        justify-content: center;
    }

    .customer-type-btn .btn-label {
        display: none;
    }

    .customer-type-btn:hover {
        transform: translateY(-2px);
    }

    .customer-type-btn i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .customer-type-btn {
        padding: 0.625rem 0.75rem;
    }

    .customer-type-btn i {
        font-size: 1.25rem;
    }
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .customer-type-btn {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .customer-type-btn:hover {
        background: rgba(255, 255, 255, 0.06);
    }
}