.client-content h2 {
    font-family: 'Gilroy-Bold', sans-serif;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.empty-state h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-family: 'Gilroy-Bold', sans-serif;
}

.empty-state p {
    font-size: 16px;
    color: #666;
    margin: 0;
}


/* Tab Navigation */
.customer-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 1.5vw;
    margin-top: 2vw;
    border: 1px solid #e0e0e0;
}

/* Tab Navigation Container */
.customer-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5vw;
    margin-top: 2vw;
    border: none;
    /* Remove border */
}

/* Tab Buttons */
.customer-tabs {
    display: inline-flex;
    gap: 1vw;
    margin-bottom: 1.5vw;
    margin-top: 2vw;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: .5vw;
    background: white;
}

/* Tab Buttons */
.customer-tab-btn {
    padding: 10px 28px;
    border: none;
    background: transparent;
    color: #666;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.95vw;
    font-family: 'Gilroy-SemiBold', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Hover Effect */
.customer-tab-btn:hover:not(.active) {
    background: linear-gradient(to bottom, #0052CC 10%, #002966 100%);
    color: #ffffff;
    border-color: #0052CC;
}

/* Active Tab */
.customer-tab-btn.active {
    background: #0052cc;
    color: white;
}

/* Tab Content Sections */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Add Customer Button */
.customer-header-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.add-customer-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1e40af;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-customer-btn:hover {
    background: #1e3a8a;
}

.plus-icon {
    font-size: 20px;
    font-weight: 600;
}

/* Customer Cards Container */
.customer-cards-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Customer Card */
.customer-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.customer-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Card Row */
.card-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 15px;
}

.card-row:last-child {
    margin-bottom: 0;
}

/* Card Field */
.card-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-field label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-field p {
    font-size: 14px;
    color: #1a1a1a;
    margin: 0;
}

/* Date Picker */
.date-picker {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
    background: white;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;
}

.date-picker:focus {
    border-color: #1e40af;
}

/* Action Buttons */
.view-btn,
.delete-btn {
    padding: 8px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn {
    background: #f0f9ff;
    color: #1e40af;
}

.view-btn:hover {
    background: #dbeafe;
}

.delete-btn {
    background: #fef2f2;
    color: #dc2626;
}

.delete-btn:hover {
    background: #fee2e2;
}


/* ============================================
   RESPONSIVE - CLIENT CONTENT & TABS
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .client-content h2 {
        font-size: 1.5rem;
    }

    .empty-state {
        padding: 3rem 1.25rem;
    }

    .empty-state h3 {
        font-size: 1.375rem;
    }

    .empty-state p {
        font-size: 0.9375rem;
    }

    .customer-tabs {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        margin-top: 1.5rem;
        padding: 0.5rem;
    }

    .customer-tab-btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }

    .add-customer-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .plus-icon {
        font-size: 1.125rem;
    }

    .customer-cards-container {
        gap: 1rem;
    }

    .customer-card {
        padding: 1.25rem;
    }

    .card-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 0.875rem;
    }

    .card-field label {
        font-size: 0.6875rem;
    }

    .card-field p {
        font-size: 0.8125rem;
    }

    .date-picker {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
}

/* Mobile (481px - 767px) */
@media (max-width: 767px) {
    .client-content h2 {
        font-size: 1.25rem;
    }

    .empty-state {
        padding: 2.5rem 1rem;
    }

    .empty-state h3 {
        font-size: 1.125rem;
    }

    .empty-state p {
        font-size: 0.875rem;
    }

    .customer-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-bottom: 1.25rem;
        margin-top: 1.25rem;
        padding: 0.5rem;
        border-radius: 8px;
    }

    .customer-tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
        flex: 1 1 45%;
        text-align: center;
    }

    .customer-header-actions {
        margin-bottom: 1rem;
    }

    .add-customer-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
        gap: 0.5rem;
        width: 100%;
    }

    .plus-icon {
        font-size: 1rem;
    }

    .customer-cards-container {
        gap: 0.875rem;
    }

    .customer-card {
        padding: 1rem;
    }

    .card-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .card-field {
        gap: 0.5rem;
    }

    .card-field label {
        font-size: 0.625rem;
    }

    .card-field p {
        font-size: 0.75rem;
    }

    .date-picker {
        padding: 0.5rem;
        font-size: 0.75rem;
    }

    .view-btn,
    .delete-btn {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .client-content h2 {
        font-size: 1.125rem;
    }

    .empty-state {
        padding: 2rem 0.75rem;
    }

    .empty-state h3 {
        font-size: 1rem;
    }

    .empty-state p {
        font-size: 0.8125rem;
    }

    .customer-tabs {
        gap: 0.375rem;
        margin-bottom: 1rem;
        margin-top: 1rem;
        padding: 0.375rem;
    }

    .customer-tab-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        flex: 1 1 100%;
    }

    .add-customer-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        gap: 0.375rem;
    }

    .plus-icon {
        font-size: 0.875rem;
    }

    .customer-card {
        padding: 0.875rem;
        border-radius: 6px;
    }

    .card-row {
        gap: 0.625rem;
        margin-bottom: 0.625rem;
    }

    .card-field label {
        font-size: 0.5625rem;
        letter-spacing: 0.3px;
    }

    .card-field p {
        font-size: 0.6875rem;
    }

    .date-picker {
        padding: 0.375rem;
        font-size: 0.6875rem;
        border-radius: 4px;
    }

    .view-btn,
    .delete-btn {
        padding: 0.375rem;
    }
}