/* _content/iteraanhuis-portal/Components/Layout/MainLayout.razor.rz.scp.css */
/* Modern Navbar Layout CSS - Microsoft High Contrast Dark Style */

.app-container[b-oeluh17ui8] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--gray-50);
}

/* Top Navbar - Dark Theme */
.top-navbar[b-oeluh17ui8] {
    background: #000000;
    border-bottom: 1px solid #2d2d2d;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 64px;
}

.navbar-content[b-oeluh17ui8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 var(--space-6);
    max-width: 100%;
}

/* Brand Section */
.navbar-brand[b-oeluh17ui8] {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    min-width: 250px;
}

.sidebar-toggle[b-oeluh17ui8] {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius);
    color: #ffffff;
    transition: all 0.2s ease;
}

.sidebar-toggle:hover[b-oeluh17ui8] {
    background: #2d2d2d;
    color: #ffffff;
}

.brand-link[b-oeluh17ui8] {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.brand-name[b-oeluh17ui8] {
    font-size: var(--text-xl);
    font-weight: 700;
    color: #ffffff;
}

/* Center Navigation - Dark Theme */
.navbar-nav[b-oeluh17ui8] {
    display: flex;
    gap: var(--space-2);
    align-items: center;
}

.nav-item[b-oeluh17ui8] {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: var(--text-sm);
    transition: all 0.2s ease;
    position: relative;
}

.nav-item:hover[b-oeluh17ui8] {
    background: #2d2d2d;
    color: #ffffff;
}

.nav-item.active[b-oeluh17ui8] {
    background: #000000;
    color: #ffffff;
}

.nav-item.active[b-oeluh17ui8]::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #000000;
    border-radius: 50%;
    border: 1px solid #ffffff;
}

.nav-icon[b-oeluh17ui8] {
    font-size: 1.25rem;
    line-height: 1;
    color: inherit;
}

.nav-icon .mud-icon-root[b-oeluh17ui8] {
    font-size: inherit;
    color: inherit;
}

.nav-label[b-oeluh17ui8] {
    white-space: nowrap;
}

/* Right Actions - Dark Theme */
.navbar-actions[b-oeluh17ui8] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.action-btn[b-oeluh17ui8] {
    background: none;
    border: none;
    padding: var(--space-2);
    border-radius: var(--radius-md);
    cursor: pointer;
    color: #ffffff;
    transition: all 0.2s ease;
    font-size: 1.25rem;
}

.action-btn:hover[b-oeluh17ui8] {
    background: #2d2d2d;
    color: #ffffff;
}

.user-menu[b-oeluh17ui8] {
    position: relative;
}

.user-btn[b-oeluh17ui8] {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: #2d2d2d;
    border: 1px solid #404040;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-btn:hover[b-oeluh17ui8] {
    background: #404040;
    border-color: #555555;
}

.user-avatar[b-oeluh17ui8] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--text-sm);
}

.user-name[b-oeluh17ui8] {
    font-weight: 500;
    color: #ffffff;
    font-size: var(--text-sm);
}

/* Expandable Sidebar - Dark Theme */
.expandable-sidebar[b-oeluh17ui8] {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #000000;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease;
    z-index: 200;
    overflow-y: auto;
    border-right: 1px solid #2d2d2d;
}

.expandable-sidebar.open[b-oeluh17ui8] {
    left: 0;
}

.sidebar-overlay[b-oeluh17ui8] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 150;
}

.sidebar-overlay.active[b-oeluh17ui8] {
    opacity: 1;
    pointer-events: all;
}

.sidebar-header[b-oeluh17ui8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6);
    border-bottom: 1px solid #2d2d2d;
}

.sidebar-header h3[b-oeluh17ui8] {
    margin: 0;
    font-size: var(--text-lg);
    font-weight: 700;
    color: #ffffff;
}

.close-btn[b-oeluh17ui8] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
    padding: var(--space-2);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.close-btn:hover[b-oeluh17ui8] {
    background: #2d2d2d;
    color: #ffffff;
}

.sidebar-nav[b-oeluh17ui8] {
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.sidebar-item[b-oeluh17ui8] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.sidebar-item:hover[b-oeluh17ui8] {
    background: #2d2d2d;
    border-color: #404040;
}

.sidebar-item.active[b-oeluh17ui8] {
    background: #2d2d2d;
    color: #ffffff;
    border-color: #ffffff;
}

.item-icon[b-oeluh17ui8] {
    font-size: 1.5rem;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.item-label[b-oeluh17ui8] {
    font-size: var(--text-base);
}

/* Main Content */
.main-content[b-oeluh17ui8] {
    flex: 1;
    width: 100%;
    overflow-x: hidden;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar-nav[b-oeluh17ui8] {
        display: none;
    }

    .sidebar-toggle[b-oeluh17ui8] {
        display: block;
    }

    .navbar-brand[b-oeluh17ui8] {
        min-width: auto;
    }

    .user-name[b-oeluh17ui8] {
        display: none;
    }
}

@media (max-width: 640px) {
    .navbar-content[b-oeluh17ui8] {
        padding: 0 var(--space-4);
    }

    .brand-name[b-oeluh17ui8] {
        font-size: var(--text-lg);
    }

    .action-btn[b-oeluh17ui8] {
        padding: var(--space-1);
    }

    .nav-label[b-oeluh17ui8] {
        display: none;
    }
}

/* MudBlazor Icon Color Override for Dark Theme */
.nav-icon .mud-icon-root[b-oeluh17ui8],
.item-icon .mud-icon-root[b-oeluh17ui8] {
    color: #ffffff !important;
}

.action-btn .mud-icon-root[b-oeluh17ui8] {
    color: #ffffff !important;
}

.action-btn:hover .mud-icon-root[b-oeluh17ui8] {
    color: #ffffff !important;
}
/* _content/iteraanhuis-portal/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-m8hwnwsn2a] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-m8hwnwsn2a] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-m8hwnwsn2a] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-m8hwnwsn2a] {
    font-size: 1.1rem;
}

.bi[b-m8hwnwsn2a] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-m8hwnwsn2a] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-m8hwnwsn2a] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-m8hwnwsn2a] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-m8hwnwsn2a] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-m8hwnwsn2a] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-m8hwnwsn2a] {
        padding-bottom: 1rem;
    }

    .nav-item[b-m8hwnwsn2a]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-m8hwnwsn2a]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-m8hwnwsn2a]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-m8hwnwsn2a] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-m8hwnwsn2a] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-m8hwnwsn2a] {
        display: none;
    }

    .nav-scrollable[b-m8hwnwsn2a] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/iteraanhuis-portal/Components/Pages/Appointments.razor.rz.scp.css */
/* Appointments Page CSS */

.appointments-page[b-v13d6l60yl] {
    padding: var(--space-6);
    background: var(--gray-50);
    min-height: 100vh;
}

/* Page Header */
.page-header[b-v13d6l60yl] {
    margin-bottom: var(--space-6);
}

.header-content[b-v13d6l60yl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.header-text h1[b-v13d6l60yl] {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.header-text p[b-v13d6l60yl] {
    margin: var(--space-2) 0 0 0;
    font-size: var(--text-lg);
    color: var(--gray-600);
}

.header-actions[b-v13d6l60yl] {
    display: flex;
    gap: var(--space-3);
    align-items: center;
}

/* Stats Section */
.stats-section[b-v13d6l60yl] {
    margin-bottom: var(--space-6);
    max-width: 1400px;
    margin: 0 auto var(--space-6) auto;
}

.stats-grid[b-v13d6l60yl] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-4);
}

.stat-card[b-v13d6l60yl] {
    border: 1px solid var(--gray-300);
    background: white;
}

.stat-content[b-v13d6l60yl] {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5);
}

.stat-icon[b-v13d6l60yl] {
    font-size: 2.5rem;
}

.stat-icon.today[b-v13d6l60yl] {
    color: var(--primary-color);
}

.stat-icon.scheduled[b-v13d6l60yl] {
    color: var(--warning-color);
}

.stat-icon.completed[b-v13d6l60yl] {
    color: var(--success-color);
}

.stat-icon.cancelled[b-v13d6l60yl] {
    color: var(--error-color);
}

.stat-details[b-v13d6l60yl] {
    flex: 1;
}

.stat-value[b-v13d6l60yl] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.stat-label[b-v13d6l60yl] {
    font-size: var(--text-sm);
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Calendar Section */
.calendar-section[b-v13d6l60yl] {
    max-width: 1400px;
    margin: 0 auto;
}

.calendar-card[b-v13d6l60yl] {
    border: 1px solid var(--gray-300);
    background: white;
    overflow: hidden;
}

.calendar-card .card-content[b-v13d6l60yl] {
    padding: 0;
}

/* Button Group Styling */
.mud-button-group .mud-button[b-v13d6l60yl] {
    border-radius: 0;
}

.mud-button-group .mud-button:first-child[b-v13d6l60yl] {
    border-top-left-radius: var(--radius-md);
    border-bottom-left-radius: var(--radius-md);
}

.mud-button-group .mud-button:last-child[b-v13d6l60yl] {
    border-top-right-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
}

.mud-button-group .mud-button.active[b-v13d6l60yl] {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Radzen Scheduler Customizations */
.rz-scheduler[b-v13d6l60yl] {
    font-family: var(--font-sans);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: none;
    border: none;
}

.rz-scheduler-header[b-v13d6l60yl] {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: var(--space-4);
}

.rz-scheduler-header .rz-button[b-v13d6l60yl] {
    border-radius: var(--radius-md);
    font-weight: 500;
}

.rz-scheduler-content[b-v13d6l60yl] {
    background: white;
}

/* Calendar Grid Styling */
.rz-scheduler-month .rz-scheduler-month-view[b-v13d6l60yl] {
    border: none;
}

.rz-scheduler-month .rz-scheduler-month-view td[b-v13d6l60yl] {
    border: 1px solid var(--gray-200);
    background: white;
    transition: background-color 0.2s ease;
}

.rz-scheduler-month .rz-scheduler-month-view td:hover[b-v13d6l60yl] {
    background: var(--gray-50);
}

.rz-scheduler-month .rz-scheduler-month-view th[b-v13d6l60yl] {
    background: var(--gray-100);
    color: var(--gray-700);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: var(--text-sm);
    border: 1px solid var(--gray-200);
    padding: var(--space-3);
}

/* Week View Styling */
.rz-scheduler-week .rz-scheduler-week-view[b-v13d6l60yl],
.rz-scheduler-day .rz-scheduler-day-view[b-v13d6l60yl] {
    border: none;
}

.rz-scheduler-week .rz-scheduler-week-view td[b-v13d6l60yl],
.rz-scheduler-day .rz-scheduler-day-view td[b-v13d6l60yl] {
    border: 1px solid var(--gray-200);
    background: white;
}

.rz-scheduler-week .rz-scheduler-week-view .rz-scheduler-time-slot[b-v13d6l60yl],
.rz-scheduler-day .rz-scheduler-day-view .rz-scheduler-time-slot[b-v13d6l60yl] {
    border-bottom: 1px solid var(--gray-100);
}

.rz-scheduler-week .rz-scheduler-week-view .rz-scheduler-time-slot:hover[b-v13d6l60yl],
.rz-scheduler-day .rz-scheduler-day-view .rz-scheduler-time-slot:hover[b-v13d6l60yl] {
    background: var(--gray-50);
}

/* Time Labels */
.rz-scheduler-time[b-v13d6l60yl] {
    background: var(--gray-50);
    color: var(--gray-600);
    font-size: var(--text-sm);
    font-weight: 500;
    border-right: 1px solid var(--gray-200);
}

/* Appointment Styling */
.rz-scheduler-appointment[b-v13d6l60yl] {
    background: var(--primary-color);
    border: 1px solid var(--primary-hover);
    border-radius: var(--radius);
    color: white;
    font-weight: 500;
    font-size: var(--text-sm);
    padding: var(--space-2);
    margin: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.rz-scheduler-appointment:hover[b-v13d6l60yl] {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Today Highlighting */
.rz-scheduler-today[b-v13d6l60yl] {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

/* Current Time Indicator */
.rz-scheduler-current-time[b-v13d6l60yl] {
    background: var(--error-color);
    height: 2px;
    z-index: 10;
}

/* Navigation Buttons */
.rz-scheduler-navigation .rz-button[b-v13d6l60yl] {
    background: white;
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.rz-scheduler-navigation .rz-button:hover[b-v13d6l60yl] {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.rz-scheduler-navigation .rz-button:active[b-v13d6l60yl] {
    background: var(--gray-100);
}

/* Date Display */
.rz-scheduler-title[b-v13d6l60yl] {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-900);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-content[b-v13d6l60yl] {
        flex-direction: column;
        gap: var(--space-4);
        align-items: flex-start;
    }

    .header-actions[b-v13d6l60yl] {
        width: 100%;
        justify-content: space-between;
    }

    .stats-grid[b-v13d6l60yl] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .appointments-page[b-v13d6l60yl] {
        padding: var(--space-4);
    }

    .header-text h1[b-v13d6l60yl] {
        font-size: 2rem;
    }

    .stats-grid[b-v13d6l60yl] {
        grid-template-columns: 1fr;
    }

    .header-actions[b-v13d6l60yl] {
        flex-direction: column;
        align-items: stretch;
    }

    .rz-scheduler[b-v13d6l60yl] {
        height: 500px;
    }
}

@media (max-width: 640px) {
    .stat-content[b-v13d6l60yl] {
        padding: var(--space-4);
    }

    .stat-icon[b-v13d6l60yl] {
        font-size: 2rem;
    }

    .stat-value[b-v13d6l60yl] {
        font-size: 1.5rem;
    }

    /* Mobile calendar adjustments */
    .rz-scheduler-month .rz-scheduler-month-view th[b-v13d6l60yl],
    .rz-scheduler-month .rz-scheduler-month-view td[b-v13d6l60yl] {
        padding: var(--space-2);
        font-size: 0.75rem;
    }
}
/* _content/iteraanhuis-portal/Components/Pages/Customers.razor.rz.scp.css */
/* Customers Page CSS */

.customers-page[b-jt9twdl52n] {
    padding: var(--space-6);
    min-height: 100vh;
}

/* Page Header */
.page-header[b-jt9twdl52n] {
    margin-bottom: var(--space-8);
}

.header-content[b-jt9twdl52n] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.header-text h1[b-jt9twdl52n] {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.header-text p[b-jt9twdl52n] {
    margin: var(--space-2) 0 0 0;
    font-size: var(--text-lg);
}

.header-actions[b-jt9twdl52n] {
    display: flex;
    gap: var(--space-3);
}

/* Page Content */
.page-content[b-jt9twdl52n] {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

/* Stats Grid */
.stats-grid[b-jt9twdl52n] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-4);
}

.stat-content[b-jt9twdl52n] {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6);
}

.stat-icon[b-jt9twdl52n] {
    font-size: 2.5rem;
}

.stat-details[b-jt9twdl52n] {
    flex: 1;
}

.stat-value[b-jt9twdl52n] {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-1);
}

.stat-label[b-jt9twdl52n] {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Filters Card */
.filters-content[b-jt9twdl52n] {
    display: flex;
    align-items: flex-end;
    gap: var(--space-4);
    padding: var(--space-6);
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.search-field[b-jt9twdl52n] {
    flex: 1;
    min-width: 300px;
}

.status-filter[b-jt9twdl52n] {
    min-width: 200px;
}

/* Data Grid Card */
.data-grid-card .card-content[b-jt9twdl52n] {
    padding: 0;
}

/* Customer Cell Styling */
.customer-cell[b-jt9twdl52n] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.customer-info[b-jt9twdl52n] {
    display: flex;
    flex-direction: column;
}

.customer-name[b-jt9twdl52n] {
    font-weight: 600;
    font-size: var(--text-sm);
}

.customer-email[b-jt9twdl52n] {
    font-size: 0.75rem;
}

/* Chip Styling */
.mud-chip[b-jt9twdl52n] {
    font-weight: 500;
    font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-content[b-jt9twdl52n] {
        flex-direction: column;
        gap: var(--space-4);
        align-items: flex-start;
    }

    .header-actions[b-jt9twdl52n] {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .customers-page[b-jt9twdl52n] {
        padding: var(--space-4);
    }

    .header-text h1[b-jt9twdl52n] {
        font-size: 2rem;
    }

    .stats-grid[b-jt9twdl52n] {
        grid-template-columns: 1fr;
    }

    .filters-content[b-jt9twdl52n] {
        flex-direction: column;
        align-items: stretch;
    }

    .search-field[b-jt9twdl52n],
    .status-filter[b-jt9twdl52n] {
        min-width: auto;
        width: 100%;
    }

    .customer-cell[b-jt9twdl52n] {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-2);
    }

    .mud-table-cell[b-jt9twdl52n] {
        padding: var(--space-3);
    }
}
/* _content/iteraanhuis-portal/Components/Pages/Home.razor.rz.scp.css */
/* Modern Dashboard CSS - Dark Theme Enhanced */

.modern-dashboard[b-4hkuwhl708] {
    min-height: 100vh;
    background: var(--near-black);
    padding: var(--space-6);
}

/* Header Section */
.dashboard-header[b-4hkuwhl708] {
    margin-bottom: var(--space-8);
}

.header-content[b-4hkuwhl708] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.header-text h1[b-4hkuwhl708] {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.header-text p[b-4hkuwhl708] {
    margin: var(--space-2) 0 0 0;
    font-size: var(--text-lg);
    color: var(--off-white);
}

.header-actions[b-4hkuwhl708] {
    display: flex;
    gap: var(--space-3);
}

.btn-modern[b-4hkuwhl708] {
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--text-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-modern.primary[b-4hkuwhl708] {
    background: var(--primary-color);
    color: white;
}

.btn-modern.primary:hover[b-4hkuwhl708] {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-modern.secondary[b-4hkuwhl708] {
    background: var(--mid-gray);
    color: var(--white);
    border: 1px solid var(--border-gray);
}

.btn-modern.secondary:hover[b-4hkuwhl708] {
    background: var(--light-gray);
    transform: translateY(-1px);
}

/* Main Dashboard Layout */
.dashboard-main[b-4hkuwhl708] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-8);
    max-width: 1400px;
    margin: 0 auto;
}

/* Metrics Section */
.metrics-section[b-4hkuwhl708] {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

/* Featured Metric Card - Dark Theme */
.featured-metric[b-4hkuwhl708] {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    border: 1px solid var(--mid-gray);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.featured-metric[b-4hkuwhl708]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 100%);
    pointer-events: none;
}

.metric-hero[b-4hkuwhl708] {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-8);
}

.featured-metric .metric-icon[b-4hkuwhl708] {
    font-size: 4rem;
    opacity: 0.95;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.featured-metric .metric-content[b-4hkuwhl708] {
    flex: 1;
}

.featured-metric .metric-value[b-4hkuwhl708] {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: var(--space-2);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: var(--white);
}

.featured-metric .metric-label[b-4hkuwhl708] {
    font-size: var(--text-lg);
    opacity: 0.95;
    margin-bottom: var(--space-3);
    font-weight: 500;
    color: var(--off-white);
}

.metric-trend[b-4hkuwhl708] {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
}

.metric-trend .trend-icon[b-4hkuwhl708] {
    font-size: var(--text-lg);
    font-weight: bold;
}

.metric-trend.negative[b-4hkuwhl708] {
    color: #fca5a5;
}

.metric-trend.positive[b-4hkuwhl708] {
    color: #86efac;
}

/* Sparkline */
.metric-sparkline[b-4hkuwhl708] {
    display: flex;
    align-items: center;
}

.sparkline[b-4hkuwhl708] {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 60px;
    width: 100px;
}

.spark-bar[b-4hkuwhl708] {
    flex: 1;
    background: rgba(37, 99, 235, 0.6);
    border-radius: 2px;
    min-height: 10px;
    transition: all 0.3s ease;
}

.spark-bar:hover[b-4hkuwhl708] {
    background: rgba(37, 99, 235, 0.9);
    transform: scaleY(1.05);
}

/* Metrics Grid - Dark Theme */
.metrics-grid[b-4hkuwhl708] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-5);
}

.metric-card[b-4hkuwhl708] {
    background: var(--dark-gray);
    padding: var(--space-6);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--mid-gray);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.metric-card[b-4hkuwhl708]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.3s ease;
}

.metric-card:hover[b-4hkuwhl708] {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--light-gray);
    background: var(--mid-gray);
}

.metric-card:hover[b-4hkuwhl708]::before {
    height: 6px;
}

.metric-card .metric-icon[b-4hkuwhl708] {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.metric-card .metric-value[b-4hkuwhl708] {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-2);
    line-height: 1;
}

.metric-card .metric-label[b-4hkuwhl708] {
    font-size: var(--text-sm);
    color: var(--off-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
    font-weight: 600;
}

.metric-card .metric-change[b-4hkuwhl708] {
    font-size: var(--text-sm);
    font-weight: 700;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    display: inline-block;
}

.metric-change.positive[b-4hkuwhl708] {
    background: rgba(16, 185, 129, 0.2);
    color: #86efac;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.metric-change.negative[b-4hkuwhl708] {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.metric-change.neutral[b-4hkuwhl708] {
    background: var(--mid-gray);
    color: var(--off-white);
    border: 1px solid var(--border-gray);
}

/* Card Theme Colors */
.metric-card.customers[b-4hkuwhl708]::before {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.metric-card.deals[b-4hkuwhl708]::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.metric-card.leads[b-4hkuwhl708]::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.metric-card.satisfaction[b-4hkuwhl708]::before {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

/* Sidebar Section */
.sidebar-section[b-4hkuwhl708] {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

/* Card styling improvements */
.activity-card[b-4hkuwhl708],
.pipeline-card[b-4hkuwhl708] {
    background: var(--dark-gray);
    border: 1px solid var(--mid-gray);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.activity-card:hover[b-4hkuwhl708],
.pipeline-card:hover[b-4hkuwhl708] {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: var(--light-gray);
}

/* Button link styling */
.btn-link[b-4hkuwhl708] {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.btn-link:hover[b-4hkuwhl708] {
    background: var(--mid-gray);
    text-decoration: none;
}

/* Activity Timeline - Dark Theme */
.activity-timeline[b-4hkuwhl708] {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.activity-item[b-4hkuwhl708] {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.activity-item:hover[b-4hkuwhl708] {
    background: var(--mid-gray);
    border-color: var(--light-gray);
    transform: translateX(4px);
}

.activity-avatar[b-4hkuwhl708] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.activity-avatar.customers[b-4hkuwhl708] {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.activity-avatar.deals[b-4hkuwhl708] {
    background: linear-gradient(135deg, #065f46, #10b981);
}

.activity-avatar.marketing[b-4hkuwhl708] {
    background: linear-gradient(135deg, #b45309, #f59e0b);
}

.activity-avatar.meetings[b-4hkuwhl708] {
    background: linear-gradient(135deg, #5b21b6, #8b5cf6);
}

.activity-content[b-4hkuwhl708] {
    flex: 1;
}

.activity-content p[b-4hkuwhl708] {
    margin: 0 0 var(--space-1) 0;
    font-size: var(--text-sm);
    line-height: 1.5;
    color: var(--white);
}

.activity-content strong[b-4hkuwhl708] {
    font-weight: 600;
    color: var(--white);
}

.activity-time[b-4hkuwhl708] {
    font-size: 0.75rem;
    color: var(--border-gray);
    font-weight: 500;
}

/* Pipeline Stages - Dark Theme */
.pipeline-stages[b-4hkuwhl708] {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.pipeline-stage[b-4hkuwhl708] {
    padding: var(--space-5);
    background: var(--mid-gray);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
    border: 1px solid var(--light-gray);
}

.pipeline-stage:hover[b-4hkuwhl708] {
    background: var(--light-gray);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.stage-header[b-4hkuwhl708] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-3);
}

.stage-name[b-4hkuwhl708] {
    font-weight: 700;
    color: var(--white);
    font-size: var(--text-base);
}

.stage-count[b-4hkuwhl708] {
    background: var(--primary-color);
    color: white;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 28px;
    text-align: center;
}

.stage-bar[b-4hkuwhl708] {
    height: 8px;
    background: var(--dark-gray);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: var(--space-3);
    border: 1px solid var(--mid-gray);
}

.stage-progress[b-4hkuwhl708] {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    border-radius: 4px;
    transition: width 0.8s ease;
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.5);
}

.stage-value[b-4hkuwhl708] {
    font-weight: 700;
    color: var(--white);
    font-size: var(--text-base);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dashboard-main[b-4hkuwhl708] {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .header-content[b-4hkuwhl708] {
        flex-direction: column;
        gap: var(--space-4);
        align-items: flex-start;
    }

    .header-actions[b-4hkuwhl708] {
        width: 100%;
    }

    .btn-modern[b-4hkuwhl708] {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .modern-dashboard[b-4hkuwhl708] {
        padding: var(--space-4);
    }

    .header-text h1[b-4hkuwhl708] {
        font-size: 2rem;
    }

    .metrics-grid[b-4hkuwhl708] {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .metric-hero[b-4hkuwhl708] {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-4);
    }

    .metric-sparkline[b-4hkuwhl708] {
        justify-content: center;
    }

    .featured-metric .metric-value[b-4hkuwhl708] {
        font-size: 2.5rem;
    }

    .featured-metric .metric-icon[b-4hkuwhl708] {
        font-size: 3rem;
    }

    .metric-card .metric-value[b-4hkuwhl708] {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .metrics-grid[b-4hkuwhl708] {
        grid-template-columns: 1fr;
    }
}
/* _content/iteraanhuis-portal/Components/Pages/Invoices.razor.rz.scp.css */
/* Invoices Page CSS */

.invoices-page[b-jpz2ywsmhf] {
    padding: var(--space-6);
    background: var(--gray-50);
    min-height: 100vh;
}

/* Page Header */
.page-header[b-jpz2ywsmhf] {
    margin-bottom: var(--space-6);
}

.header-content[b-jpz2ywsmhf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.header-text h1[b-jpz2ywsmhf] {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.header-text p[b-jpz2ywsmhf] {
    margin: var(--space-2) 0 0 0;
    font-size: var(--text-lg);
    color: var(--gray-600);
}

.header-actions[b-jpz2ywsmhf] {
    display: flex;
    gap: var(--space-3);
}

/* Stats Section */
.stats-section[b-jpz2ywsmhf] {
    margin-bottom: var(--space-6);
    max-width: 1400px;
    margin: 0 auto var(--space-6) auto;
}

.stats-grid[b-jpz2ywsmhf] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-4);
}

.stat-card[b-jpz2ywsmhf] {
    border: 1px solid var(--gray-300);
    background: white;
    position: relative;
    overflow: hidden;
}

.stat-card[b-jpz2ywsmhf]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.3s ease;
}

.stat-card.revenue[b-jpz2ywsmhf]::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.stat-card.pending[b-jpz2ywsmhf]::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.stat-card.overdue[b-jpz2ywsmhf]::before {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.stat-card.total-invoices[b-jpz2ywsmhf]::before {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.stat-card:hover[b-jpz2ywsmhf]::before {
    height: 6px;
}

.stat-content[b-jpz2ywsmhf] {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6);
}

.stat-icon[b-jpz2ywsmhf] {
    font-size: 2.5rem;
}

.stat-icon.revenue[b-jpz2ywsmhf] {
    color: var(--success-color);
}

.stat-icon.pending[b-jpz2ywsmhf] {
    color: var(--warning-color);
}

.stat-icon.overdue[b-jpz2ywsmhf] {
    color: var(--error-color);
}

.stat-icon.total[b-jpz2ywsmhf] {
    color: var(--primary-color);
}

.stat-details[b-jpz2ywsmhf] {
    flex: 1;
}

.stat-value[b-jpz2ywsmhf] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.stat-label[b-jpz2ywsmhf] {
    font-size: var(--text-sm);
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Filters Section */
.filters-card[b-jpz2ywsmhf] {
    border: 1px solid var(--gray-300);
    background: white;
    margin-bottom: var(--space-6);
    max-width: 1400px;
    margin: 0 auto var(--space-6) auto;
}

.filters-content[b-jpz2ywsmhf] {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6);
    flex-wrap: wrap;
}

.search-field[b-jpz2ywsmhf] {
    flex: 1;
    min-width: 300px;
}

.status-filter[b-jpz2ywsmhf],
.date-filter[b-jpz2ywsmhf] {
    min-width: 150px;
}

/* Data Grid Section */
.data-grid-card[b-jpz2ywsmhf] {
    border: 1px solid var(--gray-300);
    background: white;
    max-width: 1400px;
    margin: 0 auto;
}

.data-grid-card .card-content[b-jpz2ywsmhf] {
    padding: 0;
}

/* Invoice Number Styling */
.invoice-number strong[b-jpz2ywsmhf] {
    color: var(--primary-color);
    font-weight: 700;
}

/* Customer Cell Styling */
.customer-cell[b-jpz2ywsmhf] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.customer-info[b-jpz2ywsmhf] {
    display: flex;
    flex-direction: column;
}

.customer-name[b-jpz2ywsmhf] {
    font-weight: 600;
    color: var(--gray-900);
    font-size: var(--text-sm);
}

.service-description[b-jpz2ywsmhf] {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-style: italic;
}

/* Amount Cell */
.amount-cell strong[b-jpz2ywsmhf] {
    color: var(--gray-900);
    font-size: var(--text-base);
}

/* Status Chip */
.status-chip[b-jpz2ywsmhf] {
    font-weight: 600;
    font-size: 0.75rem;
}

/* Due Date Styling */
.due-date[b-jpz2ywsmhf] {
    font-weight: 500;
}

.due-date.overdue[b-jpz2ywsmhf] {
    color: var(--error-color);
    font-weight: 700;
}

/* Action Buttons */
.action-buttons[b-jpz2ywsmhf] {
    display: flex;
    gap: var(--space-1);
}

.action-buttons .mud-icon-button[b-jpz2ywsmhf] {
    transition: all 0.2s ease;
}

.action-buttons .mud-icon-button:hover[b-jpz2ywsmhf] {
    transform: scale(1.1);
}

/* MudBlazor Component Overrides */
.mud-table[b-jpz2ywsmhf] {
    background: transparent;
}

.mud-table-head[b-jpz2ywsmhf] {
    background: var(--gray-50);
}

.mud-table-head .mud-table-cell[b-jpz2ywsmhf] {
    font-weight: 600;
    color: var(--gray-700);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--gray-200);
}

.mud-table-body .mud-table-row[b-jpz2ywsmhf] {
    transition: background-color 0.2s ease;
}

.mud-table-body .mud-table-row:hover[b-jpz2ywsmhf] {
    background: var(--gray-50);
}

.mud-table-cell[b-jpz2ywsmhf] {
    border-bottom: 1px solid var(--gray-100);
    padding: var(--space-4) var(--space-6);
}

/* Button Styling */
.mud-button-filled-primary[b-jpz2ywsmhf] {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.mud-button-filled-primary:hover[b-jpz2ywsmhf] {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Date Range Picker */
.mud-input-root .mud-input-root-text[b-jpz2ywsmhf] {
    font-size: var(--text-sm);
}

/* Chip Color Overrides */
.mud-chip-color-success[b-jpz2ywsmhf] {
    background: #dcfce7;
    color: #15803d;
}

.mud-chip-color-warning[b-jpz2ywsmhf] {
    background: #fef3c7;
    color: #d97706;
}

.mud-chip-color-error[b-jpz2ywsmhf] {
    background: #fee2e2;
    color: #dc2626;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-content[b-jpz2ywsmhf] {
        flex-direction: column;
        gap: var(--space-4);
        align-items: flex-start;
    }

    .header-actions[b-jpz2ywsmhf] {
        width: 100%;
        justify-content: space-between;
    }

    .stats-grid[b-jpz2ywsmhf] {
        grid-template-columns: repeat(2, 1fr);
    }

    .filters-content[b-jpz2ywsmhf] {
        flex-direction: column;
        align-items: stretch;
    }

    .search-field[b-jpz2ywsmhf],
    .status-filter[b-jpz2ywsmhf],
    .date-filter[b-jpz2ywsmhf] {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .invoices-page[b-jpz2ywsmhf] {
        padding: var(--space-4);
    }

    .header-text h1[b-jpz2ywsmhf] {
        font-size: 2rem;
    }

    .stats-grid[b-jpz2ywsmhf] {
        grid-template-columns: 1fr;
    }

    .customer-cell[b-jpz2ywsmhf] {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-2);
    }

    .action-buttons[b-jpz2ywsmhf] {
        flex-wrap: wrap;
    }

    .mud-table-cell[b-jpz2ywsmhf] {
        padding: var(--space-3);
    }

    .stat-content[b-jpz2ywsmhf] {
        padding: var(--space-4);
    }

    .stat-icon[b-jpz2ywsmhf] {
        font-size: 2rem;
    }

    .stat-value[b-jpz2ywsmhf] {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .action-buttons .mud-icon-button[b-jpz2ywsmhf] {
        padding: var(--space-1);
    }

    .invoice-number strong[b-jpz2ywsmhf] {
        font-size: var(--text-sm);
    }

    .amount-cell strong[b-jpz2ywsmhf] {
        font-size: var(--text-sm);
    }
}
/* _content/iteraanhuis-portal/Components/Pages/Login.razor.rz.scp.css */
.login-page[b-0g5ink2cix] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
}

.login-container[b-0g5ink2cix] {
    width: 100%;
    max-width: 450px;
}

.login-card[b-0g5ink2cix] {
    padding: var(--space-8);
    border-radius: 16px;
    box-shadow: none;
    border: 1px solid;
}

.mud-theme-dark .login-card[b-0g5ink2cix] {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.3);
}

.login-header[b-0g5ink2cix] {
    text-align: center;
    margin-bottom: var(--space-8);
}

.logo[b-0g5ink2cix] {
    margin-bottom: var(--space-4);
}

.login-header h1[b-0g5ink2cix] {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 var(--space-2) 0;
}

.login-header p[b-0g5ink2cix] {
    margin: 0;
    opacity: 0.7;
}

.login-form[b-0g5ink2cix] {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.mb-4[b-0g5ink2cix] {
    margin-bottom: var(--space-4);
}

.mt-4[b-0g5ink2cix] {
    margin-top: var(--space-4);
}

.remember-forgot[b-0g5ink2cix] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2);
}

.login-button[b-0g5ink2cix] {
    margin-top: var(--space-4);
    height: 48px;
    font-weight: 600;
}

@media (max-width: 640px) {
    .login-card[b-0g5ink2cix] {
        padding: var(--space-6);
    }

    .login-header h1[b-0g5ink2cix] {
        font-size: 1.5rem;
    }
}
/* _content/iteraanhuis-portal/Components/Pages/Marketing.razor.rz.scp.css */
/* Marketing Page CSS */

.marketing-page[b-ugi7tmx0gn] {
    padding: var(--space-6);
    background: var(--gray-50);
    min-height: 100vh;
}

/* Page Header */
.page-header[b-ugi7tmx0gn] {
    margin-bottom: var(--space-6);
}

.header-content[b-ugi7tmx0gn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.header-text h1[b-ugi7tmx0gn] {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.header-text p[b-ugi7tmx0gn] {
    margin: var(--space-2) 0 0 0;
    font-size: var(--text-lg);
    color: var(--gray-600);
}

.header-actions[b-ugi7tmx0gn] {
    display: flex;
    gap: var(--space-3);
}

/* Stats Section */
.stats-section[b-ugi7tmx0gn] {
    margin-bottom: var(--space-6);
    max-width: 1400px;
    margin: 0 auto var(--space-6) auto;
}

.stats-grid[b-ugi7tmx0gn] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-4);
}

.stat-card[b-ugi7tmx0gn] {
    border: 1px solid var(--gray-300);
    background: white;
    position: relative;
    overflow: hidden;
}

.stat-card[b-ugi7tmx0gn]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.3s ease;
}

.stat-card.sent[b-ugi7tmx0gn]::before {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.stat-card.opened[b-ugi7tmx0gn]::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.stat-card.rate[b-ugi7tmx0gn]::before {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.stat-card.subscribers[b-ugi7tmx0gn]::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.stat-card:hover[b-ugi7tmx0gn]::before {
    height: 6px;
}

.stat-content[b-ugi7tmx0gn] {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6);
}

.stat-icon[b-ugi7tmx0gn] {
    font-size: 2.5rem;
}

.stat-icon.sent[b-ugi7tmx0gn] {
    color: var(--primary-color);
}

.stat-icon.opened[b-ugi7tmx0gn] {
    color: var(--success-color);
}

.stat-icon.rate[b-ugi7tmx0gn] {
    color: #8b5cf6;
}

.stat-icon.subscribers[b-ugi7tmx0gn] {
    color: var(--warning-color);
}

.stat-details[b-ugi7tmx0gn] {
    flex: 1;
}

.stat-value[b-ugi7tmx0gn] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.stat-label[b-ugi7tmx0gn] {
    font-size: var(--text-sm);
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Campaigns Section */
.campaigns-section[b-ugi7tmx0gn] {
    max-width: 1400px;
    margin: 0 auto;
}

.campaigns-card[b-ugi7tmx0gn] {
    border: 1px solid var(--gray-300);
    background: white;
}

.campaigns-card .card-content[b-ugi7tmx0gn] {
    padding: 0;
}

/* Campaign Filters */
.campaign-filters[b-ugi7tmx0gn] {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

.search-field[b-ugi7tmx0gn] {
    flex: 1;
    min-width: 300px;
}

.status-filter[b-ugi7tmx0gn] {
    min-width: 150px;
}

/* Fix MudSelect label overlap */
.status-filter .mud-input-label[b-ugi7tmx0gn] {
    transform: translate(0, 1.5px) scale(0.75);
}

.status-filter .mud-input-label-inputcontrol[b-ugi7tmx0gn] {
    top: -9px;
}

/* Campaigns Grid */
.campaigns-grid[b-ugi7tmx0gn] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-4);
}

.campaign-card[b-ugi7tmx0gn] {
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    cursor: pointer;
}

.campaign-card:hover[b-ugi7tmx0gn] {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px -5px rgb(0 0 0 / 0.1);
    transform: translateY(-2px);
}

.campaign-card.draft[b-ugi7tmx0gn] {
    border-left: 4px solid var(--warning-color);
}

.campaign-card.sent[b-ugi7tmx0gn] {
    border-left: 4px solid var(--success-color);
}

.campaign-card.scheduled[b-ugi7tmx0gn] {
    border-left: 4px solid var(--primary-color);
}

.campaign-card.failed[b-ugi7tmx0gn] {
    border-left: 4px solid var(--error-color);
}

.campaign-header[b-ugi7tmx0gn] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-4);
}

.campaign-title h4[b-ugi7tmx0gn] {
    margin: 0 0 var(--space-2) 0;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--gray-900);
}

.campaign-actions[b-ugi7tmx0gn] {
    display: flex;
    gap: var(--space-1);
}

.campaign-content[b-ugi7tmx0gn] {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.campaign-description[b-ugi7tmx0gn] {
    margin: 0;
    color: var(--gray-600);
    font-size: var(--text-sm);
    line-height: 1.5;
}

.campaign-stats[b-ugi7tmx0gn] {
    display: flex;
    gap: var(--space-4);
}

.stat-item[b-ugi7tmx0gn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number[b-ugi7tmx0gn] {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.stat-label[b-ugi7tmx0gn] {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.campaign-footer[b-ugi7tmx0gn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.campaign-date[b-ugi7tmx0gn] {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

/* Customer Lists Content */
.customer-lists-content[b-ugi7tmx0gn] {
    padding: var(--space-6);
}

.lists-header[b-ugi7tmx0gn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
}

.lists-header h3[b-ugi7tmx0gn] {
    margin: 0;
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--gray-900);
}

.customer-lists-grid[b-ugi7tmx0gn] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-4);
}

.list-card[b-ugi7tmx0gn] {
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
}

.list-card:hover[b-ugi7tmx0gn] {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.list-header[b-ugi7tmx0gn] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.list-icon[b-ugi7tmx0gn] {
    font-size: 2rem;
    color: var(--primary-color);
}

.list-info h4[b-ugi7tmx0gn] {
    margin: 0 0 var(--space-1) 0;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--gray-900);
}

.list-info p[b-ugi7tmx0gn] {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--gray-600);
}

.list-stats[b-ugi7tmx0gn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-count[b-ugi7tmx0gn] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.count-number[b-ugi7tmx0gn] {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary-color);
}

.count-label[b-ugi7tmx0gn] {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.list-actions[b-ugi7tmx0gn] {
    display: flex;
    gap: var(--space-1);
}

/* Analytics Content */
.analytics-content[b-ugi7tmx0gn] {
    padding: var(--space-6);
}

.analytics-header[b-ugi7tmx0gn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
}

.analytics-header h3[b-ugi7tmx0gn] {
    margin: 0;
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--gray-900);
}

.analytics-cards[b-ugi7tmx0gn] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-6);
}

.analytics-card[b-ugi7tmx0gn] {
    border: 1px solid var(--gray-200);
}

.analytics-card h4[b-ugi7tmx0gn] {
    margin: 0 0 var(--space-4) 0;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--gray-900);
}

.performance-metrics[b-ugi7tmx0gn] {
    display: flex;
    gap: var(--space-6);
}

.metric[b-ugi7tmx0gn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-value[b-ugi7tmx0gn] {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.metric-label[b-ugi7tmx0gn] {
    font-size: var(--text-sm);
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.top-campaigns[b-ugi7tmx0gn] {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.top-campaign-item[b-ugi7tmx0gn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3);
    background: var(--gray-50);
    border-radius: var(--radius);
}

.campaign-name[b-ugi7tmx0gn] {
    font-weight: 500;
    color: var(--gray-900);
}

.campaign-rate[b-ugi7tmx0gn] {
    font-weight: 700;
    color: var(--success-color);
}

/* MudBlazor Tab Overrides */
.mud-tabs .mud-tab[b-ugi7tmx0gn] {
    font-weight: 500;
    text-transform: none;
}

.mud-tabs .mud-tab-active[b-ugi7tmx0gn] {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-content[b-ugi7tmx0gn] {
        flex-direction: column;
        gap: var(--space-4);
        align-items: flex-start;
    }

    .header-actions[b-ugi7tmx0gn] {
        width: 100%;
        justify-content: space-between;
    }

    .stats-grid[b-ugi7tmx0gn] {
        grid-template-columns: repeat(2, 1fr);
    }

    .campaigns-grid[b-ugi7tmx0gn] {
        grid-template-columns: 1fr;
    }

    .campaign-filters[b-ugi7tmx0gn] {
        flex-direction: column;
        align-items: stretch;
    }

    .search-field[b-ugi7tmx0gn],
    .status-filter[b-ugi7tmx0gn] {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .marketing-page[b-ugi7tmx0gn] {
        padding: var(--space-4);
    }

    .header-text h1[b-ugi7tmx0gn] {
        font-size: 2rem;
    }

    .stats-grid[b-ugi7tmx0gn] {
        grid-template-columns: 1fr;
    }

    .customer-lists-grid[b-ugi7tmx0gn] {
        grid-template-columns: 1fr;
    }

    .analytics-cards[b-ugi7tmx0gn] {
        grid-template-columns: 1fr;
    }

    .performance-metrics[b-ugi7tmx0gn] {
        flex-direction: column;
        gap: var(--space-4);
    }

    .campaign-stats[b-ugi7tmx0gn] {
        justify-content: space-around;
    }

    .lists-header[b-ugi7tmx0gn] {
        flex-direction: column;
        gap: var(--space-3);
        align-items: stretch;
    }

    .analytics-header[b-ugi7tmx0gn] {
        flex-direction: column;
        gap: var(--space-3);
        align-items: stretch;
    }
}

@media (max-width: 640px) {
    .stat-content[b-ugi7tmx0gn] {
        padding: var(--space-4);
    }

    .stat-icon[b-ugi7tmx0gn] {
        font-size: 2rem;
    }

    .stat-value[b-ugi7tmx0gn] {
        font-size: 1.5rem;
    }

    .campaign-header[b-ugi7tmx0gn] {
        flex-direction: column;
        gap: var(--space-2);
        align-items: flex-start;
    }

    .campaign-actions[b-ugi7tmx0gn] {
        align-self: flex-end;
    }
}
/* _content/iteraanhuis-portal/Components/Pages/Settings.razor.rz.scp.css */
/* Settings Page CSS */

.settings-page[b-3wpm9kk3lw] {
    padding: var(--space-6);
    min-height: 100vh;
}

.settings-container[b-3wpm9kk3lw] {
    max-width: 800px;
    margin: 0 auto;
}

/* Header */
.settings-header[b-3wpm9kk3lw] {
    margin-bottom: var(--space-8);
}

.settings-header h1[b-3wpm9kk3lw] {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.settings-header p[b-3wpm9kk3lw] {
    margin: var(--space-2) 0 0 0;
    font-size: var(--text-lg);
    opacity: 0.7;
}

/* Cards */
.settings-card[b-3wpm9kk3lw] {
    margin-bottom: var(--space-6);
    border: 1px solid var(--gray-300);
}

.settings-card .card-content[b-3wpm9kk3lw] {
    padding: var(--space-6);
}

/* Card Header Section */
.card-header-section[b-3wpm9kk3lw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title[b-3wpm9kk3lw] {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.section-icon[b-3wpm9kk3lw] {
    font-size: 2rem;
    opacity: 0.8;
}

.section-title h3[b-3wpm9kk3lw] {
    margin: 0;
    font-size: var(--text-xl);
    font-weight: 600;
}

.section-title p[b-3wpm9kk3lw] {
    margin: var(--space-1) 0 0 0;
    font-size: var(--text-sm);
    opacity: 0.7;
}

/* Account Info Grid */
.account-info-grid[b-3wpm9kk3lw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
}

.info-item[b-3wpm9kk3lw] {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.info-label[b-3wpm9kk3lw] {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.info-value[b-3wpm9kk3lw] {
    font-size: var(--text-base);
    font-weight: 500;
}

/* Loading */
.loading-container[b-3wpm9kk3lw] {
    text-align: center;
    padding: var(--space-16);
}

.loading-container p[b-3wpm9kk3lw] {
    margin-top: var(--space-4);
    opacity: 0.7;
}

/* Form Adjustments */
.mud-form[b-3wpm9kk3lw] {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .settings-page[b-3wpm9kk3lw] {
        padding: var(--space-4);
    }

    .settings-header h1[b-3wpm9kk3lw] {
        font-size: 2rem;
    }

    .settings-card .card-content[b-3wpm9kk3lw] {
        padding: var(--space-4);
    }

    .section-title[b-3wpm9kk3lw] {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-2);
    }

    .section-icon[b-3wpm9kk3lw] {
        font-size: 1.5rem;
    }

    .account-info-grid[b-3wpm9kk3lw] {
        grid-template-columns: 1fr;
    }
}
/* _content/iteraanhuis-portal/Components/Shared/Card.razor.rz.scp.css */
/* Card.razor.css - Let MudBlazor handle the theming */

.card[b-qtmk6j70e9] {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

/* Light theme - minimal */
.card[b-qtmk6j70e9] {
    box-shadow: none;
    border: 1px solid;
}

.card:hover[b-qtmk6j70e9] {
    transform: translateY(-1px);
}

/* Dark theme - add shadows */
.mud-theme-dark .card[b-qtmk6j70e9] {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.3), 0 2px 4px -2px rgb(0 0 0 / 0.3);
}

.mud-theme-dark .card:hover[b-qtmk6j70e9] {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.5);
}

/* Card sections */
.card-header[b-qtmk6j70e9] {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-content[b-qtmk6j70e9] {
    padding: 1.5rem;
}

.card-footer[b-qtmk6j70e9] {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title[b-qtmk6j70e9] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.card-subtitle[b-qtmk6j70e9] {
    margin: 0.5rem 0 0 0;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Clickable */
.card.clickable[b-qtmk6j70e9] {
    cursor: pointer;
}

.card.clickable:hover[b-qtmk6j70e9] {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .card-header[b-qtmk6j70e9],
    .card-content[b-qtmk6j70e9],
    .card-footer[b-qtmk6j70e9] {
        padding: 1rem;
    }
}
/* _content/iteraanhuis-portal/Components/Shared/DataTable.razor.rz.scp.css */
/* DataTable.razor.css - Component-scoped styles */

.data-table-container[b-toyry8tho6] {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

/* Empty state styling */
.empty-state[b-toyry8tho6] {
    text-align: center;
    padding: var(--space-16) var(--space-8);
    color: var(--gray-500);
}

.empty-icon[b-toyry8tho6] {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--space-4);
    opacity: 0.6;
}

.empty-state p[b-toyry8tho6] {
    margin: 0;
    font-size: var(--text-lg);
}

/* Table styling */
.data-table[b-toyry8tho6] {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

/* Header styling */
.data-table thead[b-toyry8tho6] {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-bottom: 2px solid var(--gray-200);
}

.data-table th[b-toyry8tho6] {
    padding: var(--space-4) var(--space-6);
    text-align: left;
    font-weight: 600;
    color: var(--gray-700);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    white-space: nowrap;
}

/* Sortable column styling */
.data-table th.sortable[b-toyry8tho6] {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}

.data-table th.sortable:hover[b-toyry8tho6] {
    background: var(--gray-200);
}

/* Sort indicators */
.sort-indicator[b-toyry8tho6] {
    margin-left: var(--space-2);
    font-size: var(--text-sm);
    opacity: 0.7;
}

.sort-indicator.asc[b-toyry8tho6]::before {
    content: "↑";
}

.sort-indicator.desc[b-toyry8tho6]::before {
    content: "↓";
}

/* Body styling */
.data-table tbody tr[b-toyry8tho6] {
    border-bottom: 1px solid var(--gray-100);
    transition: background-color 0.2s ease;
}

.data-table tbody tr:hover[b-toyry8tho6] {
    background: var(--gray-50);
}

.data-table tbody tr:last-child[b-toyry8tho6] {
    border-bottom: none;
}

.data-table td[b-toyry8tho6] {
    padding: var(--space-4) var(--space-6);
    color: var(--gray-900);
    font-size: var(--text-base);
    vertical-align: middle;
}

/* Actions column */
.actions-column[b-toyry8tho6] {
    width: 120px;
    text-align: center;
}

.actions-cell[b-toyry8tho6] {
    text-align: center;
    white-space: nowrap;
}

.actions-cell button[b-toyry8tho6] {
    margin: 0 var(--space-1);
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-sm);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s ease;
}

.actions-cell button:hover[b-toyry8tho6] {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

.actions-cell button.danger[b-toyry8tho6] {
    color: var(--error-color);
    border-color: var(--error-color);
}

.actions-cell button.danger:hover[b-toyry8tho6] {
    background: var(--error-color);
    color: var(--white);
}

.actions-cell button.primary[b-toyry8tho6] {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.actions-cell button.primary:hover[b-toyry8tho6] {
    background: var(--primary-color);
    color: var(--white);
}

/* Responsive design */
@media (max-width: 768px) {
    .data-table-container[b-toyry8tho6] {
        overflow-x: auto;
    }

    .data-table th[b-toyry8tho6],
    .data-table td[b-toyry8tho6] {
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-sm);
    }

    .actions-cell button[b-toyry8tho6] {
        padding: var(--space-1) var(--space-2);
        font-size: 0.75rem;
    }
}

/* Loading state (if you want to add loading later) */
.data-table.loading[b-toyry8tho6] {
    opacity: 0.6;
    pointer-events: none;
}

.data-table.loading tbody tr:hover[b-toyry8tho6] {
    background: transparent;
}
