/* /Components/AdminDashboardSidebar.razor.rz.scp.css */
/* ========================================
   Admin Sidebar Component Styles
   Matches HTML Template Design
   ======================================== */

/* ========================================
   Mobile Overlay
   ======================================== */
.sidebar-overlay[b-eovcjmbied] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /*background: rgba(255, 255, 255, 0.96);*/
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

.sidebar-overlay.show[b-eovcjmbied] {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   Sidebar Navigation Container
   ======================================== */
.sidebar-nav[b-eovcjmbied] {
    /* Theme variables (scoped) */
    /* Reference tokens (from LFZADMIN/style.css) */
    --sidebar-bg: rgba(255, 255, 255, 1);
    --sidebar-line: rgba(229, 231, 235, 1);
    --sidebar-text: rgba(20, 20, 20, 1);
    --sidebar-primary: rgba(0, 31, 87, 1);
    --sidebar-danger: rgba(245, 31, 0, 1);
    --sidebar-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.35);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: 100vh;
    padding: 0;
    background: var(--sidebar-bg);
    border-right: none;
    gap: 0;
    position: relative;
    transition: width 0.3s ease;
}

/* Remove all underlines from any links within the sidebar */
.sidebar-nav[b-eovcjmbied]  a,
.sidebar-nav[b-eovcjmbied]  a:hover,
.sidebar-nav[b-eovcjmbied]  a:active,
.sidebar-nav[b-eovcjmbied]  a:focus,
.sidebar-nav[b-eovcjmbied]  a:visited,
.sidebar-nav[b-eovcjmbied]  a.active {
    text-decoration: none !important;
}

/* Remove underlines from all text elements in sidebar */
.sidebar-nav *[b-eovcjmbied] {
    text-decoration: none !important;
}

.sidebar-nav *:hover[b-eovcjmbied],
.sidebar-nav *:active[b-eovcjmbied],
.sidebar-nav *:focus[b-eovcjmbied] {
    text-decoration: none !important;
}

/* ========================================
   Collapsed State
   ======================================== */
.sidebar-nav.collapsed[b-eovcjmbied] {
    width: 64px;
    padding: 0;
}

.sidebar-nav.collapsed[b-eovcjmbied]  .sidebar-menu__link {
    justify-content: center;
    padding: 8px;
}

.sidebar-nav.collapsed .sidebar-footer__link[b-eovcjmbied] {
    justify-content: center;
    padding: 0;
}

/* ========================================
   Mobile Toggle Button
   ======================================== */
.sidebar-toggle[b-eovcjmbied] {
    display: none; /* Hidden by default, shown on mobile */
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.sidebar-toggle:hover[b-eovcjmbied] {
    background: rgba(15, 23, 42, 0.06);
    border-radius: 6px;
}

.sidebar-toggle:focus[b-eovcjmbied] {
    outline: 2px solid rgba(0, 31, 87, 0.35);
    outline-offset: 2px;
    border-radius: 6px;
}

.hamburger-icon[b-eovcjmbied] {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sidebar-text);
    position: relative;
    transition: background 0.3s ease;
}

.hamburger-icon[b-eovcjmbied]::before,
.hamburger-icon[b-eovcjmbied]::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--sidebar-text);
    transition: transform 0.3s ease;
}

.hamburger-icon[b-eovcjmbied]::before {
    top: -8px;
}

.hamburger-icon[b-eovcjmbied]::after {
    top: 8px;
}

/* ========================================
   Collapse/Expand Toggle Button (Desktop Only)
   ======================================== */
.sidebar-collapse-toggle[b-eovcjmbied] {
    display: none; /* default; desktop media query flips to flex */
    position: absolute;
    top: 72px;
    right: -12px;
    width: 24px;
    height: 24px;
    padding: 0;
    align-items: center;
    justify-content: center;
    background: var(--sidebar-bg);
    color: var(--sidebar-text);
    border: 1px solid var(--sidebar-line);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06),
                0 2px 6px rgba(15, 23, 42, 0.06);
    transition: background-color 0.15s ease,
                border-color 0.15s ease,
                color 0.15s ease,
                box-shadow 0.15s ease,
                transform 0.15s ease;
}

.sidebar-collapse-toggle:hover[b-eovcjmbied] {
    background: rgba(15, 23, 42, 0.06);
    border-color: rgba(0, 31, 87, 0.20);
    color: var(--sidebar-primary);
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.08),
                0 4px 10px rgba(15, 23, 42, 0.08);
}

.sidebar-collapse-toggle:focus-visible[b-eovcjmbied] {
    outline: 2px solid rgba(0, 31, 87, 0.35);
    outline-offset: 2px;
}

.sidebar-collapse-toggle:active[b-eovcjmbied] {
    transform: scale(0.94);
    background: rgba(15, 23, 42, 0.10);
}

.sidebar-collapse-icon[b-eovcjmbied] {
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid currentColor;
    border-left: 1.5px solid currentColor;
    transform: rotate(-45deg);
    transform-origin: center;
    margin-left: 2px;
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sidebar-collapse-icon.collapsed[b-eovcjmbied] {
    transform: rotate(135deg);
    margin-left: -2px;
}

.sidebar-collapse-toggle[b-eovcjmbied]::after {
    content: attr(aria-label);
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    padding: 4px 8px;
    background: rgba(20, 20, 20, 0.92);
    color: #FFFFFF;
    font: 12px/1 Ubuntu, sans-serif;
    white-space: nowrap;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease 0.4s, visibility 0.15s ease 0.4s;
    z-index: 1002;
}

.sidebar-collapse-toggle:hover[b-eovcjmbied]::after,
.sidebar-collapse-toggle:focus-visible[b-eovcjmbied]::after {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   Sidebar Header - Logo Section
   ======================================== */
.sidebar-top[b-eovcjmbied] {
    padding: 30px 30px 0;
}

.sidebar-header[b-eovcjmbied] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
}

.sidebar-header[b-eovcjmbied]  a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    text-decoration: none !important;
}

.sidebar-logo[b-eovcjmbied] {
    width: 120px;
    height: 53px;
    object-fit: contain;
    max-width: 100%;
}

.sidebar-logo-divider[b-eovcjmbied] {
    margin-top: 24px;
    height: 1px;
    width: 100%;
    background-color: var(--sidebar-line);
}

/* ========================================
   Sidebar Menu
   ======================================== */
.sidebar-menu[b-eovcjmbied] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 40px 16px 0 14px; /* align with reference menu group: left 14, right 16 */
    margin: 0;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.sidebar-menu__item[b-eovcjmbied] {
    width: 100%;
    
}

[b-eovcjmbied] .sidebar-menu__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    color: var(--sidebar-text);
    text-decoration: none !important;
    border-radius: 8px;
    transition: background-color 0.15s ease, color 0.15s ease;
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    font-weight: 400;
    min-height: 40px;
    border-radius: 50px;
}

.sidebar-menu__link[b-eovcjmbied]  a {
    text-decoration: none !important;
}

.sidebar-menu__link[b-eovcjmbied]  a:hover,
.sidebar-menu__link[b-eovcjmbied]  a:active,
.sidebar-menu__link[b-eovcjmbied]  a:focus,
.sidebar-menu__link[b-eovcjmbied]  a.active {
    text-decoration: none !important;
}

[b-eovcjmbied] .sidebar-menu__link:hover {
    background-color: transparent;
    color: var(--sidebar-text);
    text-decoration: none !important;
}

[b-eovcjmbied] .sidebar-menu__link:active {
    text-decoration: none !important;
}

[b-eovcjmbied] .sidebar-menu__link:focus {
    outline: 2px solid rgba(0, 31, 87, 0.35);
    outline-offset: 2px;
    text-decoration: none !important;
}

[b-eovcjmbied] .sidebar-menu__link.active {
    background-color: var(--sidebar-primary);
    color: rgba(255, 255, 255, 1);
    box-shadow: none;
    text-decoration: none !important;
}

[b-eovcjmbied] .sidebar-menu__link.active:hover {
    background-color: var(--sidebar-primary);
    text-decoration: none !important;
}

/* ========================================
   Sidebar Menu Icons
   ======================================== */
.sidebar-menu__icon[b-eovcjmbied] {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: opacity 0.15s ease;
    opacity: 1;
}

[b-eovcjmbied] .sidebar-menu__link.active .sidebar-menu__icon {
    opacity: 1;
}

.sidebar-menu__icon--composite[b-eovcjmbied] {
    width: 20px;
    height: 20px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    vertical-align: middle;
}

.sidebar-menu__icon--composite img[b-eovcjmbied] {
    position: absolute;
    transition: filter 0.2s ease;
}

[b-eovcjmbied] .sidebar-menu__link.active .sidebar-menu__icon--composite img {
    filter: none;
}

.regulatory-icon-1[b-eovcjmbied] {
    width: 15px;
    height: 13px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
}

.regulatory-icon-2[b-eovcjmbied] {
    width: 12px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -50%);
}

.sidebar-menu__text[b-eovcjmbied] {
    flex: 1;
    vertical-align: middle;
    line-height: 20px;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    text-decoration: none !important;
}

.sidebar-menu__text.hidden[b-eovcjmbied] {
    opacity: 0;
    visibility: hidden;
    width: 0;
    overflow: hidden;
}

.sidebar-bottom[b-eovcjmbied] {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0 32px 26px;
    border-top: none;
}

.sidebar-nav.collapsed .sidebar-bottom[b-eovcjmbied] {
    padding-left: 0;
    padding-right: 0;
}

/* ========================================
   Sidebar Footer - Settings
   ======================================== */
.sidebar-footer[b-eovcjmbied] {
    display: flex;
    justify-content: stretch;
    align-items: center;
}

.sidebar-footer__link[b-eovcjmbied] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    color: var(--sidebar-text);
    text-decoration: none !important;
    border-radius: 0;
    transition: color 0.15s ease;
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    font-weight: 400;
    min-height: 24px;
    width: 100%;
}

button.sidebar-footer__link[b-eovcjmbied] {
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.sidebar-footer__link[b-eovcjmbied]  a {
    text-decoration: none !important;
}

.sidebar-footer__link[b-eovcjmbied]  a:hover,
.sidebar-footer__link[b-eovcjmbied]  a:active,
.sidebar-footer__link[b-eovcjmbied]  a:focus,
.sidebar-footer__link[b-eovcjmbied]  a.active {
    text-decoration: none !important;
}

.sidebar-footer__link:hover[b-eovcjmbied] {
    color: var(--sidebar-text);
    text-decoration: none !important;
}

.sidebar-footer__link:active[b-eovcjmbied] {
    text-decoration: none !important;
}

.sidebar-footer__link:focus[b-eovcjmbied] {
    outline: 2px solid rgba(0, 31, 87, 0.35);
    outline-offset: 2px;
    text-decoration: none !important;
}

.sidebar-footer__link.active[b-eovcjmbied] {
    background-color: transparent;
    color: var(--sidebar-text);
    text-decoration: none !important;
}

.sidebar-footer__icon[b-eovcjmbied] {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    opacity: 0.95;
    transition: opacity 0.15s ease;
}

.sidebar-footer__link.active .sidebar-footer__icon[b-eovcjmbied] {
    filter: none;
}

.sidebar-footer__text[b-eovcjmbied] {
    /*flex: 1;*/
    transition: opacity 0.2s ease, visibility 0.2s ease;
    text-decoration: none !important;
}

.sidebar-footer__text.hidden[b-eovcjmbied] {
    opacity: 0;
    visibility: hidden;
    width: 0;
    overflow: hidden;
}

.sidebar-header.hidden[b-eovcjmbied] {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

/* ========================================
   Sidebar Settings Dropdown
   ======================================== */
.sidebar-settings-overlay[b-eovcjmbied] {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: transparent;
}

.sidebar-nav.settings-dropdown-open[b-eovcjmbied] {
    z-index: 1000;
}

.sidebar-settings-container[b-eovcjmbied] {
    position: relative;
    width: 100%;
}

.sidebar-settings-btn[b-eovcjmbied] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    width: 100%;
    background: transparent;
    border: none;
    color: var(--sidebar-text);
    text-decoration: none !important;
    border-radius: 0;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    font-weight: 400;
    min-height: 24px;
    transition: color 0.15s ease;
}

.sidebar-settings-btn:hover[b-eovcjmbied] {
    color: var(--sidebar-text);
    text-decoration: none !important;
}

.sidebar-settings-btn:active[b-eovcjmbied] {
    text-decoration: none !important;
}

.sidebar-settings-btn:focus[b-eovcjmbied] {
    outline: 2px solid rgba(0, 31, 87, 0.35);
    outline-offset: 2px;
    text-decoration: none !important;
}

.settings-dropdown-icon[b-eovcjmbied] {
    display: none; /* reference footer has no caret */
}

.settings-dropdown-icon.rotate[b-eovcjmbied] {
    transform: rotate(180deg);
}

.sidebar-settings-dropdown[b-eovcjmbied] {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 1);
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 12px;
    box-shadow: 0px 4px 10px 1px rgba(0, 15, 41, 0.08);
    z-index: 1000;
    overflow: hidden;
    min-width: 180px;
}

.sidebar-footer__link.sidebar-logout[b-eovcjmbied] {
    color: var(--sidebar-danger);
    text-decoration: none !important;
}

.sidebar-footer__link.sidebar-logout.active[b-eovcjmbied] {
    background-color: transparent;
    color: var(--sidebar-danger);
    text-decoration: none !important;
}

.sidebar-footer__link.sidebar-logout:hover[b-eovcjmbied] {
    color: var(--sidebar-danger);
    text-decoration: none !important;
}

.dropdown-header[b-eovcjmbied] {
    padding: 8px 16px;
    background-color: rgba(243, 246, 255, 1);
    color: rgba(134, 134, 134, 1);
    font-size: 16px;
    font-weight: 500;
    border-bottom: 0.5px solid rgba(204, 204, 204, 1);
}

.dropdown-item[b-eovcjmbied] {
    padding: 12px 16px;
    color: rgba(15, 23, 42, 1);
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.dropdown-item:hover[b-eovcjmbied] {
    background-color: rgba(241, 245, 249, 1);
}

.dropdown-item:last-child[b-eovcjmbied] {
    border-bottom: none;
}

/* Collapsed state adjustments */
.sidebar-nav.collapsed .sidebar-settings-btn[b-eovcjmbied] {
    justify-content: center;
    padding: 0.5rem;
}

.sidebar-nav.collapsed .sidebar-settings-dropdown[b-eovcjmbied] {
    left: auto;
    right: 0;
    min-width: 200px;
}

/* ========================================
   Mobile Responsive Styles (< 641px)
   ======================================== */
@media (max-width: 640.98px) {
    .sidebar-overlay[b-eovcjmbied] {
        display: block;
    }

    .sidebar-nav[b-eovcjmbied] {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        max-width: 85vw;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        box-shadow: var(--sidebar-shadow-lg);
    }

    .sidebar-nav.show[b-eovcjmbied] {
        transform: translateX(0);
    }

    .sidebar-toggle[b-eovcjmbied] {
        display: flex;
    }

    .sidebar-collapse-toggle[b-eovcjmbied] {
        display: none !important;
    }

    .sidebar-header[b-eovcjmbied] {
        padding-top: 3rem; /* Space for close button */
    }
}

/* ========================================
   Desktop Styles (>= 641px)
   ======================================== */
@media (min-width: 641px) {
    .sidebar-overlay[b-eovcjmbied] {
        display: none !important;
    }

    .sidebar-nav[b-eovcjmbied] {
        width: 260px;
        position: sticky;
        top: 0;
        transform: none !important;
    }

    .sidebar-nav.collapsed[b-eovcjmbied] {
        width: 64px;
    }

    .sidebar-toggle[b-eovcjmbied] {
        display: none !important;
    }

    .sidebar-collapse-toggle[b-eovcjmbied] {
        display: flex;
    }

    .sidebar-header[b-eovcjmbied] {
        padding-top: 0;
        transition: opacity 0.2s ease, visibility 0.2s ease, height 0.2s ease;
    }
}

/* ========================================
   Accessibility - High Contrast Mode
   ======================================== */
@media (prefers-contrast: high) {
    [b-eovcjmbied] .sidebar-menu__link:focus,
    .sidebar-footer__link:focus[b-eovcjmbied],
    .sidebar-settings-btn:focus[b-eovcjmbied] {
        outline-width: 3px;
    }

    [b-eovcjmbied] .sidebar-menu__link.active {
        border: 2px solid rgba(255, 255, 255, 0.85);
    }
}

/* ========================================
   Accessibility - Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .sidebar-nav[b-eovcjmbied],
    .sidebar-overlay[b-eovcjmbied],
    [b-eovcjmbied] .sidebar-menu__link,
    .sidebar-footer__link[b-eovcjmbied],
    .sidebar-settings-btn[b-eovcjmbied],
    .sidebar-menu__icon[b-eovcjmbied],
    .sidebar-footer__icon[b-eovcjmbied],
    .hamburger-icon[b-eovcjmbied],
    .hamburger-icon[b-eovcjmbied]::before,
    .hamburger-icon[b-eovcjmbied]::after,
    .sidebar-collapse-toggle[b-eovcjmbied],
    .sidebar-collapse-icon[b-eovcjmbied],
    .sidebar-menu__text[b-eovcjmbied],
    .sidebar-footer__text[b-eovcjmbied],
    .settings-dropdown-icon[b-eovcjmbied],
    .sidebar-header[b-eovcjmbied] {
        transition: none;
    }
}

/* /Components/ApprovalConfirmationModal.razor.rz.scp.css */
/* Modal Overlay (Backdrop) */
.modal-overlay[b-udsatetysg] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay.show[b-udsatetysg] {
    opacity: 1;
}

.modal-overlay.hide[b-udsatetysg] {
    opacity: 0;
}

/* Modal Content Container */
.modal-content[b-udsatetysg] {
    position: relative;
    width: 500px;
    max-width: 90vw;
    max-height: 90vh;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
    z-index: 1051;
    overflow: hidden;
}

.modal-content.show[b-udsatetysg] {
    transform: scale(1);
}

.modal-content.hide[b-udsatetysg] {
    transform: scale(0.9);
}

/* Modal Header */
.modal-header[b-udsatetysg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

.modal-header h2[b-udsatetysg] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
}

.modal-close[b-udsatetysg] {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.modal-close:hover[b-udsatetysg] {
    background-color: #e9ecef;
    color: #212529;
}

.modal-close:focus[b-udsatetysg] {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

.modal-close:disabled[b-udsatetysg] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Modal Body */
.modal-body[b-udsatetysg] {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}


.modal-content[b-p74yoodufz][b-udsatetysg] {
    width: 600px;
}



.confirmation-message[b-udsatetysg] {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #FFF3E0;
    border: 1px solid #ffc107;
    border-radius: 4px;
}

    .confirmation-message p[b-udsatetysg] {
        margin: 0;
        color: #1A3B6A;
        font-size: 1rem;
    }

.confirmation-message strong[b-udsatetysg] {
    color: #212529;
}

/* Details Sections */
.details-section[b-udsatetysg] {
    margin-bottom: 1.5rem;
}

.section-title[b-udsatetysg] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.detail-row[b-udsatetysg] {
    display: flex;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f3f5;
}

.detail-row:last-child[b-udsatetysg] {
    border-bottom: none;
}

.detail-label[b-udsatetysg] {
    font-weight: 500;
    color: #6c757d;
    min-width: 140px;
    margin-right: 1rem;
}

.detail-row span:not(.detail-label)[b-udsatetysg] {
    color: #212529;
    flex: 1;
}

/* Comments Section */
.comments-section[b-udsatetysg] {
    margin-bottom: 1rem;
}

.comments-label[b-udsatetysg] {
    display: block;
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

.comments-textarea[b-udsatetysg] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.comments-textarea:focus[b-udsatetysg] {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.comments-textarea:disabled[b-udsatetysg] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

/* Alert Styles */
.alert[b-udsatetysg] {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-danger[b-udsatetysg] {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* Modal Footer */
.modal-footer[b-udsatetysg] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid #dee2e6;
    background-color: #ffffff;
}

.modal-cancel-btn[b-udsatetysg] {
    padding: 0.625rem 1.5rem;
    background-color: #F5F5F5;
    color: #333333;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-cancel-btn:hover:not(:disabled)[b-udsatetysg] {
    background-color: #E0E0E0;
    border-color: #CCCCCC;
}

.modal-cancel-btn:disabled[b-udsatetysg] {
    opacity: 0.6;
    cursor: not-allowed;
}

.modal-confirm-btn[b-udsatetysg] {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #ffffff;
}

    .modal-confirm-btn.approve[b-udsatetysg] {
        background-color: #153055;
    }

        .modal-confirm-btn.approve:hover:not(:disabled)[b-udsatetysg] {
            background-color: #153055;
        }

.modal-confirm-btn.reject[b-udsatetysg] {
    background-color: #dc3545;
}

.modal-confirm-btn.reject:hover:not(:disabled)[b-udsatetysg] {
    background-color: #bb2d3b;
}

.modal-confirm-btn:disabled[b-udsatetysg] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content[b-udsatetysg] {
        width: 95vw;
        max-width: 95vw;
    }

    .detail-label[b-udsatetysg] {
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .modal-header[b-udsatetysg] {
        padding: 1rem;
    }

    .modal-header h2[b-udsatetysg] {
        font-size: 1.25rem;
    }

    .modal-body[b-udsatetysg] {
        padding: 1rem;
    }

    .detail-row[b-udsatetysg] {
        flex-direction: column;
        gap: 0.25rem;
    }

    .detail-label[b-udsatetysg] {
        min-width: auto;
        margin-right: 0;
    }

    .modal-footer[b-udsatetysg] {
        flex-direction: column-reverse;
        padding: 1rem;
    }

    .modal-cancel-btn[b-udsatetysg],
    .modal-confirm-btn[b-udsatetysg] {
        width: 100%;
    }
}

/* Scrollbar Styling */
.modal-body[b-udsatetysg]::-webkit-scrollbar {
    width: 8px;
}

.modal-body[b-udsatetysg]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal-body[b-udsatetysg]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.modal-body[b-udsatetysg]::-webkit-scrollbar-thumb:hover {
    background: #555;
}









/* /Components/DeleteConfirmationModal.razor.rz.scp.css */
/* Modal Overlay (Backdrop) */
.modal-overlay[b-d1j1773iln] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay.show[b-d1j1773iln] {
    opacity: 1;
}

.modal-overlay.hide[b-d1j1773iln] {
    opacity: 0;
}

/* Modal Content Container */
.modal-content[b-d1j1773iln] {
    position: relative;
    width: 450px;
    max-width: 90vw;
    max-height: 90vh;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
    z-index: 1051;
    overflow: hidden;
}

.modal-content.show[b-d1j1773iln] {
    transform: scale(1);
}

.modal-content.hide[b-d1j1773iln] {
    transform: scale(0.9);
}

/* Modal Header */
.modal-header[b-d1j1773iln] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

.modal-header h2[b-d1j1773iln] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
}

.modal-close[b-d1j1773iln] {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.modal-close:hover[b-d1j1773iln] {
    background-color: #e9ecef;
    color: #212529;
}

.modal-close:focus[b-d1j1773iln] {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

/* Modal Body */
.modal-body[b-d1j1773iln] {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    text-align: center;
}

.warning-icon-wrapper[b-d1j1773iln] {
    margin-bottom: 1rem;
}

.confirmation-text[b-d1j1773iln] {
    font-size: 1rem;
    color: #212529;
    margin: 0 0 0.5rem 0;
}

.confirmation-subtext[b-d1j1773iln] {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

/* Alert Styles */
.alert[b-d1j1773iln] {
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    margin-bottom: 0;
    border: 1px solid transparent;
    border-radius: 4px;
    text-align: left;
}

.alert-danger[b-d1j1773iln] {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* Modal Footer */
.modal-footer[b-d1j1773iln] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid #dee2e6;
    background-color: #ffffff;
}

.modal-cancel-btn[b-d1j1773iln] {
    padding: 0.625rem 1.5rem;
    background-color: #F5F5F5;
    color: #333333;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-cancel-btn:hover:not(:disabled)[b-d1j1773iln] {
    background-color: #E0E0E0;
    border-color: #CCCCCC;
}

.modal-cancel-btn:disabled[b-d1j1773iln] {
    opacity: 0.6;
    cursor: not-allowed;
}

.modal-delete-btn[b-d1j1773iln] {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #ffffff;
    background-color: #dc3545;
}

.modal-delete-btn:hover:not(:disabled)[b-d1j1773iln] {
    background-color: #bb2d3b;
}

.modal-delete-btn:disabled[b-d1j1773iln] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 576px) {
    .modal-header[b-d1j1773iln] {
        padding: 1rem;
    }

    .modal-header h2[b-d1j1773iln] {
        font-size: 1.25rem;
    }

    .modal-body[b-d1j1773iln] {
        padding: 1rem;
    }

    .modal-footer[b-d1j1773iln] {
        flex-direction: column-reverse;
        padding: 1rem;
    }

    .modal-cancel-btn[b-d1j1773iln],
    .modal-delete-btn[b-d1j1773iln] {
        width: 100%;
    }
}
/* /Components/DigitalPassportCard.razor.rz.scp.css */
/* Digital Passport Card Styles - Based on LEADWAY Health Design */

.passport-card[b-99xgo8h3gp] {
    position: relative;
    width: 100%;
    max-width: 600px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 2px solid #D2691E;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
}

.passport-card-content[b-99xgo8h3gp] {
    display: flex;
    padding: 14px;
    gap: 14px;
    min-height: 240px;
}

/* Left Section: Photo (40% width) */
.passport-card-photo-section[b-99xgo8h3gp] {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
}

.passport-photo-container[b-99xgo8h3gp] {
    width: 50%;
    height: 50%;
    aspect-ratio: 3/4;
    border-radius: 8px 8px 20px 8px;
    overflow: hidden;
    border: 2px solid #E0E0E0;
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.passport-photo[b-99xgo8h3gp] {
    width: 100px;
    height: 100px;
    object-fit: cover;
    display: block;
}

.passport-photo-placeholder[b-99xgo8h3gp] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
}

.passport-status-badge[b-99xgo8h3gp] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #DC3545;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 0 0 20px 8px;
    text-align: center;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Ubuntu', sans-serif;
    z-index: 10;
}

/* Right Section: Information (60% width) */
.passport-card-info-section[b-99xgo8h3gp] {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 8px;
}

/* Header: Logo and Organization */
.passport-card-header[b-99xgo8h3gp] {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 16px;
}

.passport-logo[b-99xgo8h3gp] {
    flex-shrink: 0;
}

#lfzLogo[b-99xgo8h3gp] {
    display: flex;
    justify-content: flex-end;
}

.logo-circle[b-99xgo8h3gp] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F4A460;
    border: 2px solid #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-circle svg[b-99xgo8h3gp] {
    width: 24px;
    height: 24px;
}

.passport-organization[b-99xgo8h3gp] {
    flex: 1;
}

.organization-name[b-99xgo8h3gp] {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.2;
    margin-bottom: 2px;
}

.organization-subtitle[b-99xgo8h3gp] {
    font-size: 13px;
    color: #1A1A1A;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 4px;
}

.heart-icon[b-99xgo8h3gp] {
    width: 12px;
    height: 12px;
    display: inline-block;
    vertical-align: middle;
}

/* Personal Information */
.passport-info-content[b-99xgo8h3gp] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.passport-full-name[b-99xgo8h3gp] {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.2;
    margin-top: 4px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.passport-info-row[b-99xgo8h3gp] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.passport-info-row-member[b-99xgo8h3gp] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.passport-info-principal[b-99xgo8h3gp] {
    display: flex;
    align-items: flex-start;
    padding-top: 16px;
}

.principal-label[b-99xgo8h3gp] {
    font-size: 12px;
    color: #999999;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.passport-info-item[b-99xgo8h3gp] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label[b-99xgo8h3gp] {
    font-size: 12px;
    color: #666666;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.info-value[b-99xgo8h3gp] {
    font-size: 14px;
    color: #1A1A1A;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    text-transform: uppercase;
}

.info-value-small[b-99xgo8h3gp] {
    font-size: 11px;
    color: #666666;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

/* Watermark Pattern - Fingerprint/Swirling */
.passport-watermark[b-99xgo8h3gp] {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 80px;
    height: 80px;
    opacity: 0.15;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(244, 164, 96, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 70% 50%, rgba(244, 164, 96, 0.25) 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 70%, rgba(244, 164, 96, 0.2) 2px, transparent 2px),
        radial-gradient(circle at 20% 60%, rgba(244, 164, 96, 0.25) 1px, transparent 1px),
        radial-gradient(circle at 80% 30%, rgba(244, 164, 96, 0.2) 1.5px, transparent 1.5px);
    background-size: 25px 25px, 20px 20px, 30px 30px, 15px 15px, 22px 22px;
    background-position: 0% 0%, 50% 30%, 30% 70%, 70% 50%, 20% 80%;
    filter: blur(0.5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .passport-card-content[b-99xgo8h3gp] {
        flex-direction: column;
        padding: 12px;
    }

    .passport-card-photo-section[b-99xgo8h3gp] {
        flex: 0 0 auto;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .passport-card-info-section[b-99xgo8h3gp] {
        padding-left: 0;
        padding-top: 12px;
    }

    .passport-full-name[b-99xgo8h3gp] {
        font-size: 18px;
        text-align: center;
    }

    .passport-card-header[b-99xgo8h3gp] {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .passport-card[b-99xgo8h3gp] {
        max-width: 100%;
        border-radius: 8px;
    }

    .passport-card-content[b-99xgo8h3gp] {
        padding: 10px;
    }

    .passport-full-name[b-99xgo8h3gp] {
        font-size: 16px;
    }

    .organization-name[b-99xgo8h3gp] {
        font-size: 16px;
    }
}
/* /Components/GrantAccessModal.razor.rz.scp.css */
/* Backdrop */
.modal-overlay[b-7u5x9y6nq2] {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show[b-7u5x9y6nq2] {
    opacity: 1;
}

.modal-overlay.hide[b-7u5x9y6nq2] {
    opacity: 0;
}

/* Panel */
.modal-panel[b-7u5x9y6nq2] {
    width: 100%;
    max-width: 500px;
    height: 100%;
    background-color: #FFFFFF;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.modal-panel.show[b-7u5x9y6nq2] {
    transform: translateX(0);
}

.modal-panel.hide[b-7u5x9y6nq2] {
    transform: translateX(100%);
}

/* Header */
.modal-header[b-7u5x9y6nq2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #E0E0E0;
}

.modal-title[b-7u5x9y6nq2] {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
}

.modal-close-button[b-7u5x9y6nq2] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    color: #666666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close-button:hover:not(:disabled)[b-7u5x9y6nq2] {
    background-color: #F5F5F5;
    color: #333333;
}

.modal-close-button:disabled[b-7u5x9y6nq2] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Content */
.modal-content[b-7u5x9y6nq2] {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.detail-item[b-7u5x9y6nq2] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-label[b-7u5x9y6nq2] {
    font-weight: 600;
    color: #333333;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
}

.form-select[b-7u5x9y6nq2] {
    padding: 10px 12px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    outline: none;
}

.form-select:focus[b-7u5x9y6nq2] {
    border-color: #1A3B6A;
    box-shadow: 0 0 0 3px rgba(26, 59, 106, 0.12);
}

.validation-message[b-7u5x9y6nq2] {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(220, 53, 69, 0.12);
    color: #b02a37;
    border: 1px solid rgba(220, 53, 69, 0.25);
    font-size: 13px;
    font-family: 'Ubuntu', sans-serif;
}

/* Footer */
.modal-footer[b-7u5x9y6nq2] {
    padding: 24px;
    border-top: 1px solid #E0E0E0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.modal-approve-btn[b-7u5x9y6nq2] {
    padding: 10px 24px;
    background-color: #001f57;
    color: #ffffff;
    border: 1px solid #198754;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .modal-approve-btn:hover:not(:disabled)[b-7u5x9y6nq2] {
        background-color: #001f57b5;
        border-color: #157347;
    }

.modal-approve-btn:disabled[b-7u5x9y6nq2] {
    opacity: 0.6;
    cursor: not-allowed;
}

.modal-close-btn[b-7u5x9y6nq2] {
    padding: 10px 24px;
    background-color: #F5F5F5;
    color: #333333;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close-btn:hover:not(:disabled)[b-7u5x9y6nq2] {
    background-color: #E0E0E0;
    border-color: #CCCCCC;
}

.modal-close-btn:disabled[b-7u5x9y6nq2] {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 767px) {
    .modal-panel[b-7u5x9y6nq2] {
        max-width: 100%;
    }
}

/* /Components/InvitationDetailsModal.razor.rz.scp.css */
/* Modal Overlay (Backdrop) */
.modal-overlay[b-p74yoodufz] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.modal-overlay.show[b-p74yoodufz] {
    opacity: 1;
}

.modal-overlay.hide[b-p74yoodufz] {
    opacity: 0;
}

/* Modal Content Container */
.modal-content[b-p74yoodufz] {
    position: fixed;
    top: 0;
    right: 0;
    width: 600px;
    max-width: 90vw;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1051;
    overflow: hidden;
}

.modal-content.show[b-p74yoodufz] {
    transform: translateX(0);
}

.modal-content.hide[b-p74yoodufz] {
    transform: translateX(100%);
}

/* Modal Header */
.modal-header[b-p74yoodufz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

.modal-header h2[b-p74yoodufz] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
}

.modal-close[b-p74yoodufz] {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.modal-close:hover[b-p74yoodufz] {
    background-color: #e9ecef;
    color: #212529;
}

.modal-close:focus[b-p74yoodufz] {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

/* Modal Body */
.modal-body[b-p74yoodufz] {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

/* Details Sections */
.details-section[b-p74yoodufz] {
    margin-bottom: 2rem;
}

.details-section:last-child[b-p74yoodufz] {
    margin-bottom: 0;
}

.section-header[b-p74yoodufz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.section-title[b-p74yoodufz] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    margin: 0;
}

.btn-initiate-invitation[b-p74yoodufz] {
    background-color: #153055;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

    .btn-initiate-invitation:hover[b-p74yoodufz] {
        background-color: #153055;
        transform: translateY(-1px);
    }

.btn-initiate-invitation:active[b-p74yoodufz] {
    transform: translateY(0);
}

.btn-initiate-invitation:focus[b-p74yoodufz] {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

.detail-row[b-p74yoodufz] {
    display: flex;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f3f5;
}

.detail-row:last-child[b-p74yoodufz] {
    border-bottom: none;
}

.detail-label[b-p74yoodufz] {
    font-weight: 500;
    color: #6c757d;
    min-width: 160px;
    margin-right: 1rem;
}

.detail-row span:not(.detail-label)[b-p74yoodufz] {
    color: #212529;
    flex: 1;

}

/* Badge Styles */
.walkin-badge[b-p74yoodufz] {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    background: rgba(0, 122, 255, 0.08);
    color: #007aff;
    border: 1px solid rgba(0, 122, 255, 0.35);
}

.rescheduled-badge[b-p74yoodufz] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    background: #e7f3ff;
    color: #0066cc;
    border: 1px solid #b3d9ff;
}

.badge[b-p74yoodufz] {
    display: inline-block;
    padding: 0.50em 0.65em;
    font-size: 0.875em;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.50rem;
    text-transform: capitalize;
}

.bg-success[b-p74yoodufz] {
    background-color: #198754;
    color: #ffffff;
}
.detail-row span.bg-success-custom[b-p74yoodufz] {
    /* background-color: #dee2e6;
    color: rgba(52, 199, 89, 1);
    border-color: rgba(82, 198, 82, 1);*/
    background-color: rgba(52, 199, 89, 0.12);
    color: rgba(52, 199, 89, 1);
    border-color: rgba(82, 198, 82, 1);
    border: 1px solid transparent;
}


/*.bg-pending {
    background: rgba(255, 149, 0, 0.12);
    color: rgba(255, 149, 0, 1);
    border-color: rgba(255, 149, 0, 0.45);

}*/

.bg-pending[b-p74yoodufz][b-p74yoodufz] {
    background: rgba(255, 149, 0, 0.12);
    color: rgba(255, 149, 0, 1) !important;
    border-color: rgba(255, 149, 0, 0.45);
}

.bg-unattended[b-p74yoodufz][b-p74yoodufz][b-p74yoodufz] {
    background: rgba(139, 139, 139, 0.12);
    color: rgba(139, 139, 139, 1);
    border-color: rgba(139, 139, 139, 0.35);
}


    


    .bg-warning[b-p74yoodufz] {
        background-color: #ffc107;
        color: #000000;
    }

.bg-danger[b-p74yoodufz] {
    background-color: #dc3545;
    color: #ffffff;
}

.bg-info[b-p74yoodufz] {
    background-color: #0dcaf0;
    color: #000000;
}

.bg-secondary[b-p74yoodufz] {
    background-color: #6c757d;
    color: #ffffff;
}

/* Vehicles Section */
.vehicles-list[b-p74yoodufz] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vehicle-item[b-p74yoodufz] {
    padding: 1rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    transition: box-shadow 0.2s ease;
}

.vehicle-item:hover[b-p74yoodufz] {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vehicle-plate[b-p74yoodufz] {
    margin-bottom: 0.5rem;
}

.vehicle-plate strong[b-p74yoodufz] {
    font-size: 1.1rem;
    color: #212529;
}

.vehicle-details[b-p74yoodufz] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.vehicle-info[b-p74yoodufz] {
    font-size: 0.9rem;
    color: #6c757d;
}

.no-vehicles[b-p74yoodufz] {
    color: #6c757d;
    font-style: italic;
    margin: 0;
    padding: 1rem;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content[b-p74yoodufz] {
        width: 100vw;
        max-width: 100vw;
    }

    .detail-label[b-p74yoodufz] {
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .modal-header[b-p74yoodufz] {
        padding: 1rem;
    }

    .modal-header h2[b-p74yoodufz] {
        font-size: 1.25rem;
    }

    .modal-body[b-p74yoodufz] {
        padding: 1rem;
    }

    .detail-row[b-p74yoodufz] {
        flex-direction: column;
        gap: 0.25rem;
    }

    .detail-label[b-p74yoodufz] {
        min-width: auto;
        margin-right: 0;
    }
}

/* Scrollbar Styling */
.modal-body[b-p74yoodufz]::-webkit-scrollbar {
    width: 8px;
}

.modal-body[b-p74yoodufz]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal-body[b-p74yoodufz]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.modal-body[b-p74yoodufz]::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Modal Footer */
.modal-footer[b-p74yoodufz] {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: flex-end;
    align-items: center;
    padding: 1.5rem;
    border-top: 1px solid #dee2e6;
    background-color: #ffffff;
}.modal-close-btn[b-p74yoodufz] {
    margin-right: auto;
    padding: 10px 24px;
    background-color: #F5F5F5;
    color: #333333;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}.modal-close-btn:hover[b-p74yoodufz] {
    background-color: #E0E0E0;
    border-color: #CCCCCC;
}.modal-cancel-btn[b-p74yoodufz] {
    padding: 10px 24px;
    background-color: #dc3545;
    color: #ffffff;
    border: 1px solid #dc3545;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 0.5rem;
}.modal-cancel-btn:hover:not(:disabled)[b-p74yoodufz] {
    background-color: #bb2d3b;
    border-color: #bb2d3b;
}.modal-cancel-btn:disabled[b-p74yoodufz] {
    opacity: 0.6;
    cursor: not-allowed;
}.modal-cancel-btn:focus[b-p74yoodufz] {
    outline: 2px solid #dc3545;
    outline-offset: 2px;
}

.modal-approve-btn[b-p74yoodufz] {
    padding: 10px 24px;
    background-color: #198754;
    color: #ffffff;
    border: 1px solid #198754;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 0.5rem;
}

.modal-approve-btn:hover[b-p74yoodufz] {
    background-color: #157347;
    border-color: #157347;
}

.modal-reject-btn[b-p74yoodufz] {
    padding: 10px 24px;
    background-color: #6c757d;
    color: #ffffff;
    border: 1px solid #6c757d;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 0.5rem;
}

.modal-reject-btn:hover[b-p74yoodufz] {
    background-color: #5c636a;
    border-color: #5c636a;
}

/* Confirmation Modal */
.confirmation-modal-overlay[b-p74yoodufz] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1200;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn-b-p74yoodufz 0.3s ease;
}

@keyframes fadeIn-b-p74yoodufz {
    from { opacity: 0; }
    to { opacity: 1; }
}

.confirmation-modal[b-p74yoodufz] {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    animation: slideInUp-b-p74yoodufz 0.3s ease;
}

@keyframes slideInUp-b-p74yoodufz {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.confirmation-modal-content[b-p74yoodufz] {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.confirmation-message[b-p74yoodufz] {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

.confirmation-buttons[b-p74yoodufz] {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.confirmation-cancel-button[b-p74yoodufz] {
    padding: 12px 24px;
    background-color: #F5F5F5;
    color: #333333;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 100px;
}

.confirmation-cancel-button:hover[b-p74yoodufz] {
    background-color: #E0E0E0;
    border-color: #CCCCCC;
}

.confirmation-confirm-button[b-p74yoodufz] {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
    color: #FFFFFF;
}

.confirmation-confirm-button.reject-confirm[b-p74yoodufz] {
    background-color: #DC3545;
}

.confirmation-confirm-button.reject-confirm:hover[b-p74yoodufz] {
    background-color: #C82333;
}

.confirmation-confirm-button.reject-confirm:active[b-p74yoodufz] {
    background-color: #BD2130;
}

.confirmation-confirm-button:disabled[b-p74yoodufz] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Confirmation Modal */
@media (max-width: 767px) {
    .confirmation-modal[b-p74yoodufz] {
        width: 95%;
        max-width: none;
    }

    .confirmation-modal-content[b-p74yoodufz] {
        padding: 24px;
        gap: 20px;
    }

    .confirmation-message[b-p74yoodufz] {
        font-size: 16px;
    }

    .confirmation-buttons[b-p74yoodufz] {
        flex-direction: column-reverse;
        width: 100%;
    }

    .confirmation-cancel-button[b-p74yoodufz],
    .confirmation-confirm-button[b-p74yoodufz] {
        width: 100%;
        min-width: 0;
    }
}

/* Responsive Footer */
@media (max-width: 576px) {
    .modal-footer[b-p74yoodufz] {
        flex-direction: column-reverse;
        padding: 1rem;
    }    .allow-entry-button[b-p74yoodufz],
    .modal-close-btn[b-p74yoodufz],
    .modal-cancel-btn[b-p74yoodufz] {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}
/* /Components/NewInvitationModal.razor.rz.scp.css */
/* Modal overlay and container (similar to InvitationDetailsModal) */
.modal-overlay[b-nrx0ogwgzt] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.modal-overlay.show[b-nrx0ogwgzt] {
    opacity: 1;
}

.modal-overlay.hide[b-nrx0ogwgzt] {
    opacity: 0;
}

.modal-content[b-nrx0ogwgzt] {
    position: fixed;
    top: 0;
    right: 0;
    width: 600px;
    max-width: 90vw;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1051;
    overflow: hidden;
}

.modal-content.show[b-nrx0ogwgzt] {
    transform: translateX(0);
}

.modal-content.hide[b-nrx0ogwgzt] {
    transform: translateX(100%);
}

.modal-header[b-nrx0ogwgzt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

.modal-header h2[b-nrx0ogwgzt] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
}

.modal-close[b-nrx0ogwgzt] {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.modal-close:hover[b-nrx0ogwgzt] {
    background-color: #e9ecef;
    color: #212529;
}

.modal-close:focus[b-nrx0ogwgzt] {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

.modal-body[b-nrx0ogwgzt] {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.form-section[b-nrx0ogwgzt] {
    margin-bottom: 2rem;
}

.form-section:last-child[b-nrx0ogwgzt] {
    margin-bottom: 0;
}

.section-title[b-nrx0ogwgzt] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.form-row[b-nrx0ogwgzt] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row.phone-row[b-nrx0ogwgzt] {
    grid-template-columns: 150px 1fr;
    gap: 12px;
    margin-bottom: 4px;
}

.form-group.phone-country-group[b-nrx0ogwgzt] {
    min-width: 0;
    max-width: 100%;
}

.phone-country-group-form[b-nrx0ogwgzt] {
    min-width: 0;
    max-width: 100%;
}

.form-group.phone-national-group[b-nrx0ogwgzt] {
    min-width: 0;
}

.form-row.form-row--purpose-location[b-nrx0ogwgzt] {
    grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
}

.form-row.form-row--full[b-nrx0ogwgzt] {
    grid-template-columns: 1fr;
}

.form-group.form-group--location-column[b-nrx0ogwgzt] {
    min-width: 0;
}

.form-row:last-child[b-nrx0ogwgzt] {
    margin-bottom: 0;
}

.form-group[b-nrx0ogwgzt] {
    display: flex;
    flex-direction: column;
}

.form-label[b-nrx0ogwgzt] {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 0.5rem;
}

.form-control[b-nrx0ogwgzt] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.375rem;
    font-size: 0.9rem;
    background-color: #ffffff;
    color: #333333;
    transition: border-color 0.2s ease;
}

.form-control:focus[b-nrx0ogwgzt] {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.form-control.is-invalid[b-nrx0ogwgzt] {
    border-color: #dc3545;
}

.readonly-field[b-nrx0ogwgzt] {
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
    border-color: #dee2e6 !important;
}

.readonly-field:focus[b-nrx0ogwgzt] {
    outline: none !important;
    border-color: #dee2e6 !important;
    box-shadow: none !important;
}

.datetime-input-wrapper[b-nrx0ogwgzt] {
    position: relative;
    display: flex;
    align-items: center;
}

.datetime-input[b-nrx0ogwgzt] {
    flex: 1;
}

/* Keep the browser's native calendar indicator visible. Clicking it opens the
   picker via a real user gesture, which works inside a cross-origin iframe
   (where the scripted showPicker() API is blocked). */
.datetime-input[b-nrx0ogwgzt]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

.datetime-input[b-nrx0ogwgzt]::-webkit-inner-spin-button,
.datetime-input[b-nrx0ogwgzt]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.checkbox-group[b-nrx0ogwgzt] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.form-checkbox[b-nrx0ogwgzt] {
    width: auto;
    margin: 0;
}

.checkbox-label[b-nrx0ogwgzt] {
    margin: 0;
    font-weight: 400;
    cursor: pointer;
}

.vehicle-help-text[b-nrx0ogwgzt] {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 1rem;
    font-style: italic;
}

.vehicle-fields[b-nrx0ogwgzt] {
    margin-top: 1rem;
}

.validation-message[b-nrx0ogwgzt] {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.alert[b-nrx0ogwgzt] {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 0.375rem;
    border: 1px solid transparent;
}

.alert-danger[b-nrx0ogwgzt] {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.form-actions[b-nrx0ogwgzt] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #dee2e6;
}

.btn-cancel[b-nrx0ogwgzt] {
    padding: 0.75rem 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    background-color: #ffffff;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-cancel:hover[b-nrx0ogwgzt] {
    background-color: #f8f9fa;
    border-color: #adb5bd;
}

.btn-submit[b-nrx0ogwgzt] {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    background-color: #001a4a;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-submit-custom[b-nrx0ogwgzt] {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    background-color: #001a4a;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-submit:hover:not(:disabled)[b-nrx0ogwgzt] {
    background-color: #0b5ed7;
}

.btn-submit:disabled[b-nrx0ogwgzt] {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .modal-content[b-nrx0ogwgzt] {
        width: 100vw;
        max-width: 100vw;
    }

    .form-row[b-nrx0ogwgzt] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .modal-header[b-nrx0ogwgzt] {
        padding: 1rem;
    }

    .modal-header h2[b-nrx0ogwgzt] {
        font-size: 1.25rem;
    }

    .modal-body[b-nrx0ogwgzt] {
        padding: 1rem;
    }

    .form-actions[b-nrx0ogwgzt] {
        flex-direction: column-reverse;
    }

    .btn-cancel[b-nrx0ogwgzt],
    .btn-submit[b-nrx0ogwgzt] {
        width: 100%;
    }
}

.modal-body[b-nrx0ogwgzt]::-webkit-scrollbar {
    width: 8px;
}

.modal-body[b-nrx0ogwgzt]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal-body[b-nrx0ogwgzt]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.modal-body[b-nrx0ogwgzt]::-webkit-scrollbar-thumb:hover {
    background: #555;
}
/* Base overlay and container */
.modal-overlay[b-nrx0ogwgzt] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.modal-overlay.show[b-nrx0ogwgzt] { opacity: 1; }
.modal-overlay.hide[b-nrx0ogwgzt] { opacity: 0; }

.modal-content[b-nrx0ogwgzt] {
    position: fixed;
    top: 0;
    right: 0;
    width: 600px;
    max-width: 90vw;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1051;
    overflow: hidden;
}

.modal-content.show[b-nrx0ogwgzt] { transform: translateX(0); }
.modal-content.hide[b-nrx0ogwgzt] { transform: translateX(100%); }

.modal-header[b-nrx0ogwgzt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

.modal-header h2[b-nrx0ogwgzt] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
}

.modal-close[b-nrx0ogwgzt] {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.modal-close:hover[b-nrx0ogwgzt] { background-color: #e9ecef; color: #212529; }
.modal-close:focus[b-nrx0ogwgzt] { outline: 2px solid #0d6efd; outline-offset: 2px; }

.modal-body[b-nrx0ogwgzt] {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

/* Form layout */
.form-section[b-nrx0ogwgzt] { margin-bottom: 2rem; }
.form-section:last-child[b-nrx0ogwgzt] { margin-bottom: 0; }

.section-title[b-nrx0ogwgzt] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.form-row[b-nrx0ogwgzt] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row.form-row--purpose-location[b-nrx0ogwgzt] {
    grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
}

.form-row.form-row--full[b-nrx0ogwgzt] {
    grid-template-columns: 1fr;
}

.form-group.form-group--location-column[b-nrx0ogwgzt] {
    min-width: 0;
}

.form-row:last-child[b-nrx0ogwgzt] { margin-bottom: 0; }

.form-group[b-nrx0ogwgzt] { display: flex; flex-direction: column; }

.form-label[b-nrx0ogwgzt] {
    font-size: 0.875rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 0.5rem;
}

/* Inputs */
.form-control[b-nrx0ogwgzt] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    background-color: #ffffff;
    color: #333333;
    transition: border-color 0.2s ease;
}

.form-control:focus[b-nrx0ogwgzt] {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.form-control.is-invalid[b-nrx0ogwgzt] { border-color: #dc3545; }

.readonly-field[b-nrx0ogwgzt] {
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
    border-color: #dee2e6 !important;
}

.readonly-field:focus[b-nrx0ogwgzt] {
    outline: none !important;
    border-color: #dee2e6 !important;
    box-shadow: none !important;
}

.datetime-input-wrapper[b-nrx0ogwgzt] { position: relative; display: flex; align-items: center; }
.datetime-input[b-nrx0ogwgzt] { flex: 1; padding-right: 2.5rem; }
.datetime-icon[b-nrx0ogwgzt] { position: absolute; right: 0.75rem; cursor: pointer; user-select: none; }

.checkbox-group[b-nrx0ogwgzt] { display: flex; flex-direction: row; align-items: center; gap: 0.5rem; }
.form-checkbox[b-nrx0ogwgzt] { width: auto; margin: 0; }
.checkbox-label[b-nrx0ogwgzt] { margin: 0; font-weight: 400; cursor: pointer; }

.vehicle-help-text[b-nrx0ogwgzt] {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 1rem;
    font-style: italic;
}

.vehicle-fields[b-nrx0ogwgzt] { margin-top: 1rem; }

.validation-message[b-nrx0ogwgzt] {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.alert[b-nrx0ogwgzt] {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 0.375rem;
    border: 1px solid transparent;
}

.alert-danger[b-nrx0ogwgzt] {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.form-actions[b-nrx0ogwgzt] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #dee2e6;
}

.btn-cancel[b-nrx0ogwgzt] {
    padding: 0.75rem 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    background-color: #ffffff;
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-cancel:hover[b-nrx0ogwgzt] { background-color: #f8f9fa; border-color: #adb5bd; }

.btn-submit[b-nrx0ogwgzt] {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    background-color: #0d6efd;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-submit:hover:not(:disabled)[b-nrx0ogwgzt] { background-color: #0b5ed7; }
.btn-submit:disabled[b-nrx0ogwgzt] { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 768px) {
    .modal-content[b-nrx0ogwgzt] { width: 100vw; max-width: 100vw; }
    .form-row[b-nrx0ogwgzt] { grid-template-columns: 1fr; }
    .form-row.phone-row[b-nrx0ogwgzt] { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .modal-header[b-nrx0ogwgzt] { padding: 1rem; }
    .modal-header h2[b-nrx0ogwgzt] { font-size: 1.25rem; }
    .modal-body[b-nrx0ogwgzt] { padding: 1rem; }
    .form-actions[b-nrx0ogwgzt] { flex-direction: column-reverse; }
    .btn-cancel[b-nrx0ogwgzt], .btn-submit[b-nrx0ogwgzt] { width: 100%; }
}

.modal-body[b-nrx0ogwgzt]::-webkit-scrollbar { width: 8px; }
.modal-body[b-nrx0ogwgzt]::-webkit-scrollbar-track { background: #f1f1f1; }
.modal-body[b-nrx0ogwgzt]::-webkit-scrollbar-thumb { background: #888; border-radius: 4px; }
.modal-body[b-nrx0ogwgzt]::-webkit-scrollbar-thumb:hover { background: #555; }















/* /Components/NotificationBell.razor.rz.scp.css */
.notification-bell-container[b-zv9j3ql56j] {
    position: relative;
    display: inline-block;
}

.notification-bell-btn[b-zv9j3ql56j] {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    width: var(--topbar-control-size, 40px);
    height: var(--topbar-control-size, 40px);
    padding: 8px;
    box-sizing: border-box;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-badge[b-zv9j3ql56j] {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: #F51F00;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.notification-dropdown[b-zv9j3ql56j] {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    width: 350px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 500px;
    display: flex;
    flex-direction: column;
}

.notification-dropdown-header[b-zv9j3ql56j] {
    padding: 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-dropdown-header h3[b-zv9j3ql56j] {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.mark-all-read-btn[b-zv9j3ql56j] {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
}

.mark-all-read-btn:hover[b-zv9j3ql56j] {
    text-decoration: underline;
}

.notification-list[b-zv9j3ql56j] {
    overflow-y: auto;
    max-height: 400px;
}

.notification-loading[b-zv9j3ql56j],
.notification-empty[b-zv9j3ql56j] {
    padding: 32px;
    text-align: center;
    color: #666;
}

.notification-item[b-zv9j3ql56j] {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.notification-item:hover[b-zv9j3ql56j] {
    background-color: #f8f9fa;
}

.notification-item.unread[b-zv9j3ql56j] {
    background-color: #f0f7ff;
}

.notification-content[b-zv9j3ql56j] {
    flex: 1;
}

.notification-message[b-zv9j3ql56j] {
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}

.notification-time[b-zv9j3ql56j] {
    font-size: 12px;
    color: #999;
}

.notification-dot[b-zv9j3ql56j] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #007bff;
    margin-left: 8px;
}

.notification-dropdown-footer[b-zv9j3ql56j] {
    padding: 12px 16px;
    border-top: 1px solid #eee;
    text-align: center;
}

.notification-dropdown-footer a[b-zv9j3ql56j] {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.notification-dropdown-footer a:hover[b-zv9j3ql56j] {
    text-decoration: underline;
}







/* /Components/Toast.razor.rz.scp.css */
.toast-container[b-2y60mka9ns] {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    pointer-events: none;
}

.toast[b-2y60mka9ns] {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0;
    min-width: 300px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    overflow: hidden;
}

.toast.show[b-2y60mka9ns] {
    opacity: 1;
    transform: translateX(0);
}

.toast-content[b-2y60mka9ns] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.toast-icon[b-2y60mka9ns] {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-message[b-2y60mka9ns] {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    font-weight: 500;
}

.toast-close[b-2y60mka9ns] {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border-radius: 4px;
    transition: all 0.2s;
}

.toast-close:hover[b-2y60mka9ns] {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

/* Success Toast */
.toast-success[b-2y60mka9ns] {
    border-left: 4px solid #10b981;
}

.toast-success .toast-icon[b-2y60mka9ns] {
    color: #10b981;
}

/* Error Toast */
.toast-error[b-2y60mka9ns] {
    border-left: 4px solid #ef4444;
}

.toast-error .toast-icon[b-2y60mka9ns] {
    color: #ef4444;
}

/* Info Toast */
.toast-info[b-2y60mka9ns] {
    border-left: 4px solid #3b82f6;
}

.toast-info .toast-icon[b-2y60mka9ns] {
    color: #3b82f6;
}

/* Warning Toast */
.toast-warning[b-2y60mka9ns] {
    border-left: 4px solid #f59e0b;
}

.toast-warning .toast-icon[b-2y60mka9ns] {
    color: #f59e0b;
}

/* Responsive */
@media (max-width: 768px) {
    .toast-container[b-2y60mka9ns] {
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .toast[b-2y60mka9ns] {
        min-width: auto;
        max-width: none;
    }
}


















/* /Components/VisitorsByDayChart.razor.rz.scp.css */
.visitors-by-day-chart[b-y225cxa2um] {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

.chart-header-row[b-y225cxa2um] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 16px;
    flex-shrink: 0;
}

.chart-title[b-y225cxa2um] {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
}

.chart-view-toggle[b-y225cxa2um] {
    display: inline-flex;
    background: #f1f4f8;
    border-radius: 999px;
    padding: 3px;
    margin-left: auto;
    flex-shrink: 0;
}

.toggle-btn[b-y225cxa2um] {
    border: none;
    background: transparent;
    color: #566579;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    padding: 4px 12px;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
    font-family: 'Ubuntu', sans-serif;
}

.toggle-btn:hover:not(.active)[b-y225cxa2um] {
    color: #0F172A;
}

.toggle-btn.active[b-y225cxa2um] {
    background: #0F172A;
    color: #FFFFFF;
}

.chart-content[b-y225cxa2um] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 200px;
}

.chart-status[b-y225cxa2um] {
    text-align: center;
    padding: 2rem;
    color: #666666;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
}

.visitors-chart[b-y225cxa2um] {
    width: 100%;
    height: 100%;
}

.axis-label[b-y225cxa2um] {
    font-size: 10px;
    fill: #666666;
    font-family: 'Ubuntu', sans-serif;
}

.chart-line[b-y225cxa2um] {
    filter: drop-shadow(0 2px 4px rgba(76, 175, 80, 0.2));
}

.chart-tooltip[b-y225cxa2um] {
    pointer-events: none;
}

.tooltip-text[b-y225cxa2um] {
    font-size: 12px;
    fill: #1A1A1A;
    font-family: 'Ubuntu', sans-serif;
}
/* /Layout/LoginLayout.razor.rz.scp.css */
.login-layout[b-7e789381x9] {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
}

/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-qnbna0317u] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-qnbna0317u] {
    flex: 1;
}

.sidebar[b-qnbna0317u] {
    display: flex;
    flex-shrink: 0;
    width: fit-content;
}

/* ============================================================
   Top Row (Enterprise Navbar)
   ============================================================ */
.top-row[b-qnbna0317u] {
    --topbar-control-size: 40px;
    height: 4rem;
    background-color: #FFFFFF;
    border-bottom: 1px solid rgba(229, 231, 235, 1);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Ubuntu', sans-serif;
}

/* ============================================================
   Brand Block (left)
   ============================================================ */
.invitation-header-left[b-qnbna0317u] {
    margin-right: auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    line-height: 1;
    user-select: none;
    color: #0F172A;
}

.brand-mark[b-qnbna0317u] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #001F57;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(0, 31, 87, 0.18);
}

.brand-wordmark[b-qnbna0317u] {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

.invitation-header-left .vms-letter[b-qnbna0317u] {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    letter-spacing: 0;
    text-transform: none;
}

.invitation-header-left .vms-letter--v[b-qnbna0317u] {
    color: #0F172A;
}

.invitation-header-left .vms-letter--m[b-qnbna0317u] {
    color: #0F172A;
}

.invitation-header-left .vms-letter--s[b-qnbna0317u] {
    color: #1A3B6A;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.brand-sep[b-qnbna0317u] {
    color: rgba(15, 23, 42, 0.30);
    font-size: 1rem;
    line-height: 1;
}

/* ============================================================
   Right-side Controls
   ============================================================ */
.invitation-header-right[b-qnbna0317u] {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.topbar-actions[b-qnbna0317u] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar-divider[b-qnbna0317u] {
    width: 1px;
    height: 24px;
    background: rgba(229, 231, 235, 1);
    margin: 0 4px;
    flex-shrink: 0;
}

/* Hover affordance for the NotificationBell button (scoped to top-row) */
.top-row[b-qnbna0317u]  .notification-bell-btn {
    border-radius: 10px;
    transition: background-color 0.15s ease;
}

.top-row[b-qnbna0317u]  .notification-bell-btn:hover {
    background-color: rgba(15, 23, 42, 0.06);
}

.top-row[b-qnbna0317u]  .notification-bell-btn:focus-visible {
    outline: 2px solid rgba(0, 31, 87, 0.35);
    outline-offset: 2px;
}

/* ============================================================
   Profile Chip
   ============================================================ */
.invitation-user-profile-wrapper[b-qnbna0317u] {
    position: relative;
}

.invitation-user-profile-wrapper.avatar-dropdown-open[b-qnbna0317u] {
    z-index: 102;
}

.invitation-profile-trigger[b-qnbna0317u] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 10px 4px 4px;
    margin: 0;
    border: 1px solid transparent;
    background: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
    border-radius: 999px;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.invitation-profile-trigger:hover[b-qnbna0317u] {
    background-color: rgba(15, 23, 42, 0.06);
}

.invitation-user-profile-wrapper.avatar-dropdown-open .invitation-profile-trigger[b-qnbna0317u] {
    background-color: rgba(15, 23, 42, 0.06);
    border-color: rgba(229, 231, 235, 1);
}

.invitation-profile-trigger:focus-visible[b-qnbna0317u] {
    outline: 2px solid rgba(0, 31, 87, 0.35);
    outline-offset: 2px;
}

.invitation-user-profile[b-qnbna0317u] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.invitation-avatar[b-qnbna0317u] {
    width: var(--topbar-control-size, 40px);
    height: var(--topbar-control-size, 40px);
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(229, 231, 235, 1);
    flex-shrink: 0;
}

.invitation-user-meta[b-qnbna0317u] {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
    align-items: flex-start;
    text-align: left;
}

.invitation-user-name[b-qnbna0317u] {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.invitation-user-email[b-qnbna0317u] {
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(15, 23, 42, 0.60);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.invitation-user-email:empty[b-qnbna0317u] {
    display: none;
}

.profile-caret[b-qnbna0317u] {
    color: rgba(15, 23, 42, 0.60);
    flex-shrink: 0;
    transition: transform 0.15s ease;
}

.invitation-user-profile-wrapper.avatar-dropdown-open .profile-caret[b-qnbna0317u] {
    transform: rotate(180deg);
}

/* ============================================================
   Avatar Dropdown
   ============================================================ */
.avatar-dropdown-overlay[b-qnbna0317u] {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: transparent;
}

.avatar-dropdown[b-qnbna0317u] {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 10px;
    min-width: 240px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid rgba(229, 231, 235, 1);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10), 0 2px 6px rgba(15, 23, 42, 0.06);
    z-index: 101;
    overflow: hidden;
}

.avatar-dropdown-header[b-qnbna0317u] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(229, 231, 235, 1);
    background: #FFFFFF;
}

.avatar-dropdown-header__avatar[b-qnbna0317u] {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(229, 231, 235, 1);
    flex-shrink: 0;
}

.avatar-dropdown-header__meta[b-qnbna0317u] {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}

.avatar-dropdown-header__name[b-qnbna0317u] {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.avatar-dropdown-header__email[b-qnbna0317u] {
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(15, 23, 42, 0.60);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.avatar-dropdown-header__email:empty[b-qnbna0317u] {
    display: none;
}

.avatar-dropdown-item[b-qnbna0317u] {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: none;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #0F172A;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.15s ease;
}

.avatar-dropdown-item:hover[b-qnbna0317u] {
    background-color: rgba(15, 23, 42, 0.06);
}

.avatar-dropdown-item:focus-visible[b-qnbna0317u] {
    outline: 2px solid rgba(0, 31, 87, 0.35);
    outline-offset: -2px;
}

.avatar-dropdown-item__icon[b-qnbna0317u] {
    flex-shrink: 0;
}

.avatar-dropdown-item--danger[b-qnbna0317u] {
    color: rgba(245, 31, 0, 1);
}

.avatar-dropdown-item--danger:hover[b-qnbna0317u] {
    background-color: rgba(245, 31, 0, 0.08);
    color: rgba(245, 31, 0, 1);
}

/* ============================================================
   Top-row inline links (preserved from original)
   ============================================================ */
.top-row[b-qnbna0317u]  a, .top-row[b-qnbna0317u]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row[b-qnbna0317u]  a:hover, .top-row[b-qnbna0317u]  .btn-link:hover {
    text-decoration: underline;
}

.top-row[b-qnbna0317u]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 640.98px) {
    .top-row[b-qnbna0317u] {
        gap: 8px;
        justify-content: space-between;
    }

    .invitation-user-meta[b-qnbna0317u] {
        display: none;
    }

    .invitation-profile-trigger[b-qnbna0317u] {
        padding: 4px;
    }

    .brand-sep[b-qnbna0317u],
    .invitation-header-left .vms-letter--s[b-qnbna0317u] {
        display: none;
    }

    .top-row[b-qnbna0317u]  a, .top-row[b-qnbna0317u]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-qnbna0317u] {
        flex-direction: row;
    }

    .sidebar[b-qnbna0317u] {
        height: 100vh;
        position: sticky;
        top: 0;
        overflow: visible;
    }

    .top-row[b-qnbna0317u] {
        position: sticky;
        top: 0;
        z-index: 50;
    }

    .top-row.avatar-dropdown-open[b-qnbna0317u] {
        z-index: 102;
    }

    .top-row.auth[b-qnbna0317u]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-qnbna0317u], article[b-qnbna0317u] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
        transition: padding-left 0.3s ease;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-r0yeymrq6l] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-r0yeymrq6l] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-r0yeymrq6l] {
    font-size: 1.1rem;
}

.bi[b-r0yeymrq6l] {
    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-r0yeymrq6l] {
    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-r0yeymrq6l] {
    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-r0yeymrq6l] {
    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-r0yeymrq6l] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-r0yeymrq6l] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-r0yeymrq6l] {
        padding-bottom: 1rem;
    }

    .nav-item[b-r0yeymrq6l]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-r0yeymrq6l]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-r0yeymrq6l]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-r0yeymrq6l] {
        display: none;
    }

    .collapse[b-r0yeymrq6l] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-r0yeymrq6l] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Attendance.razor.rz.scp.css */
/* Main Container */
.lfz-admin-container[b-xvwcqdtjq8] {
    width: 100%;
    display: flex;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    align-items: center;
    flex-direction: column;
    background-color: rgba(246, 246, 246, 1);
    font-family: 'Ubuntu', sans-serif;
}

.lfz-admin-main[b-xvwcqdtjq8] {
    width: 100%;
    max-width: 1424px;
    padding: 0px 22px 50px 22px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
}

    .lfz-admin-main[b-npseki7j28][b-xvwcqdtjq8] {
        width: 100%;
        max-width: 1424px;
        display: flex;
        flex-direction: column;
        gap: 24px;
        box-sizing: border-box;
        margin-bottom: 10px;
    }
    /* Header Section */
    .lfz-admin-header[b-xvwcqdtjq8] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px;
        background-color: rgba(255, 255, 255, 1);
        border: 0.5px solid rgba(204, 204, 204, 1);
        border-radius: 8px;
        height: 60px;
    }

.lfz-admin-title[b-xvwcqdtjq8] {
    color: rgba(20, 20, 20, 1);
    font-size: 28px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
}

.admin-dashboard-title[b-xvwcqdtjq8] {
    width: 100%;
    max-width: 1200px;
    padding: 20px 0px 0px 20px;
    box-sizing: border-box;
    text-align: left;
    font-size: 32px;
    /*font-weight:  700;*/
    /*color: #1A3B6A;*/
    margin: 0 0 8px 0;
    font-family: 'Ubuntu', sans-serif;
}

.lfz-admin-user-section[b-xvwcqdtjq8] {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lfz-admin-notification-icon[b-xvwcqdtjq8] {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(20, 20, 20, 1);
    cursor: pointer;
}

.lfz-admin-profile[b-xvwcqdtjq8] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lfz-admin-avatar[b-xvwcqdtjq8] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}

.lfz-admin-avatar img[b-xvwcqdtjq8] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lfz-admin-user-info[b-xvwcqdtjq8] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lfz-admin-user-name[b-xvwcqdtjq8] {
    color: rgba(20, 20, 20, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.lfz-admin-user-email[b-xvwcqdtjq8] {
    color: rgba(20, 20, 20, 0.65);
    font-size: 12px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

/* Metric Cards Section */
.lfz-admin-metrics[b-xvwcqdtjq8] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lfz-admin-metric-card[b-xvwcqdtjq8] {
    position: relative;
    width: 100%;
    min-width: 0;
    height: 120px;
    background-color: rgba(255, 255, 255, 1);
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 8px;
    padding: 20px 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.metric-wave-bg[b-xvwcqdtjq8] {
    position: absolute;
    bottom: -20px;
    right: -50px;
    width: 396px;
    height: 103px;
    opacity: 0.1;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.05) 10px,
        rgba(0, 0, 0, 0.05) 20px
    );
}

.metric-label[b-xvwcqdtjq8] {
    color: rgba(20, 20, 20, 1);
    font-size: 20px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    z-index: 1;
}

.metric-value[b-xvwcqdtjq8] {
    color: rgba(20, 20, 20, 1);
    font-size: 32px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    z-index: 1;
}

.metric-inline-spinner[b-xvwcqdtjq8] {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 3px solid #e5e7eb;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: attendance-spin-b-xvwcqdtjq8 0.8s linear infinite;
    vertical-align: middle;
}

.metric-icon[b-xvwcqdtjq8] {
    position: absolute;
    top: 20px;
    right: 16px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    z-index: 1;
}

.visitors-icon[b-xvwcqdtjq8] {
    background-color: rgba(223, 129, 47, 0.08);
    color: rgba(223, 129, 47, 1);
}

.enterprises-icon[b-xvwcqdtjq8] {
    background-color: rgba(0, 122, 255, 0.08);
    color: rgba(0, 122, 255, 1);
}

.walkins-icon[b-xvwcqdtjq8] {
    background-color: rgba(82, 198, 82, 0.08);
    color: rgba(82, 198, 82, 1);
}

/* Charts Section */
.lfz-admin-charts[b-xvwcqdtjq8] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.lfz-admin-chart-container[b-xvwcqdtjq8] {
    background-color: rgba(255, 255, 255, 1);
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 8px;
    padding: 16px;
    height: 313px;
    display: flex;
    flex-direction: column;
}

.chart-header-row[b-xvwcqdtjq8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 16px;
    flex-shrink: 0;
}

.chart-title[b-xvwcqdtjq8] {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
}

.chart-view-toggle[b-xvwcqdtjq8] {
    display: inline-flex;
    background: #f1f4f8;
    border-radius: 999px;
    padding: 3px;
    margin-left: auto;
    flex-shrink: 0;
}

.toggle-btn[b-xvwcqdtjq8] {
    border: none;
    background: transparent;
    color: #566579;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    padding: 4px 12px;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
    font-family: 'Ubuntu', sans-serif;
}

.toggle-btn:hover:not(.active)[b-xvwcqdtjq8] {
    color: #0F172A;
}

.toggle-btn.active[b-xvwcqdtjq8] {
    background: #0F172A;
    color: #FFFFFF;
}

.pie-chart-content[b-xvwcqdtjq8] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.pie-chart[b-xvwcqdtjq8] {
    flex-shrink: 0;
}

.pie-segment[b-xvwcqdtjq8] {
    transition: opacity 0.2s;
}

.pie-segment:hover[b-xvwcqdtjq8] {
    opacity: 0.8;
}

.pie-legend[b-xvwcqdtjq8] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legend-item[b-xvwcqdtjq8] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color[b-xvwcqdtjq8] {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    flex-shrink: 0;
}

.legend-label[b-xvwcqdtjq8] {
    color: rgba(20, 20, 20, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

/* Invitations Section */
.lfz-admin-invitations[b-xvwcqdtjq8] {
    background-color: rgba(255, 255, 255, 1);
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 8px;
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.invitations-title[b-xvwcqdtjq8] {
    color: rgba(20, 20, 20, 1);
    font-size: 20px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.invitations-controls[b-xvwcqdtjq8] {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.search-cluster[b-xvwcqdtjq8] {
    display: flex;
    align-items: end;
    gap: 8px;
    flex: 1;
    min-width: 0;
    max-width: 600px;
    margin-left:20px;
}

.search-cluster .search-box[b-xvwcqdtjq8] {
    max-width: none;
}

.year-select[b-xvwcqdtjq8] {
    height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(216, 216, 216, 1);
    border-radius: 6px;
    background-color: #fff;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(20, 20, 20, 1);
    min-width: 140px;
    flex-shrink: 0;
    cursor: pointer;
}

.search-button[b-xvwcqdtjq8] {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 16px;
    background-color: #001F57;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

.search-button:hover[b-xvwcqdtjq8] {
    background-color: #001a4a;
}

.search-box[b-xvwcqdtjq8] {
    flex: 1;
    min-width: 0;
    max-width: 600px;
    height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 1);
    box-sizing: border-box;
    position: relative;
}

.search-suggestions-dropdown[b-xvwcqdtjq8] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(216, 216, 216, 1);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 10000;
    max-height: 320px;
    overflow-y: auto;
}

.suggestion-item[b-xvwcqdtjq8] {
    padding: 10px 14px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid rgba(240, 240, 240, 1);
    transition: background-color 0.15s ease;
    background-color: rgba(255, 255, 255, 1);
}

.suggestion-item:last-child[b-xvwcqdtjq8] {
    border-bottom: none;
}

.suggestion-item.highlighted[b-xvwcqdtjq8],
.suggestion-item:hover[b-xvwcqdtjq8] {
    background-color: rgba(0, 31, 87, 0.05);
}

.suggestion-primary[b-xvwcqdtjq8] {
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(20, 20, 20, 1);
}

.suggestion-secondary[b-xvwcqdtjq8] {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 12px;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(134, 134, 134, 1);
}

.suggestion-inv-no[b-xvwcqdtjq8] {
    font-weight: 500;
    color: rgba(80, 80, 80, 1);
}

.suggestion-date[b-xvwcqdtjq8] {
    margin-left: auto;
    color: rgba(134, 134, 134, 1);
}

.suggestion-tertiary[b-xvwcqdtjq8] {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 12px;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(80, 80, 80, 1);
}

.suggestion-plate-label[b-xvwcqdtjq8] {
    font-weight: 500;
    color: rgba(134, 134, 134, 1);
}

.suggestion-plate-list[b-xvwcqdtjq8] {
    color: rgba(20, 20, 20, 1);
    font-weight: 500;
}

.search-box svg[b-xvwcqdtjq8] {
    width: 20px;
    height: 20px;
    color: rgba(134, 134, 134, 1);
    flex-shrink: 0;
}

.search-input[b-xvwcqdtjq8] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: rgba(134, 134, 134, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.search-input[b-xvwcqdtjq8]::placeholder {
    color: rgba(134, 134, 134, 1);
}

.export-dropdown[b-xvwcqdtjq8] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    height: 42px;
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 1);
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(20, 20, 20, 1);
    white-space: nowrap;
    flex-shrink: 0;
}

.date-range-filter[b-xvwcqdtjq8] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    max-width: 600px;
}

.date-range-filter .date-input[b-xvwcqdtjq8] {
    flex: 1;
    min-width: 0;
    height: 42px;
    padding: 0 10px;
    border: 1px solid rgba(216, 216, 216, 1);
    border-radius: 6px;
    background-color: #fff;
    font-size: 14px;
    color: rgba(20, 20, 20, 1);
}

.date-range-filter .date-range-sep[b-xvwcqdtjq8] {
    font-size: 13px;
    color: rgba(134, 134, 134, 1);
}

    .date-range-filter .apply-date-btn[b-xvwcqdtjq8],
    .date-range-filter .clear-date-btn[b-xvwcqdtjq8] {
        height: 42px;
        padding: 0 14px;
        border-radius: 6px;
        border: 1px solid rgba(216, 216, 216, 1);
        /*background-color: #fff;*/
        background-color: #001F57;
        font-size: 14px;
        color: rgba(20, 20, 20, 1);
        cursor: pointer;
    }

    .date-range-filter .apply-date-btn[b-xvwcqdtjq8] {
        /*background-color: rgba(20, 20, 20, 1);*/
        background-color: #001F57;
        color: #fff;
        border-color: rgba(20, 20, 20, 1);
    }

.date-range-filter .apply-date-btn:hover[b-xvwcqdtjq8] {
    opacity: 0.9;
}

.date-range-filter .clear-date-btn:hover[b-xvwcqdtjq8] {
    background-color: rgba(245, 245, 245, 1);
}

.filter-dropdown-container[b-xvwcqdtjq8] {
    position: relative;
    margin-left: auto;
    flex-shrink: 0;
}

.filter-header[b-xvwcqdtjq8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 20px;
    height: 42px;
    background-color: #CCCCCC;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(20, 20, 20, 1);
    white-space: nowrap;
    min-width: 120px;
    transition: background-color 0.2s ease;
}

.filter-header:hover[b-xvwcqdtjq8] {
    background-color: #B8B8B8;
}

.filter-header svg[b-xvwcqdtjq8] {
    width: 20px;
    height: 20px;
    color: rgba(20, 20, 20, 1);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.filter-dropdown-menu[b-xvwcqdtjq8] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    min-width: 180px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    overflow: hidden;
    margin-top: 4px;
}

.filter-option[b-xvwcqdtjq8] {
    padding: 12px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(20, 20, 20, 1);
    transition: background-color 0.2s ease;
    border-bottom: 1px solid rgba(240, 240, 240, 1);
}

.filter-option:last-child[b-xvwcqdtjq8] {
    border-bottom: none;
}

.filter-option:hover[b-xvwcqdtjq8] {
    background-color: rgba(0, 31, 87, 0.05);
}

.export-dropdown-container[b-xvwcqdtjq8] {
    position: relative;
    flex-shrink: 0;
}

.toolbar-action-end[b-xvwcqdtjq8] {
    /*margin-left: auto;*/
}

.export-header[b-xvwcqdtjq8] {
    appearance: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 12px 20px;
    height: 42px;
    background-color: #001F57;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(255, 255, 255, 1);
    white-space: nowrap;
    min-width: 120px;
    transition: background-color 0.2s ease;
}

.export-header:hover[b-xvwcqdtjq8] {
    background-color: #001a4a;
}

.export-header svg[b-xvwcqdtjq8] {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 1);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.export-dropdown-menu[b-xvwcqdtjq8] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    min-width: 180px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    overflow: hidden;
}

.export-option[b-xvwcqdtjq8] {
    appearance: none;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(20, 20, 20, 1);
    transition: background-color 0.2s ease;
    border-bottom: 1px solid rgba(240, 240, 240, 1);
}

.export-option:disabled[b-xvwcqdtjq8] {
    cursor: not-allowed;
}

.export-option:last-child[b-xvwcqdtjq8] {
    border-bottom: none;
}

.export-option:hover[b-xvwcqdtjq8] {
    background-color: rgba(0, 31, 87, 0.05);
}

/* Table */
.table-wrapper[b-xvwcqdtjq8] {
    overflow-x: auto;
}

.invitations-table[b-xvwcqdtjq8] {
    width: 100%;
    border-collapse: collapse;
}

.invitations-table thead[b-xvwcqdtjq8] {
    border-bottom: 1px solid rgba(204, 204, 204, 1);
}

.invitations-table th[b-xvwcqdtjq8] {
    padding: 12px 16px;
    text-align: left;
    color: rgba(134, 134, 134, 1);
    font-size: 12px;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    text-transform: uppercase;
}

.invitations-table tbody tr[b-xvwcqdtjq8] {
    border-bottom: 1px solid rgba(204, 204, 204, 1);
}

.invitations-table tbody tr:last-child[b-xvwcqdtjq8] {
    border-bottom: none;
}

.invitations-table td[b-xvwcqdtjq8] {
    padding: 16px;
    color: rgba(20, 20, 20, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.invitations-table td:first-child[b-xvwcqdtjq8] {
    color: rgba(0, 31, 87, 1);
    font-weight: 500;
}

/* Status Badges */
.rescheduled-badge[b-xvwcqdtjq8] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    background: #e7f3ff;
    color: #0066cc;
    border: 1px solid #b3d9ff;
}

/* Walk-in badge */
.walkin-badge[b-xvwcqdtjq8] {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    /*margin-left: 8px;*/
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    background: rgba(0, 122, 255, 0.08);
    color: #007aff;
    border: 1px solid rgba(0, 122, 255, 0.35);
}


.status-badge[b-xvwcqdtjq8] {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    border: 0.5px solid;
}

.status-badge.status-approved[b-xvwcqdtjq8] {
    background-color: rgba(52, 199, 89, 0.12);
    color: rgba(52, 199, 89, 1);
    border-color: rgba(82, 198, 82, 1);
}

.status-badge.status-pending[b-xvwcqdtjq8] {
    background-color: rgba(255, 149, 0, 0.12);
    color: rgba(255, 149, 0, 1);
    border-color: rgba(255, 149, 0, 1);
}

    .status-badge.status-unattended[b-xvwcqdtjq8] {
        background: rgba(139, 139, 139, 0.12);
        color: rgba(139, 139, 139, 1);
        border-color: rgba(139, 139, 139, 0.35);
    }
    .status-badge.status-cancelled[b-xvwcqdtjq8] {
        background: #dc354517;
        color: #dc3545;
        border-color: #dc3545;
    }

.status-badge.status-exited[b-xvwcqdtjq8] {
    background-color: rgba(139, 139, 139, 0.12);
    color: rgba(139, 139, 139, 1);
    border-color: rgba(139, 139, 139, 1);
}

/* Action Buttons */
.action-buttons[b-xvwcqdtjq8] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-btn[b-xvwcqdtjq8] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 1);
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(20, 20, 20, 1);
    transition: background-color 0.2s;
}

.action-btn:hover[b-xvwcqdtjq8] {
    background-color: rgba(242, 245, 253, 1);
}

.view-btn[b-xvwcqdtjq8] {
    width: 32px;
    height: 32px;
    padding: 0;
}

.view-btn svg[b-xvwcqdtjq8] {
    width: 16px;
    height: 16px;
    color: rgba(20, 20, 20, 1);
}

.approve-btn[b-xvwcqdtjq8] {
    background-color: rgba(0, 31, 87, 1);
    color: rgba(255, 255, 255, 1);
    border-color: rgba(0, 31, 87, 1);
}

.approve-btn:hover[b-xvwcqdtjq8] {
    background-color: rgba(0, 25, 70, 1);
}

.reject-btn[b-xvwcqdtjq8] {
    background-color: rgba(255, 255, 255, 1);
    color: rgba(20, 20, 20, 1);
}

.reject-btn:hover[b-xvwcqdtjq8] {
    background-color: rgba(242, 245, 253, 1);
}

/* Pagination */
.pagination[b-xvwcqdtjq8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(204, 204, 204, 1);
}

.pagination-btn[b-xvwcqdtjq8] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border: none;
    border-radius: 4px;
    background-color: rgba(0, 31, 87, 1);
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
}

.pagination-btn:hover[b-xvwcqdtjq8] {
    background-color: rgba(0, 25, 70, 1);
}

.pagination-btn svg[b-xvwcqdtjq8] {
    width: 12px;
    height: 12px;
    color: rgba(255, 255, 255, 1);
}

.pagination-info[b-xvwcqdtjq8] {
    display: flex;
    align-items: center;
    gap: 2px;
    color: rgba(20, 20, 20, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.page-number[b-xvwcqdtjq8] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    min-width: 22px;
    height: 22px;
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 4px;
    background-color: rgba(242, 245, 253, 1);
    color: rgba(20, 20, 20, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

/* Visit Details Modal Overlay */
.modal-overlay[b-xvwcqdtjq8] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.modal-overlay.show[b-xvwcqdtjq8] {
    opacity: 1;
    pointer-events: all;
}

.modal-content[b-xvwcqdtjq8] {
    width: 480px;
    max-width: 90vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.modal-content.show[b-xvwcqdtjq8] {
    transform: translateX(0);
}

.modal-header[b-xvwcqdtjq8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(204, 204, 204, 1);
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 1);
    z-index: 10;
}

.modal-title[b-xvwcqdtjq8] {
    color: rgba(20, 20, 20, 1);
    font-size: 20px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
}

.attendance-modal .modal-title[b-xvwcqdtjq8] {
    color: #1A3B6A;
    font-weight: 700;
}

.modal-close-btn-top[b-xvwcqdtjq8] {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    color: rgba(20, 20, 20, 1);
    transition: background-color 0.2s;
    padding: 0;
}

.modal-close-btn-top:hover[b-xvwcqdtjq8] {
    background-color: rgba(242, 245, 253, 1);
}

.modal-close-btn-top svg[b-xvwcqdtjq8] {
    width: 20px;
    height: 20px;
}

.modal-body[b-xvwcqdtjq8] {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-field[b-xvwcqdtjq8] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-label[b-xvwcqdtjq8] {
    color: rgba(134, 134, 134, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.detail-value[b-xvwcqdtjq8] {
    color: rgba(20, 20, 20, 1);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.detail-value-with-badge[b-xvwcqdtjq8] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-footer[b-xvwcqdtjq8] {
    padding: 24px;
    border-top: 1px solid rgba(204, 204, 204, 1);
    display: flex;
    justify-content: flex-end;
    position: sticky;
    bottom: 0;
    background-color: rgba(255, 255, 255, 1);
    z-index: 10;
}

.modal-close-btn-bottom[b-xvwcqdtjq8] {
    padding: 10px 24px;
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 8px;
    background-color: rgba(242, 245, 253, 1);
    color: rgba(20, 20, 20, 1);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
}

.modal-close-btn-bottom:hover[b-xvwcqdtjq8] {
    background-color: rgba(224, 230, 245, 1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .lfz-admin-metrics[b-xvwcqdtjq8] {
        grid-template-columns: 1fr;
    }
    
    .lfz-admin-metric-card[b-xvwcqdtjq8] {
        width: 100%;
    }
    
    .lfz-admin-charts[b-xvwcqdtjq8] {
        grid-template-columns: 1fr;
    }
    
    .pie-chart-content[b-xvwcqdtjq8] {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .lfz-admin-main[b-xvwcqdtjq8] {
        padding: 16px;
    }
    
    .lfz-admin-header[b-xvwcqdtjq8] {
        flex-direction: column;
        height: auto;
        gap: 12px;
    }
    
    .invitations-controls[b-xvwcqdtjq8] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box[b-xvwcqdtjq8] {
        max-width: 100%;
    }
    
    .filter-dropdown[b-xvwcqdtjq8],
    .export-dropdown[b-xvwcqdtjq8] {
        width: 100%;
        justify-content: space-between;
    }
    
    .table-wrapper[b-xvwcqdtjq8] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pagination[b-xvwcqdtjq8] {
        flex-direction: column;
        gap: 12px;
    }
    
    .pagination-btn[b-xvwcqdtjq8] {
        width: 100%;
        justify-content: center;
    }
    
    .modal-content[b-xvwcqdtjq8] {
        width: 100%;
        max-width: 100vw;
    }
}

/* ===== Visitor Attendance Modal ===== */
.modal-content.attendance-modal[b-xvwcqdtjq8] {
    max-width: 880px;
    width: 92%;
}

.attendance-context[b-xvwcqdtjq8] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    gap: 12px 24px;
    padding: 16px 18px;
    background: #f7f9fc;
    border: 1px solid #e6eaf0;
    border-radius: 8px;
    margin-bottom: 16px;
}

.attendance-context-item[b-xvwcqdtjq8] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.attendance-context-label[b-xvwcqdtjq8] {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #1A3B6A;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
}

.attendance-context-value[b-xvwcqdtjq8] {
    font-size: 14px;
    color: #1f2937;
    font-weight: 500;
    word-break: break-word;
}

.attendance-summary[b-xvwcqdtjq8] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.summary-card[b-xvwcqdtjq8] {
    background: #ffffff;
    border: 1px solid #e6eaf0;
    border-radius: 8px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.summary-label[b-xvwcqdtjq8] {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #1A3B6A;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
}

.summary-value[b-xvwcqdtjq8] {
    font-size: 16px;
    color: #111827;
    font-weight: 600;
}

.summary-info[b-xvwcqdtjq8] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-info-row[b-xvwcqdtjq8] {
    font-size: 13px;
    color: #1f2937;
    line-height: 1.4;
}

.summary-info-key[b-xvwcqdtjq8] {
    color: #1A3B6A;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    margin-right: 4px;
}

.summary-info-val[b-xvwcqdtjq8] {
    color: #111827;
    font-weight: 500;
}

.attendance-table-wrapper[b-xvwcqdtjq8] {
    border: 1px solid #e6eaf0;
    border-radius: 8px;
    overflow: hidden;
}

.attendance-table[b-xvwcqdtjq8] {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.attendance-table thead[b-xvwcqdtjq8] {
    background: #f3f5f9;
}

.attendance-table th[b-xvwcqdtjq8] {
    text-align: left;
    padding: 10px 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #1A3B6A;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    border-bottom: 1px solid #e6eaf0;
}

.attendance-table td[b-xvwcqdtjq8] {
    padding: 10px 14px;
    color: #1f2937;
    border-bottom: 1px solid #eef1f5;
    vertical-align: middle;
}

.attendance-table tbody tr:last-child td[b-xvwcqdtjq8] {
    border-bottom: none;
}

.attendance-table tbody tr:hover[b-xvwcqdtjq8] {
    background: #fafbfd;
}

.attendance-loading[b-xvwcqdtjq8],
.attendance-empty[b-xvwcqdtjq8],
.attendance-error[b-xvwcqdtjq8] {
    padding: 24px 16px;
    text-align: center;
    border-radius: 8px;
    font-size: 14px;
}

.attendance-loading[b-xvwcqdtjq8] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #4b5563;
    background: #f7f9fc;
    border: 1px solid #e6eaf0;
}

.attendance-empty[b-xvwcqdtjq8] {
    color: #6b7280;
    background: #f7f9fc;
    border: 1px dashed #d1d5db;
}

.attendance-error[b-xvwcqdtjq8] {
    color: #b91c1c;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.attendance-spinner[b-xvwcqdtjq8] {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: attendance-spin-b-xvwcqdtjq8 0.8s linear infinite;
}

@keyframes attendance-spin-b-xvwcqdtjq8 {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .attendance-context[b-xvwcqdtjq8],
    .attendance-summary[b-xvwcqdtjq8] {
        grid-template-columns: 1fr;
    }

    .attendance-table th[b-xvwcqdtjq8],
    .attendance-table td[b-xvwcqdtjq8] {
        padding: 8px 10px;
        font-size: 12px;
    }
}
/* /Pages/CarInformations.razor.rz.scp.css */
/* ========================================
   Cars (Car Information) Page Layout
   ======================================== */
.cars-page[b-yvihtt6q4r] {
    padding: 32px;
    /*background-color: #F5F7FA;*/
    background-color: rgba(246, 246, 246, 1);
    min-height: 100%;
    font-family: 'Ubuntu', sans-serif;
}

/* ========================================
   Page Header
   ======================================== */
.page-header[b-yvihtt6q4r] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
}

.page-title[b-yvihtt6q4r] {
    font-size: 24px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 4px 0;
    line-height: 1.2;
    font-family: 'Ubuntu', sans-serif;
}

.page-subtitle[b-yvihtt6q4r] {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
}

/* ========================================
   Primary Action Button
   ======================================== */
.btn-primary-action[b-yvihtt6q4r] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #001F57;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.05s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 31, 87, 0.16);
    white-space: nowrap;
}

.btn-primary-action:hover:not(:disabled)[b-yvihtt6q4r] {
    background-color: #0A2F7A;
    box-shadow: 0 3px 8px rgba(0, 31, 87, 0.24);
}

.btn-primary-action:active:not(:disabled)[b-yvihtt6q4r] {
    transform: translateY(1px);
}

.btn-primary-action i[b-yvihtt6q4r] {
    font-size: 14px;
    line-height: 1;
}

.btn-secondary-action[b-yvihtt6q4r] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #FFFFFF;
    color: #001F57;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary-action:hover:not(:disabled)[b-yvihtt6q4r] {
    background-color: #F5F7FA;
    border-color: #001F57;
}

/* ========================================
   Alert
   ======================================== */
.alert[b-yvihtt6q4r] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    font-family: 'Ubuntu', sans-serif;
}

.alert-danger[b-yvihtt6q4r] {
    background-color: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FCA5A5;
}

.alert i[b-yvihtt6q4r] {
    font-size: 16px;
    flex-shrink: 0;
}

/* ========================================
   Toolbar (Search + Count)
   ======================================== */
.toolbar[b-yvihtt6q4r] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.search-wrapper[b-yvihtt6q4r] {
    position: relative;
    flex: 1;
    max-width: 420px;
}

.search-icon[b-yvihtt6q4r] {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    font-size: 16px;
    pointer-events: none;
}

.search-input[b-yvihtt6q4r] {
    width: 100%;
    padding: 10px 40px 10px 42px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    background-color: #FFFFFF;
    font-size: 14px;
    color: #1A1A1A;
    font-family: 'Ubuntu', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input[b-yvihtt6q4r]::placeholder {
    color: #9CA3AF;
}

.search-input:focus[b-yvihtt6q4r] {
    outline: none;
    border-color: #001F57;
    box-shadow: 0 0 0 3px rgba(0, 31, 87, 0.1);
}

.search-clear[b-yvihtt6q4r] {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #6B7280;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.search-clear:hover[b-yvihtt6q4r] {
    background-color: #F1F5F9;
    color: #1A1A1A;
}

.search-clear i[b-yvihtt6q4r] {
    font-size: 18px;
}

.count-pill[b-yvihtt6q4r] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background-color: #EFF2F7;
    color: #374151;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.count-pill span[b-yvihtt6q4r] {
    font-weight: 400;
    color: #6B7280;
}

/* ========================================
   Cars Card + Table
   ======================================== */
.cars-card[b-yvihtt6q4r] {
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.cars-table[b-yvihtt6q4r] {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Ubuntu', sans-serif;
}

.cars-table thead[b-yvihtt6q4r] {
    background-color: #F8FAFC;
    border-bottom: 1px solid #E5E7EB;
}

.cars-table thead th[b-yvihtt6q4r] {
    padding: 14px 20px;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.cars-table thead th.actions-col[b-yvihtt6q4r] {
    width: 140px;
    text-align: right;
}

.cars-table tbody tr[b-yvihtt6q4r] {
    border-bottom: 1px solid #F1F5F9;
    transition: background-color 0.15s ease;
}

.cars-table tbody tr:last-child[b-yvihtt6q4r] {
    border-bottom: none;
}

.cars-table tbody tr:hover:not(.skeleton-row)[b-yvihtt6q4r] {
    background-color: rgba(0, 31, 87, 0.035);
}

.cars-table tbody td[b-yvihtt6q4r] {
    padding: 16px 20px;
    font-size: 14px;
    color: #1F2937;
    vertical-align: middle;
}

.cell-strong[b-yvihtt6q4r] {
    font-weight: 600;
    color: #1A1A1A;
}

.cell-mono[b-yvihtt6q4r] {
    font-family: 'JetBrains Mono', 'Consolas', 'SF Mono', monospace;
    font-size: 13px;
    color: #374151;
}

.cell-muted[b-yvihtt6q4r] {
    color: #6B7280;
    max-width: 360px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cars-table tbody td.actions-col[b-yvihtt6q4r] {
    text-align: right;
    white-space: nowrap;
}

/* ========================================
   Action Icon Buttons
   ======================================== */
.action-icon-btn[b-yvihtt6q4r] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 4px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.15s ease;
}

.action-icon-btn i[b-yvihtt6q4r] {
    font-size: 15px;
    line-height: 1;
}

.action-icon-btn.view:hover[b-yvihtt6q4r] {
    background-color: rgba(107, 114, 128, 0.10);
    color: #374151;
    border-color: rgba(107, 114, 128, 0.25);
}

.action-icon-btn.edit:hover[b-yvihtt6q4r] {
    background-color: rgba(0, 31, 87, 0.08);
    color: #001F57;
    border-color: rgba(0, 31, 87, 0.18);
}

.action-icon-btn.delete:hover[b-yvihtt6q4r] {
    background-color: rgba(220, 38, 38, 0.08);
    color: #DC2626;
    border-color: rgba(220, 38, 38, 0.18);
}

.action-icon-btn:focus-visible[b-yvihtt6q4r] {
    outline: 2px solid rgba(0, 31, 87, 0.35);
    outline-offset: 1px;
}

/* ========================================
   Empty State
   ======================================== */
.empty-state[b-yvihtt6q4r] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
    text-align: center;
}

.empty-icon[b-yvihtt6q4r] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: #EFF2F7;
    color: #001F57;
    border-radius: 50%;
    margin-bottom: 20px;
}

.empty-icon i[b-yvihtt6q4r] {
    font-size: 28px;
}

.empty-state h3[b-yvihtt6q4r] {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 8px 0;
    font-family: 'Ubuntu', sans-serif;
}

.empty-state p[b-yvihtt6q4r] {
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 20px 0;
    max-width: 360px;
    font-family: 'Ubuntu', sans-serif;
}

/* ========================================
   Skeleton Loading
   ======================================== */
.skeleton-row td[b-yvihtt6q4r] {
    padding: 16px 20px;
}

.skeleton[b-yvihtt6q4r] {
    display: inline-block;
    background: linear-gradient(90deg, #F1F5F9 0%, #E5E7EB 50%, #F1F5F9 100%);
    background-size: 200% 100%;
    animation: shimmer-b-yvihtt6q4r 1.4s ease-in-out infinite;
    border-radius: 4px;
}

.skeleton-text[b-yvihtt6q4r] {
    height: 14px;
    vertical-align: middle;
}

.skeleton-action[b-yvihtt6q4r] {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    margin-left: 4px;
    vertical-align: middle;
}

@keyframes shimmer-b-yvihtt6q4r {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ========================================
   Slide-Over Panel
   ======================================== */
.slide-over-backdrop[b-yvihtt6q4r] {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.45);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 1040;
    backdrop-filter: blur(2px);
}

.slide-over-backdrop.show[b-yvihtt6q4r] {
    opacity: 1;
}

.slide-over-panel[b-yvihtt6q4r] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 480px;
    max-width: 100vw;
    background-color: #FFFFFF;
    box-shadow: -8px 0 24px rgba(15, 23, 42, 0.12);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Ubuntu', sans-serif;
}

.slide-over-panel.show[b-yvihtt6q4r] {
    transform: translateX(0);
}

.slide-over-header[b-yvihtt6q4r] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px 20px;
    border-bottom: 1px solid #E5E7EB;
}

.slide-over-header h2[b-yvihtt6q4r] {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 2px 0;
    font-family: 'Ubuntu', sans-serif;
}

.slide-over-header p[b-yvihtt6q4r] {
    font-size: 13px;
    color: #6B7280;
    margin: 0;
}

.slide-over-close[b-yvihtt6q4r] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: #6B7280;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.slide-over-close:hover[b-yvihtt6q4r] {
    background-color: #F1F5F9;
    color: #1A1A1A;
}

.slide-over-close i[b-yvihtt6q4r] {
    font-size: 16px;
}

.slide-over-form[b-yvihtt6q4r] {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.slide-over-body[b-yvihtt6q4r] {
    flex: 1;
    overflow-y: auto;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

[b-yvihtt6q4r] .slide-over-body .form-group {
    display: flex;
    flex-direction: column;
}

[b-yvihtt6q4r] .slide-over-body .form-label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
    font-family: 'Ubuntu', sans-serif;
}

[b-yvihtt6q4r] .slide-over-body .form-label .required {
    color: #DC2626;
    margin-left: 2px;
}

[b-yvihtt6q4r] .slide-over-body .form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    color: #1A1A1A;
    background-color: #FFFFFF;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

[b-yvihtt6q4r] .slide-over-body .form-control:focus {
    outline: none;
    border-color: #001F57;
    box-shadow: 0 0 0 3px rgba(0, 31, 87, 0.1);
}

[b-yvihtt6q4r] .slide-over-body .form-control::placeholder {
    color: #9CA3AF;
}

[b-yvihtt6q4r] .slide-over-body .validation-message {
    color: #DC2626;
    font-size: 12px;
    margin-top: 4px;
    font-family: 'Ubuntu', sans-serif;
}

.slide-over-footer[b-yvihtt6q4r] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-top: 1px solid #E5E7EB;
    background-color: #FAFBFC;
}

.btn-ghost[b-yvihtt6q4r] {
    padding: 10px 18px;
    background-color: transparent;
    color: #374151;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-ghost:hover:not(:disabled)[b-yvihtt6q4r] {
    background-color: #F5F7FA;
    border-color: #CBD5E1;
}

.btn-ghost:disabled[b-yvihtt6q4r] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-submit[b-yvihtt6q4r] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #001F57;
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-submit:hover:not(:disabled)[b-yvihtt6q4r] {
    background-color: #0A2F7A;
}

.btn-submit:disabled[b-yvihtt6q4r] {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit i[b-yvihtt6q4r] {
    font-size: 14px;
    line-height: 1;
}

/* ========================================
   View slide-over (read-only field display)
   ======================================== */
.view-field[b-yvihtt6q4r] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.view-field-label[b-yvihtt6q4r] {
    font-size: 12px;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.view-field-value[b-yvihtt6q4r] {
    font-size: 14px;
    color: #1A1A1A;
    word-break: break-word;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    .cars-page[b-yvihtt6q4r] {
        padding: 20px 16px;
    }

    .page-header[b-yvihtt6q4r] {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary-action[b-yvihtt6q4r] {
        justify-content: center;
    }

    .toolbar[b-yvihtt6q4r] {
        flex-direction: column;
        align-items: stretch;
    }

    .search-wrapper[b-yvihtt6q4r] {
        max-width: 100%;
    }

    .count-pill[b-yvihtt6q4r] {
        align-self: flex-start;
    }

    .cars-table thead[b-yvihtt6q4r] {
        display: none;
    }

    .cars-table[b-yvihtt6q4r],
    .cars-table tbody[b-yvihtt6q4r],
    .cars-table tr[b-yvihtt6q4r],
    .cars-table td[b-yvihtt6q4r] {
        display: block;
        width: 100%;
    }

    .cars-table tbody tr[b-yvihtt6q4r] {
        padding: 12px 16px;
        border-bottom: 1px solid #F1F5F9;
    }

    .cars-table tbody td[b-yvihtt6q4r] {
        padding: 4px 0;
        border: none;
    }

    .cars-table tbody td.actions-col[b-yvihtt6q4r] {
        text-align: left;
        padding-top: 8px;
    }

    .cell-muted[b-yvihtt6q4r] {
        max-width: 100%;
        white-space: normal;
    }

    .slide-over-panel[b-yvihtt6q4r] {
        width: 100vw;
    }

    .slide-over-header[b-yvihtt6q4r],
    .slide-over-body[b-yvihtt6q4r],
    .slide-over-footer[b-yvihtt6q4r] {
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* /Pages/CreateInvitation.razor.rz.scp.css */
.create-invitation-container[b-gnm0xefnj9] {
    width: 100%;
    min-height: 100vh;
    background-color: #f5f5f5;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding-bottom: 110px;
}

.create-invitation-form[b-gnm0xefnj9] {
    width: 100%;
    max-width: 900px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.create-invitation-header[b-gnm0xefnj9] {
    margin-bottom: 32px;
}

.create-invitation-title[b-gnm0xefnj9] {
    width: 100%;
    max-width: 1200px;
    /*padding: 0 20px;*/
    box-sizing: border-box;
    text-align: left;
    font-size: 32px;
    /*font-weight:  700;*/
    /*color: #1A3B6A;*/
    margin: 0 0 8px 0;
    font-family: 'Ubuntu', sans-serif;
}

.create-invitation-subtitle[b-gnm0xefnj9] {
    font-size: 16px;
    color: #888888;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
}

.form-section[b-gnm0xefnj9] {
    margin-bottom: 32px;
}

.section-title[b-gnm0xefnj9] {
    font-size: 20px;
    font-weight: 600;
    color: #1A3B6A;
    margin: 0 0 20px 0;
    font-family: 'Ubuntu', sans-serif;
}

.form-row[b-gnm0xefnj9] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row.form-row--purpose-location[b-gnm0xefnj9] {
    grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
}

.form-row.form-row--full[b-gnm0xefnj9] {
    grid-template-columns: 1fr;
}

.form-group.form-group--location-column[b-gnm0xefnj9] {
    min-width: 0;
}

/* Phone row: country code dropdown + national number */
.form-row.phone-row[b-gnm0xefnj9] {
    grid-template-columns: 150px 1fr;
    gap: 12px;
    margin-bottom: 4px;
}

.form-group.phone-country-group[b-gnm0xefnj9] {
    min-width: 0;
    max-width: 100%;
}

.form-group.phone-national-group[b-gnm0xefnj9] {
    min-width: 0;
}

.phone-country-group-form[b-gnm0xefnj9]{
    min-width: 0;
    max-width: 100%;
}
.phone-hint[b-gnm0xefnj9] {
    font-size: 12px;
    color: #666666;
    margin-top: 6px;
    margin-bottom: 0;
    font-family: 'Ubuntu', sans-serif;
}

.form-group[b-gnm0xefnj9] {
    display: flex;
    flex-direction: column;
}

.form-label[b-gnm0xefnj9] {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 8px;
    font-family: 'Ubuntu', sans-serif;
}

.optional-text[b-gnm0xefnj9] {
    font-style: italic;
    font-weight: 400;
    color: #888888;
}

.form-control[b-gnm0xefnj9] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    background-color: #ffffff;
    color: #333333;
    transition: border-color 0.2s ease;
}

.form-control:focus[b-gnm0xefnj9] {
    outline: none;
    border-color: #001f57;
    box-shadow: 0 0 0 3px rgba(0, 31, 87, 0.1);
}

.form-control:invalid[b-gnm0xefnj9],
.form-control.is-invalid[b-gnm0xefnj9] {
    border-color: #dc3545;
}

.form-control.is-invalid:focus[b-gnm0xefnj9] {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.datetime-input-wrapper[b-gnm0xefnj9] {
    position: relative;
    display: flex;
    align-items: center;
}

.datetime-input[b-gnm0xefnj9] {
    flex: 1;
}

/* Keep the browser's native calendar indicator visible. Clicking it opens the
   picker via a real user gesture, which works inside a cross-origin iframe
   (where the scripted showPicker() API is blocked). */
.datetime-input[b-gnm0xefnj9]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

.datetime-input[b-gnm0xefnj9]::-webkit-inner-spin-button,
.datetime-input[b-gnm0xefnj9]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.checkbox-group[b-gnm0xefnj9] {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.form-checkbox[b-gnm0xefnj9] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #001f57;
}

.checkbox-label[b-gnm0xefnj9] {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin: 0;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
}

.vehicle-help-text[b-gnm0xefnj9] {
    font-size: 13px;
    color: #888888;
    margin-bottom: 16px;
    font-style: italic;
    font-family: 'Ubuntu', sans-serif;
}

.contact-person-help-text[b-gnm0xefnj9] {
    font-size: 13px;
    color: #888888;
    margin-bottom: 16px;
    font-style: italic;
    font-family: 'Ubuntu', sans-serif;
}

.vehicle-fields[b-gnm0xefnj9] {
    margin-top: 16px;
}

.form-actions[b-gnm0xefnj9] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
}

.btn-cancel[b-gnm0xefnj9] {
    padding: 12px 24px;
    background-color: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.2s ease;
}

.btn-cancel:hover[b-gnm0xefnj9] {
    background-color: #f5f5f5;
    border-color: #b0b0b0;
}

.btn-submit[b-gnm0xefnj9] {
    padding: 12px 24px;
    background-color: #001f57;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.2s ease;
}

.btn-submit:hover:not(:disabled)[b-gnm0xefnj9] {
    background-color: #003080;
}

.btn-submit:disabled[b-gnm0xefnj9] {
    background-color: #cccccc;
    cursor: not-allowed;
}

.validation-message[b-gnm0xefnj9] {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    font-family: 'Ubuntu', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .create-invitation-container[b-gnm0xefnj9] {
        padding: 20px 10px;
    }

    .create-invitation-form[b-gnm0xefnj9] {
        padding: 24px;
    }

    .create-invitation-title[b-gnm0xefnj9] {
        font-size: 24px;
    }

    .form-row[b-gnm0xefnj9] {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-row.phone-row[b-gnm0xefnj9] {
        grid-template-columns: 1fr;
    }

    .form-group.phone-country-group[b-gnm0xefnj9] {
        min-width: unset;
    }

    .form-actions[b-gnm0xefnj9] {
        flex-direction: column-reverse;
        justify-content: flex-start;
    }

    .btn-cancel[b-gnm0xefnj9],
    .btn-submit[b-gnm0xefnj9] {
        width: 100%;
    }
}

/* /Pages/CreateWalkInRequest.razor.rz.scp.css */
/* Container */
.walkin-form-container[b-u9vjsbuet6] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
    /* Generous bottom padding so the Cancel/Submit actions row clears the
       content-area's bottom edge and stays reachable (mirrors CreateInvitation). */
    padding: 24px 24px 110px;
}

/* Search Section */
.search-container[b-u9vjsbuet6] {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    align-items: center;
}

.search-input[b-u9vjsbuet6] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    background-color: #FFFFFF;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    color: #333333;
    outline: none;
    transition: border-color 0.2s ease;
}

.search-input:focus[b-u9vjsbuet6] {
    border-color: #1A3B6A;
    box-shadow: 0 0 0 3px rgba(26, 59, 106, 0.1);
}

.search-input[b-u9vjsbuet6]::placeholder {
    color: #999999;
}

.search-button[b-u9vjsbuet6] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #1A3B6A;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.search-button:hover[b-u9vjsbuet6] {
    background-color: #153055;
}

.search-button:active[b-u9vjsbuet6] {
    background-color: #0f2340;
}

.search-button svg[b-u9vjsbuet6] {
    flex-shrink: 0;
}

.search-button span[b-u9vjsbuet6] {
    line-height: 1;
}

/* Form Title */
.form-title[b-u9vjsbuet6] {
    color: #333333;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 32px 0;
    font-family: 'Ubuntu', sans-serif;
}

/* Form Content - Two Column Layout */
.form-content[b-u9vjsbuet6] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

/* Details Card */
.details-card[b-u9vjsbuet6] {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    padding: 24px;
    transition: box-shadow 0.2s ease;
}

.details-card:hover[b-u9vjsbuet6] {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

/* Form Section */
.form-section[b-u9vjsbuet6] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-title[b-u9vjsbuet6] {
    color: #1A3B6A;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    font-family: 'Ubuntu', sans-serif;
}

/* Form Row - Two Column Layout */
.form-row[b-u9vjsbuet6] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Form Group */
.form-group[b-u9vjsbuet6] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label[b-u9vjsbuet6] {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    font-family: 'Ubuntu', sans-serif;
}

/* Phone row: country code dropdown + national number */
.form-row.phone-row[b-u9vjsbuet6] {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 12px;
    margin-bottom: 4px;
}

.form-group.phone-country-group[b-u9vjsbuet6] {
    min-width: 0;
    max-width: 100%;
}

.form-group.phone-national-group[b-u9vjsbuet6] {
    min-width: 0;
}

.phone-country-group-form[b-u9vjsbuet6] {
    min-width: 0;
    max-width: 100%;
}

.phone-hint[b-u9vjsbuet6] {
    font-size: 12px;
    color: #666666;
    margin-top: 6px;
    margin-bottom: 0;
    font-family: 'Ubuntu', sans-serif;
}

/* Form Input */
.form-input[b-u9vjsbuet6] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    background-color: #FFFFFF;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    color: #333333;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.form-input:focus[b-u9vjsbuet6] {
    border-color: #1A3B6A;
    box-shadow: 0 0 0 3px rgba(26, 59, 106, 0.1);
}

.form-input[b-u9vjsbuet6]::placeholder {
    color: #999999;
}

.form-input.is-invalid[b-u9vjsbuet6] {
    border-color: #dc3545;
}

.form-input.is-invalid:focus[b-u9vjsbuet6] {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.contact-person-help-text[b-u9vjsbuet6] {
    font-size: 13px;
    color: #888888;
    margin-bottom: 16px;
    font-style: italic;
    font-family: 'Ubuntu', sans-serif;
}

.validation-message[b-u9vjsbuet6] {
    font-size: 12px;
    color: #dc3545;
    margin-top: 4px;
}

.vehicle-count-input[b-u9vjsbuet6] {
    max-width: 100px;
}

/* Form Select */
.form-select[b-u9vjsbuet6] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    background-color: #FFFFFF;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    color: #333333;
    outline: none;
    transition: border-color 0.2s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-select:focus[b-u9vjsbuet6] {
    border-color: #1A3B6A;
    box-shadow: 0 0 0 3px rgba(26, 59, 106, 0.1);
}

/* Enterprise searchable dropdown */
.enterprise-search-wrapper[b-u9vjsbuet6] {
    position: relative;
    width: 100%;
}

.enterprise-search-loading[b-u9vjsbuet6] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #666;
    pointer-events: none;
}

.enterprise-search-results[b-u9vjsbuet6] {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid #E0E0E0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    background: #FFFFFF;
    max-height: 240px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.enterprise-search-item[b-u9vjsbuet6] {
    padding: 10px 16px;
    font-size: 14px;
    color: #333333;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
}

.enterprise-search-item:hover[b-u9vjsbuet6] {
    background-color: #F0F4F8;
}

.enterprise-search-item:not(.enterprise-search-no-match):active[b-u9vjsbuet6] {
    background-color: #E0E8F0;
}

.enterprise-search-no-match[b-u9vjsbuet6] {
    cursor: default;
    color: #999;
    font-style: italic;
}

.enterprise-search-no-match:hover[b-u9vjsbuet6] {
    background-color: transparent;
}

/* Form Actions */
.form-actions[b-u9vjsbuet6] {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #E0E0E0;
}

.btn-cancel[b-u9vjsbuet6] {
    padding: 12px 24px;
    background-color: #F5F5F5;
    color: #333333;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cancel:hover[b-u9vjsbuet6] {
    background-color: #E0E0E0;
    border-color: #CCCCCC;
}

.btn-submit[b-u9vjsbuet6] {
    padding: 12px 24px;
    background-color: #1A3B6A;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-submit:hover[b-u9vjsbuet6] {
    background-color: #153055;
}

.btn-submit:active[b-u9vjsbuet6] {
    background-color: #0f2340;
}

/* Responsive Design - Mobile (< 768px) */
@media (max-width: 767px) {
    .walkin-form-container[b-u9vjsbuet6] {
        padding: 16px;
    }

    .search-container[b-u9vjsbuet6] {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }

    .search-input[b-u9vjsbuet6] {
        width: 100%;
    }

    .search-button[b-u9vjsbuet6] {
        width: 100%;
        justify-content: center;
    }

    .form-title[b-u9vjsbuet6] {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .form-content[b-u9vjsbuet6] {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .form-row[b-u9vjsbuet6] {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-actions[b-u9vjsbuet6] {
        flex-direction: column-reverse;
    }

    .btn-cancel[b-u9vjsbuet6],
    .btn-submit[b-u9vjsbuet6] {
        width: 100%;
    }
}

/* Responsive Design - Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .walkin-form-container[b-u9vjsbuet6] {
        padding: 20px;
    }

    .form-content[b-u9vjsbuet6] {
        gap: 24px;
    }
}

/* Datetime input: keep the browser's native calendar indicator. Clicking it
   opens the picker via a real user gesture, which works inside a cross-origin
   iframe (where the scripted showPicker() API is blocked). */
.datetime-input-wrapper[b-u9vjsbuet6] {
    position: relative;
    display: flex;
    align-items: center;
}

.datetime-input[b-u9vjsbuet6] {
    flex: 1;
}

.datetime-input[b-u9vjsbuet6]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

.datetime-input[b-u9vjsbuet6]::-webkit-inner-spin-button,
.datetime-input[b-u9vjsbuet6]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* /Pages/Dashboard.razor.rz.scp.css */
/* Main Container */
.lfz-admin-container[b-npseki7j28] {
    width: 100%;
    display: flex;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    align-items: center;
    flex-direction: column;
    background-color: rgba(246, 246, 246, 1);
    font-family: 'Ubuntu', sans-serif;
}

.lfz-admin-main[b-npseki7j28] {
    width: 100%;
    max-width: 1424px;
    padding: 0px 22px 50px 22px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
}

    .lfz-admin-main[b-npseki7j28][b-npseki7j28] {
        width: 100%;
        max-width: 1424px;
        display: flex;
        flex-direction: column;
        gap: 24px;
        box-sizing: border-box;
        margin-bottom: 10px;
    }
    /* Header Section */
    .lfz-admin-header[b-npseki7j28] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px;
        background-color: rgba(255, 255, 255, 1);
        border: 0.5px solid rgba(204, 204, 204, 1);
        border-radius: 8px;
        height: 60px;
    }

.lfz-admin-title[b-npseki7j28] {
    color: rgba(20, 20, 20, 1);
    font-size: 28px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
}

.admin-dashboard-title[b-npseki7j28] {
    width: 100%;
    max-width: 1200px;
    padding: 20px 0px 0px 20px;
    box-sizing: border-box;
    text-align: left;
    font-size: 32px;
    /*font-weight:  700;*/
    /*color: #1A3B6A;*/
    margin: 0 0 8px 0;
    font-family: 'Ubuntu', sans-serif;
}

.lfz-admin-user-section[b-npseki7j28] {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lfz-admin-notification-icon[b-npseki7j28] {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(20, 20, 20, 1);
    cursor: pointer;
}

.lfz-admin-profile[b-npseki7j28] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lfz-admin-avatar[b-npseki7j28] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}

.lfz-admin-avatar img[b-npseki7j28] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lfz-admin-user-info[b-npseki7j28] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lfz-admin-user-name[b-npseki7j28] {
    color: rgba(20, 20, 20, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.lfz-admin-user-email[b-npseki7j28] {
    color: rgba(20, 20, 20, 0.65);
    font-size: 12px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

/* Metric Cards Section */
.lfz-admin-metrics[b-npseki7j28] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lfz-admin-metric-card[b-npseki7j28] {
    position: relative;
    width: 100%;
    min-width: 0;
    height: 120px;
    background-color: rgba(255, 255, 255, 1);
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 8px;
    padding: 20px 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.metric-wave-bg[b-npseki7j28] {
    position: absolute;
    bottom: -20px;
    right: -50px;
    width: 396px;
    height: 103px;
    opacity: 0.1;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.05) 10px,
        rgba(0, 0, 0, 0.05) 20px
    );
}

.metric-label[b-npseki7j28] {
    color: rgba(20, 20, 20, 1);
    font-size: 20px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    z-index: 1;
}

.metric-value[b-npseki7j28] {
    color: rgba(20, 20, 20, 1);
    font-size: 32px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    z-index: 1;
}

.metric-inline-spinner[b-npseki7j28] {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 3px solid #e5e7eb;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: attendance-spin-b-npseki7j28 0.8s linear infinite;
    vertical-align: middle;
}

.metric-icon[b-npseki7j28] {
    position: absolute;
    top: 20px;
    right: 16px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    z-index: 1;
}

.visitors-icon[b-npseki7j28] {
    background-color: rgba(223, 129, 47, 0.08);
    color: rgba(223, 129, 47, 1);
}

.enterprises-icon[b-npseki7j28] {
    background-color: rgba(0, 122, 255, 0.08);
    color: rgba(0, 122, 255, 1);
}

.walkins-icon[b-npseki7j28] {
    background-color: rgba(82, 198, 82, 0.08);
    color: rgba(82, 198, 82, 1);
}

/* Charts Section */
.lfz-admin-charts[b-npseki7j28] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.lfz-admin-chart-container[b-npseki7j28] {
    background-color: rgba(255, 255, 255, 1);
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 8px;
    padding: 16px;
    height: 313px;
    display: flex;
    flex-direction: column;
}

.chart-header-row[b-npseki7j28] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 16px;
    flex-shrink: 0;
}

.chart-title[b-npseki7j28] {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
}

.chart-view-toggle[b-npseki7j28] {
    display: inline-flex;
    background: #f1f4f8;
    border-radius: 999px;
    padding: 3px;
    margin-left: auto;
    flex-shrink: 0;
}

.toggle-btn[b-npseki7j28] {
    border: none;
    background: transparent;
    color: #566579;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    padding: 4px 12px;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
    font-family: 'Ubuntu', sans-serif;
}

.toggle-btn:hover:not(.active)[b-npseki7j28] {
    color: #0F172A;
}

.toggle-btn.active[b-npseki7j28] {
    background: #0F172A;
    color: #FFFFFF;
}

.pie-chart-content[b-npseki7j28] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.pie-chart[b-npseki7j28] {
    flex-shrink: 0;
}

.pie-segment[b-npseki7j28] {
    transition: opacity 0.2s;
}

.pie-segment:hover[b-npseki7j28] {
    opacity: 0.8;
}

.pie-legend[b-npseki7j28] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legend-item[b-npseki7j28] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color[b-npseki7j28] {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    flex-shrink: 0;
}

.legend-label[b-npseki7j28] {
    color: rgba(20, 20, 20, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

/* Invitations Section */
.lfz-admin-invitations[b-npseki7j28] {
    background-color: rgba(255, 255, 255, 1);
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 8px;
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.invitations-title[b-npseki7j28] {
    color: rgba(20, 20, 20, 1);
    font-size: 20px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.invitations-controls[b-npseki7j28] {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.search-cluster[b-npseki7j28] {
    display: flex;
    align-items: end;
    gap: 8px;
    flex: 1;
    min-width: 0;
    max-width: 600px;
    margin-left:20px;
}

.search-cluster .search-box[b-npseki7j28] {
    max-width: none;
}

.year-select[b-npseki7j28] {
    height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(216, 216, 216, 1);
    border-radius: 6px;
    background-color: #fff;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(20, 20, 20, 1);
    min-width: 140px;
    flex-shrink: 0;
    cursor: pointer;
}

.search-button[b-npseki7j28] {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 16px;
    background-color: #001F57;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

.search-button:hover[b-npseki7j28] {
    background-color: #001a4a;
}

.search-box[b-npseki7j28] {
    flex: 1;
    min-width: 0;
    max-width: 600px;
    height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 1);
    box-sizing: border-box;
    position: relative;
}

.search-suggestions-dropdown[b-npseki7j28] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(216, 216, 216, 1);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 10000;
    max-height: 320px;
    overflow-y: auto;
}

.suggestion-item[b-npseki7j28] {
    padding: 10px 14px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid rgba(240, 240, 240, 1);
    transition: background-color 0.15s ease;
    background-color: rgba(255, 255, 255, 1);
}

.suggestion-item:last-child[b-npseki7j28] {
    border-bottom: none;
}

.suggestion-item.highlighted[b-npseki7j28],
.suggestion-item:hover[b-npseki7j28] {
    background-color: rgba(0, 31, 87, 0.05);
}

.suggestion-primary[b-npseki7j28] {
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(20, 20, 20, 1);
}

.suggestion-secondary[b-npseki7j28] {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 12px;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(134, 134, 134, 1);
}

.suggestion-inv-no[b-npseki7j28] {
    font-weight: 500;
    color: rgba(80, 80, 80, 1);
}

.suggestion-date[b-npseki7j28] {
    margin-left: auto;
    color: rgba(134, 134, 134, 1);
}

.suggestion-tertiary[b-npseki7j28] {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 12px;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(80, 80, 80, 1);
}

.suggestion-plate-label[b-npseki7j28] {
    font-weight: 500;
    color: rgba(134, 134, 134, 1);
}

.suggestion-plate-list[b-npseki7j28] {
    color: rgba(20, 20, 20, 1);
    font-weight: 500;
}

.search-box svg[b-npseki7j28] {
    width: 20px;
    height: 20px;
    color: rgba(134, 134, 134, 1);
    flex-shrink: 0;
}

.search-input[b-npseki7j28] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: rgba(134, 134, 134, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.search-input[b-npseki7j28]::placeholder {
    color: rgba(134, 134, 134, 1);
}

.export-dropdown[b-npseki7j28] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    height: 42px;
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 1);
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(20, 20, 20, 1);
    white-space: nowrap;
    flex-shrink: 0;
}

.date-range-filter[b-npseki7j28] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    max-width: 600px;
}

.date-range-filter .date-input[b-npseki7j28] {
    flex: 1;
    min-width: 0;
    height: 42px;
    padding: 0 10px;
    border: 1px solid rgba(216, 216, 216, 1);
    border-radius: 6px;
    background-color: #fff;
    font-size: 14px;
    color: rgba(20, 20, 20, 1);
}

.date-range-filter .date-range-sep[b-npseki7j28] {
    font-size: 13px;
    color: rgba(134, 134, 134, 1);
}

    .date-range-filter .apply-date-btn[b-npseki7j28],
    .date-range-filter .clear-date-btn[b-npseki7j28] {
        height: 42px;
        padding: 0 14px;
        border-radius: 6px;
        border: 1px solid rgba(216, 216, 216, 1);
        /*background-color: #fff;*/
        background-color: #001F57;
        font-size: 14px;
        color: rgba(20, 20, 20, 1);
        cursor: pointer;
    }

    .date-range-filter .apply-date-btn[b-npseki7j28] {
        /*background-color: rgba(20, 20, 20, 1);*/
        background-color: #001F57;
        color: #fff;
        border-color: rgba(20, 20, 20, 1);
    }

.date-range-filter .apply-date-btn:hover[b-npseki7j28] {
    opacity: 0.9;
}

.date-range-filter .clear-date-btn:hover[b-npseki7j28] {
    background-color: rgba(245, 245, 245, 1);
}

.filter-dropdown-container[b-npseki7j28] {
    position: relative;
    margin-left: auto;
    flex-shrink: 0;
}

.filter-header[b-npseki7j28] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 20px;
    height: 42px;
    background-color: #CCCCCC;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(20, 20, 20, 1);
    white-space: nowrap;
    min-width: 120px;
    transition: background-color 0.2s ease;
}

.filter-header:hover[b-npseki7j28] {
    background-color: #B8B8B8;
}

.filter-header svg[b-npseki7j28] {
    width: 20px;
    height: 20px;
    color: rgba(20, 20, 20, 1);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.filter-dropdown-menu[b-npseki7j28] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    min-width: 180px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    overflow: hidden;
    margin-top: 4px;
}

.filter-option[b-npseki7j28] {
    padding: 12px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(20, 20, 20, 1);
    transition: background-color 0.2s ease;
    border-bottom: 1px solid rgba(240, 240, 240, 1);
}

.filter-option:last-child[b-npseki7j28] {
    border-bottom: none;
}

.filter-option:hover[b-npseki7j28] {
    background-color: rgba(0, 31, 87, 0.05);
}

.export-dropdown-container[b-npseki7j28] {
    position: relative;
    flex-shrink: 0;
}

.toolbar-action-end[b-npseki7j28] {
    /*margin-left: auto;*/
}

.export-header[b-npseki7j28] {
    appearance: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 12px 20px;
    height: 42px;
    background-color: #001F57;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(255, 255, 255, 1);
    white-space: nowrap;
    min-width: 120px;
    transition: background-color 0.2s ease;
}

.export-header:hover[b-npseki7j28] {
    background-color: #001a4a;
}

.export-header svg[b-npseki7j28] {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 1);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.export-dropdown-menu[b-npseki7j28] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    min-width: 180px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    overflow: hidden;
}

.export-option[b-npseki7j28] {
    appearance: none;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(20, 20, 20, 1);
    transition: background-color 0.2s ease;
    border-bottom: 1px solid rgba(240, 240, 240, 1);
}

.export-option:disabled[b-npseki7j28] {
    cursor: not-allowed;
}

.export-option:last-child[b-npseki7j28] {
    border-bottom: none;
}

.export-option:hover[b-npseki7j28] {
    background-color: rgba(0, 31, 87, 0.05);
}

/* Table */
.table-wrapper[b-npseki7j28] {
    overflow-x: auto;
}

.invitations-table[b-npseki7j28] {
    width: 100%;
    border-collapse: collapse;
}

.invitations-table thead[b-npseki7j28] {
    border-bottom: 1px solid rgba(204, 204, 204, 1);
}

.invitations-table th[b-npseki7j28] {
    padding: 12px 16px;
    text-align: left;
    color: rgba(134, 134, 134, 1);
    font-size: 12px;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    text-transform: uppercase;
}

.invitations-table tbody tr[b-npseki7j28] {
    border-bottom: 1px solid rgba(204, 204, 204, 1);
}

.invitations-table tbody tr:last-child[b-npseki7j28] {
    border-bottom: none;
}

.invitations-table td[b-npseki7j28] {
    padding: 16px;
    color: rgba(20, 20, 20, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.invitations-table td:first-child[b-npseki7j28] {
    color: rgba(0, 31, 87, 1);
    font-weight: 500;
}

/* Status Badges */
.rescheduled-badge[b-npseki7j28] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    background: #e7f3ff;
    color: #0066cc;
    border: 1px solid #b3d9ff;
}

/* Walk-in badge */
.walkin-badge[b-npseki7j28] {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    /*margin-left: 8px;*/
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    background: rgba(0, 122, 255, 0.08);
    color: #007aff;
    border: 1px solid rgba(0, 122, 255, 0.35);
}


.status-badge[b-npseki7j28] {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    border: 0.5px solid;
}

.status-badge.status-approved[b-npseki7j28] {
    background-color: rgba(52, 199, 89, 0.12);
    color: rgba(52, 199, 89, 1);
    border-color: rgba(82, 198, 82, 1);
}

.status-badge.status-pending[b-npseki7j28] {
    background-color: rgba(255, 149, 0, 0.12);
    color: rgba(255, 149, 0, 1);
    border-color: rgba(255, 149, 0, 1);
}

    .status-badge.status-unattended[b-npseki7j28] {
        background: rgba(139, 139, 139, 0.12);
        color: rgba(139, 139, 139, 1);
        border-color: rgba(139, 139, 139, 0.35);
    }
    .status-badge.status-cancelled[b-npseki7j28] {
        background: #dc354517;
        color: #dc3545;
        border-color: #dc3545;
    }

.status-badge.status-exited[b-npseki7j28] {
    background-color: rgba(139, 139, 139, 0.12);
    color: rgba(139, 139, 139, 1);
    border-color: rgba(139, 139, 139, 1);
}

/* Action Buttons */
.action-buttons[b-npseki7j28] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-btn[b-npseki7j28] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 1);
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(20, 20, 20, 1);
    transition: background-color 0.2s;
}

.action-btn:hover[b-npseki7j28] {
    background-color: rgba(242, 245, 253, 1);
}

.view-btn[b-npseki7j28] {
    width: 32px;
    height: 32px;
    padding: 0;
}

.view-btn svg[b-npseki7j28] {
    width: 16px;
    height: 16px;
    color: rgba(20, 20, 20, 1);
}

.approve-btn[b-npseki7j28] {
    background-color: rgba(0, 31, 87, 1);
    color: rgba(255, 255, 255, 1);
    border-color: rgba(0, 31, 87, 1);
}

.approve-btn:hover[b-npseki7j28] {
    background-color: rgba(0, 25, 70, 1);
}

.reject-btn[b-npseki7j28] {
    background-color: rgba(255, 255, 255, 1);
    color: rgba(20, 20, 20, 1);
}

.reject-btn:hover[b-npseki7j28] {
    background-color: rgba(242, 245, 253, 1);
}

/* Pagination */
.pagination[b-npseki7j28] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(204, 204, 204, 1);
}

.pagination-btn[b-npseki7j28] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border: none;
    border-radius: 4px;
    background-color: rgba(0, 31, 87, 1);
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
}

.pagination-btn:hover[b-npseki7j28] {
    background-color: rgba(0, 25, 70, 1);
}

.pagination-btn svg[b-npseki7j28] {
    width: 12px;
    height: 12px;
    color: rgba(255, 255, 255, 1);
}

.pagination-info[b-npseki7j28] {
    display: flex;
    align-items: center;
    gap: 2px;
    color: rgba(20, 20, 20, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.page-number[b-npseki7j28] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    min-width: 22px;
    height: 22px;
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 4px;
    background-color: rgba(242, 245, 253, 1);
    color: rgba(20, 20, 20, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

/* Visit Details Modal Overlay */
.modal-overlay[b-npseki7j28] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.modal-overlay.show[b-npseki7j28] {
    opacity: 1;
    pointer-events: all;
}

.modal-content[b-npseki7j28] {
    width: 480px;
    max-width: 90vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.modal-content.show[b-npseki7j28] {
    transform: translateX(0);
}

.modal-header[b-npseki7j28] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(204, 204, 204, 1);
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 1);
    z-index: 10;
}

.modal-title[b-npseki7j28] {
    color: rgba(20, 20, 20, 1);
    font-size: 20px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
}

.attendance-modal .modal-title[b-npseki7j28] {
    color: #1A3B6A;
    font-weight: 700;
}

.modal-close-btn-top[b-npseki7j28] {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    color: rgba(20, 20, 20, 1);
    transition: background-color 0.2s;
    padding: 0;
}

.modal-close-btn-top:hover[b-npseki7j28] {
    background-color: rgba(242, 245, 253, 1);
}

.modal-close-btn-top svg[b-npseki7j28] {
    width: 20px;
    height: 20px;
}

.modal-body[b-npseki7j28] {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-field[b-npseki7j28] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-label[b-npseki7j28] {
    color: rgba(134, 134, 134, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.detail-value[b-npseki7j28] {
    color: rgba(20, 20, 20, 1);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.detail-value-with-badge[b-npseki7j28] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-footer[b-npseki7j28] {
    padding: 24px;
    border-top: 1px solid rgba(204, 204, 204, 1);
    display: flex;
    justify-content: flex-end;
    position: sticky;
    bottom: 0;
    background-color: rgba(255, 255, 255, 1);
    z-index: 10;
}

.modal-close-btn-bottom[b-npseki7j28] {
    padding: 10px 24px;
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 8px;
    background-color: rgba(242, 245, 253, 1);
    color: rgba(20, 20, 20, 1);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
}

.modal-close-btn-bottom:hover[b-npseki7j28] {
    background-color: rgba(224, 230, 245, 1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .lfz-admin-metrics[b-npseki7j28] {
        grid-template-columns: 1fr;
    }
    
    .lfz-admin-metric-card[b-npseki7j28] {
        width: 100%;
    }
    
    .lfz-admin-charts[b-npseki7j28] {
        grid-template-columns: 1fr;
    }
    
    .pie-chart-content[b-npseki7j28] {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .lfz-admin-main[b-npseki7j28] {
        padding: 16px;
    }
    
    .lfz-admin-header[b-npseki7j28] {
        flex-direction: column;
        height: auto;
        gap: 12px;
    }
    
    .invitations-controls[b-npseki7j28] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box[b-npseki7j28] {
        max-width: 100%;
    }
    
    .filter-dropdown[b-npseki7j28],
    .export-dropdown[b-npseki7j28] {
        width: 100%;
        justify-content: space-between;
    }
    
    .table-wrapper[b-npseki7j28] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pagination[b-npseki7j28] {
        flex-direction: column;
        gap: 12px;
    }
    
    .pagination-btn[b-npseki7j28] {
        width: 100%;
        justify-content: center;
    }
    
    .modal-content[b-npseki7j28] {
        width: 100%;
        max-width: 100vw;
    }
}

/* ===== Visitor Attendance Modal ===== */
.modal-content.attendance-modal[b-npseki7j28] {
    max-width: 880px;
    width: 92%;
}

.attendance-context[b-npseki7j28] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    gap: 12px 24px;
    padding: 16px 18px;
    background: #f7f9fc;
    border: 1px solid #e6eaf0;
    border-radius: 8px;
    margin-bottom: 16px;
}

.attendance-context-item[b-npseki7j28] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.attendance-context-label[b-npseki7j28] {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #1A3B6A;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
}

.attendance-context-value[b-npseki7j28] {
    font-size: 14px;
    color: #1f2937;
    font-weight: 500;
    word-break: break-word;
}

.attendance-summary[b-npseki7j28] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.summary-card[b-npseki7j28] {
    background: #ffffff;
    border: 1px solid #e6eaf0;
    border-radius: 8px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.summary-label[b-npseki7j28] {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #1A3B6A;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
}

.summary-value[b-npseki7j28] {
    font-size: 16px;
    color: #111827;
    font-weight: 600;
}

.summary-info[b-npseki7j28] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-info-row[b-npseki7j28] {
    font-size: 13px;
    color: #1f2937;
    line-height: 1.4;
}

.summary-info-key[b-npseki7j28] {
    color: #1A3B6A;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    margin-right: 4px;
}

.summary-info-val[b-npseki7j28] {
    color: #111827;
    font-weight: 500;
}

.attendance-table-wrapper[b-npseki7j28] {
    border: 1px solid #e6eaf0;
    border-radius: 8px;
    overflow: hidden;
}

.attendance-table[b-npseki7j28] {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.attendance-table thead[b-npseki7j28] {
    background: #f3f5f9;
}

.attendance-table th[b-npseki7j28] {
    text-align: left;
    padding: 10px 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #1A3B6A;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    border-bottom: 1px solid #e6eaf0;
}

.attendance-table td[b-npseki7j28] {
    padding: 10px 14px;
    color: #1f2937;
    border-bottom: 1px solid #eef1f5;
    vertical-align: middle;
}

.attendance-table tbody tr:last-child td[b-npseki7j28] {
    border-bottom: none;
}

.attendance-table tbody tr:hover[b-npseki7j28] {
    background: #fafbfd;
}

.attendance-loading[b-npseki7j28],
.attendance-empty[b-npseki7j28],
.attendance-error[b-npseki7j28] {
    padding: 24px 16px;
    text-align: center;
    border-radius: 8px;
    font-size: 14px;
}

.attendance-loading[b-npseki7j28] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #4b5563;
    background: #f7f9fc;
    border: 1px solid #e6eaf0;
}

.attendance-empty[b-npseki7j28] {
    color: #6b7280;
    background: #f7f9fc;
    border: 1px dashed #d1d5db;
}

.attendance-error[b-npseki7j28] {
    color: #b91c1c;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.attendance-spinner[b-npseki7j28] {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: attendance-spin-b-npseki7j28 0.8s linear infinite;
}

@keyframes attendance-spin-b-npseki7j28 {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .attendance-context[b-npseki7j28],
    .attendance-summary[b-npseki7j28] {
        grid-template-columns: 1fr;
    }

    .attendance-table th[b-npseki7j28],
    .attendance-table td[b-npseki7j28] {
        padding: 8px 10px;
        font-size: 12px;
    }
}
/* /Pages/Devices.razor.rz.scp.css */
/* ========================================
   Devices Page Layout
   ======================================== */
.devices-page[b-628gtysay2] {
    padding: 32px;
    /*background-color: #F5F7FA;*/
    background-color: rgba(246, 246, 246, 1);
    min-height: 100%;
    font-family: 'Ubuntu', sans-serif;
}

/* ========================================
   Page Header
   ======================================== */
.page-header[b-628gtysay2] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
}

.page-title[b-628gtysay2] {
    font-size: 24px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 4px 0;
    line-height: 1.2;
    font-family: 'Ubuntu', sans-serif;
}

.page-subtitle[b-628gtysay2] {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
}

/* ========================================
   Primary Action Button
   ======================================== */
.btn-primary-action[b-628gtysay2] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #001F57;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.05s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 31, 87, 0.16);
    white-space: nowrap;
}

.btn-primary-action:hover:not(:disabled)[b-628gtysay2] {
    background-color: #0A2F7A;
    box-shadow: 0 3px 8px rgba(0, 31, 87, 0.24);
}

.btn-primary-action:active:not(:disabled)[b-628gtysay2] {
    transform: translateY(1px);
}

.btn-primary-action i[b-628gtysay2] {
    font-size: 14px;
    line-height: 1;
}

.btn-secondary-action[b-628gtysay2] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #FFFFFF;
    color: #001F57;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary-action:hover:not(:disabled)[b-628gtysay2] {
    background-color: #F5F7FA;
    border-color: #001F57;
}

/* ========================================
   Alert
   ======================================== */
.alert[b-628gtysay2] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    font-family: 'Ubuntu', sans-serif;
}

.alert-danger[b-628gtysay2] {
    background-color: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FCA5A5;
}

.alert i[b-628gtysay2] {
    font-size: 16px;
    flex-shrink: 0;
}

/* ========================================
   Toolbar (Search + Count)
   ======================================== */
.toolbar[b-628gtysay2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.search-wrapper[b-628gtysay2] {
    position: relative;
    flex: 1;
    max-width: 420px;
}

.search-icon[b-628gtysay2] {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    font-size: 16px;
    pointer-events: none;
}

.search-input[b-628gtysay2] {
    width: 100%;
    padding: 10px 40px 10px 42px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    background-color: #FFFFFF;
    font-size: 14px;
    color: #1A1A1A;
    font-family: 'Ubuntu', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input[b-628gtysay2]::placeholder {
    color: #9CA3AF;
}

.search-input:focus[b-628gtysay2] {
    outline: none;
    border-color: #001F57;
    box-shadow: 0 0 0 3px rgba(0, 31, 87, 0.1);
}

.search-clear[b-628gtysay2] {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #6B7280;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.search-clear:hover[b-628gtysay2] {
    background-color: #F1F5F9;
    color: #1A1A1A;
}

.search-clear i[b-628gtysay2] {
    font-size: 18px;
}

.count-pill[b-628gtysay2] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background-color: #EFF2F7;
    color: #374151;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.count-pill span[b-628gtysay2] {
    font-weight: 400;
    color: #6B7280;
}

/* ========================================
   Devices Card + Table
   ======================================== */
.devices-card[b-628gtysay2] {
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.devices-table[b-628gtysay2] {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Ubuntu', sans-serif;
}

.devices-table thead[b-628gtysay2] {
    background-color: #F8FAFC;
    border-bottom: 1px solid #E5E7EB;
}

.devices-table thead th[b-628gtysay2] {
    padding: 14px 20px;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.devices-table thead th.actions-col[b-628gtysay2] {
    width: 110px;
    text-align: right;
}

.devices-table tbody tr[b-628gtysay2] {
    border-bottom: 1px solid #F1F5F9;
    transition: background-color 0.15s ease;
}

.devices-table tbody tr:last-child[b-628gtysay2] {
    border-bottom: none;
}

.devices-table tbody tr:hover:not(.skeleton-row)[b-628gtysay2] {
    background-color: rgba(0, 31, 87, 0.035);
}

.devices-table tbody td[b-628gtysay2] {
    padding: 16px 20px;
    font-size: 14px;
    color: #1F2937;
    vertical-align: middle;
}

.cell-strong[b-628gtysay2] {
    font-weight: 600;
    color: #1A1A1A;
}

.cell-mono[b-628gtysay2] {
    font-family: 'JetBrains Mono', 'Consolas', 'SF Mono', monospace;
    font-size: 13px;
    color: #374151;
}

.cell-muted[b-628gtysay2] {
    color: #6B7280;
    max-width: 360px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.devices-table tbody td.actions-col[b-628gtysay2] {
    text-align: right;
    white-space: nowrap;
}

/* ========================================
   Device Status Badge
   ======================================== */
.status-badge[b-628gtysay2] {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    border: 1px solid transparent;
    white-space: nowrap;
}

.status-badge-online[b-628gtysay2] {
    background-color: #DCFCE7;
    color: #166534;
    border-color: #BBF7D0;
}

.status-badge-offline[b-628gtysay2] {
    background-color: #FEE2E2;
    color: #991B1B;
    border-color: #FECACA;
}

.status-badge-unknown[b-628gtysay2] {
    background-color: #F3F4F6;
    color: #6B7280;
    border-color: #E5E7EB;
}

/* ========================================
   Action Icon Buttons
   ======================================== */
.action-icon-btn[b-628gtysay2] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 4px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.15s ease;
}

.action-icon-btn i[b-628gtysay2] {
    font-size: 15px;
    line-height: 1;
}

.action-icon-btn.edit:hover[b-628gtysay2] {
    background-color: rgba(0, 31, 87, 0.08);
    color: #001F57;
    border-color: rgba(0, 31, 87, 0.18);
}

.action-icon-btn.delete:hover[b-628gtysay2] {
    background-color: rgba(220, 38, 38, 0.08);
    color: #DC2626;
    border-color: rgba(220, 38, 38, 0.18);
}

.action-icon-btn:focus-visible[b-628gtysay2] {
    outline: 2px solid rgba(0, 31, 87, 0.35);
    outline-offset: 1px;
}

/* ========================================
   Empty State
   ======================================== */
.empty-state[b-628gtysay2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
    text-align: center;
}

.empty-icon[b-628gtysay2] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: #EFF2F7;
    color: #001F57;
    border-radius: 50%;
    margin-bottom: 20px;
}

.empty-icon i[b-628gtysay2] {
    font-size: 28px;
}

.empty-state h3[b-628gtysay2] {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 8px 0;
    font-family: 'Ubuntu', sans-serif;
}

.empty-state p[b-628gtysay2] {
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 20px 0;
    max-width: 360px;
    font-family: 'Ubuntu', sans-serif;
}

/* ========================================
   Skeleton Loading
   ======================================== */
.skeleton-row td[b-628gtysay2] {
    padding: 16px 20px;
}

.skeleton[b-628gtysay2] {
    display: inline-block;
    background: linear-gradient(90deg, #F1F5F9 0%, #E5E7EB 50%, #F1F5F9 100%);
    background-size: 200% 100%;
    animation: shimmer-b-628gtysay2 1.4s ease-in-out infinite;
    border-radius: 4px;
}

.skeleton-text[b-628gtysay2] {
    height: 14px;
    vertical-align: middle;
}

.skeleton-action[b-628gtysay2] {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    margin-left: 4px;
    vertical-align: middle;
}

@keyframes shimmer-b-628gtysay2 {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ========================================
   Slide-Over Panel
   ======================================== */
.slide-over-backdrop[b-628gtysay2] {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.45);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 1040;
    backdrop-filter: blur(2px);
}

.slide-over-backdrop.show[b-628gtysay2] {
    opacity: 1;
}

.slide-over-panel[b-628gtysay2] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 480px;
    max-width: 100vw;
    background-color: #FFFFFF;
    box-shadow: -8px 0 24px rgba(15, 23, 42, 0.12);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Ubuntu', sans-serif;
}

.slide-over-panel.show[b-628gtysay2] {
    transform: translateX(0);
}

.slide-over-header[b-628gtysay2] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px 20px;
    border-bottom: 1px solid #E5E7EB;
}

.slide-over-header h2[b-628gtysay2] {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 2px 0;
    font-family: 'Ubuntu', sans-serif;
}

.slide-over-header p[b-628gtysay2] {
    font-size: 13px;
    color: #6B7280;
    margin: 0;
}

.slide-over-close[b-628gtysay2] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: #6B7280;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.slide-over-close:hover[b-628gtysay2] {
    background-color: #F1F5F9;
    color: #1A1A1A;
}

.slide-over-close i[b-628gtysay2] {
    font-size: 16px;
}

.slide-over-form[b-628gtysay2] {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.slide-over-body[b-628gtysay2] {
    flex: 1;
    overflow-y: auto;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

[b-628gtysay2] .slide-over-body .form-group {
    display: flex;
    flex-direction: column;
}

[b-628gtysay2] .slide-over-body .form-label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
    font-family: 'Ubuntu', sans-serif;
}

[b-628gtysay2] .slide-over-body .form-label .required {
    color: #DC2626;
    margin-left: 2px;
}

[b-628gtysay2] .slide-over-body .form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    color: #1A1A1A;
    background-color: #FFFFFF;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

[b-628gtysay2] .slide-over-body .form-control:focus {
    outline: none;
    border-color: #001F57;
    box-shadow: 0 0 0 3px rgba(0, 31, 87, 0.1);
}

[b-628gtysay2] .slide-over-body .form-control::placeholder {
    color: #9CA3AF;
}

[b-628gtysay2] .slide-over-body .validation-message {
    color: #DC2626;
    font-size: 12px;
    margin-top: 4px;
    font-family: 'Ubuntu', sans-serif;
}

.slide-over-footer[b-628gtysay2] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-top: 1px solid #E5E7EB;
    background-color: #FAFBFC;
}

.btn-ghost[b-628gtysay2] {
    padding: 10px 18px;
    background-color: transparent;
    color: #374151;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-ghost:hover:not(:disabled)[b-628gtysay2] {
    background-color: #F5F7FA;
    border-color: #CBD5E1;
}

.btn-ghost:disabled[b-628gtysay2] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-submit[b-628gtysay2] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #001F57;
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-submit:hover:not(:disabled)[b-628gtysay2] {
    background-color: #0A2F7A;
}

.btn-submit:disabled[b-628gtysay2] {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit i[b-628gtysay2] {
    font-size: 14px;
    line-height: 1;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    .devices-page[b-628gtysay2] {
        padding: 20px 16px;
    }

    .page-header[b-628gtysay2] {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary-action[b-628gtysay2] {
        justify-content: center;
    }

    .toolbar[b-628gtysay2] {
        flex-direction: column;
        align-items: stretch;
    }

    .search-wrapper[b-628gtysay2] {
        max-width: 100%;
    }

    .count-pill[b-628gtysay2] {
        align-self: flex-start;
    }

    .devices-table thead[b-628gtysay2] {
        display: none;
    }

    .devices-table[b-628gtysay2],
    .devices-table tbody[b-628gtysay2],
    .devices-table tr[b-628gtysay2],
    .devices-table td[b-628gtysay2] {
        display: block;
        width: 100%;
    }

    .devices-table tbody tr[b-628gtysay2] {
        padding: 12px 16px;
        border-bottom: 1px solid #F1F5F9;
    }

    .devices-table tbody td[b-628gtysay2] {
        padding: 4px 0;
        border: none;
    }

    .devices-table tbody td.actions-col[b-628gtysay2] {
        text-align: left;
        padding-top: 8px;
    }

    .cell-muted[b-628gtysay2] {
        max-width: 100%;
        white-space: normal;
    }

    .slide-over-panel[b-628gtysay2] {
        width: 100vw;
    }

    .slide-over-header[b-628gtysay2],
    .slide-over-body[b-628gtysay2],
    .slide-over-footer[b-628gtysay2] {
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* /Pages/DigitalPassport.razor.rz.scp.css */
.digital-passport-container[b-kjzp1lbyms] {
    width: 100%;
    min-height: 100vh;
    background-color: #f5f5f5;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.digital-passport-content[b-kjzp1lbyms] {
    width: 100%;
    max-width: 1200px;
}

.digital-passport-header[b-kjzp1lbyms] {
    margin-bottom: 32px;
    text-align: center;
}

.digital-passport-title[b-kjzp1lbyms] {
    font-size: 32px;
    font-weight: 700;
    color: #1A3B6A;
    margin: 0 0 8px 0;
    font-family: 'Ubuntu', sans-serif;
}

.digital-passport-subtitle[b-kjzp1lbyms] {
    font-size: 16px;
    color: #888888;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
}

.loading-container[b-kjzp1lbyms] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 20px;
}

.spinner[b-kjzp1lbyms] {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1A3B6A;
    border-radius: 50%;
    animation: spin-b-kjzp1lbyms 1s linear infinite;
}

@keyframes spin-b-kjzp1lbyms {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.passport-card-container[b-kjzp1lbyms] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Upload Form Styles */
.upload-form-container[b-kjzp1lbyms] {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.upload-form-header[b-kjzp1lbyms] {
    margin-bottom: 32px;
    text-align: center;
}

.upload-form-header h2[b-kjzp1lbyms] {
    font-size: 24px;
    font-weight: 600;
    color: #1A3B6A;
    margin: 0 0 8px 0;
    font-family: 'Ubuntu', sans-serif;
}

.upload-form-header p[b-kjzp1lbyms] {
    font-size: 14px;
    color: #666666;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
}

.upload-section[b-kjzp1lbyms] {
    margin-bottom: 24px;
    padding: 16px 20px;
    border-radius: 10px;
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
}

.upload-label[b-kjzp1lbyms] {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 12px;
    font-family: 'Ubuntu', sans-serif;
}

.file-input[b-kjzp1lbyms] {
    width: 100%;
}

.file-input-inner[b-kjzp1lbyms] {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    font-family: 'Ubuntu', sans-serif;
}

.file-input-inner:hover[b-kjzp1lbyms],
.file-input-inner:focus-within[b-kjzp1lbyms] {
    border-color: #1A3B6A;
    background-color: #f0f4ff;
    box-shadow: 0 0 0 3px rgba(26, 59, 106, 0.08);
}

.file-input-button[b-kjzp1lbyms] {
    background-color: #1A3B6A;
    color: #ffffff;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    text-transform: none;
    white-space: nowrap;
}

.file-input-filename[b-kjzp1lbyms] {
    font-size: 13px;
    color: #555555;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-input-native[b-kjzp1lbyms] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-input-help[b-kjzp1lbyms] {
    margin-top: 8px;
    font-size: 12px;
    color: #888888;
    font-family: 'Ubuntu', sans-serif;
}

.file-input-help p[b-kjzp1lbyms] {
    margin: 4px 0;
}

.image-preview-container[b-kjzp1lbyms] {
    margin-top: 20px;
    padding: 16px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.preview-label[b-kjzp1lbyms] {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 12px;
    font-family: 'Ubuntu', sans-serif;
}

.image-preview[b-kjzp1lbyms] {
    width: 60%;
    max-width: 100px;
    margin: 0 auto 12px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.image-preview img[b-kjzp1lbyms] {
    width: 100%;
    height: auto;
    display: block;
}

.file-name[b-kjzp1lbyms] {
    font-size: 12px;
    color: #666666;
    text-align: center;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
}

.form-actions[b-kjzp1lbyms] {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.btn-submit[b-kjzp1lbyms] {
    background-color: #1A3B6A;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    font-family: 'Ubuntu', sans-serif;
    min-width: 200px;
}

.btn-submit:hover:not(:disabled)[b-kjzp1lbyms] {
    background-color: #0f2542;
    transform: translateY(-1px);
}

.btn-submit:active:not(:disabled)[b-kjzp1lbyms] {
    transform: translateY(0);
}

.btn-submit:disabled[b-kjzp1lbyms] {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.alert[b-kjzp1lbyms] {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
}

.alert-danger[b-kjzp1lbyms] {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success[b-kjzp1lbyms] {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
/* /Pages/EnterpriseDashboard.razor.rz.scp.css */
/* Main Container */
.enterprise-dashboard-container[b-ophmdap5cb] {
    width: 100%;
    padding: 24px 32px;
    /*background-color: #F5F7FA;*/
    background-color: rgba(246, 246, 246, 1);
    min-height: 100vh;
    font-family: 'Ubuntu', sans-serif;
}


.action-btn qr-btn-code[b-ophmdap5cb] {
    width: 150px;
    height: 20px;
    margin-left: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /*background: rgba(0, 31, 87, 0.10);*/
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    cursor: pointer;
    /*color: #1a1a1a;*/
    transition: background-color 0.15s ease, border-color 0.15s ease;
    background-color: #1A3B6A;
    color: #FFFFFF;
}



/* Header Section */
.dashboard-header[b-ophmdap5cb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 0px 20px 20px 20px;
    /*border-bottom: 1px solid #E0E0E0;*/
}

.dashboard-title[b-ophmdap5cb] {
    font-size: 32px;
    /*font-weight: 700;*/
    color: #1A1A1A;
    margin: 0;
    letter-spacing: -0.5px;
}

.user-profile-section[b-ophmdap5cb] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.notification-icon[b-ophmdap5cb] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.notification-icon:hover[b-ophmdap5cb] {
    background-color: #F0F0F0;
}

.profile-picture[b-ophmdap5cb] {
    width: 0px;
    height: 0px;
    border-radius: 0%;
    overflow: hidden;
    border: 2px solid #E0E0E0;
}

.profile-picture img[b-ophmdap5cb] {
    width: 0%;
    height: 0%;
    object-fit: cover;
}

.user-info[b-ophmdap5cb] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
/*
.user-name {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
}*/

/*.user-email {
    font-size: 12px;
    color: #666666;
}*/

/* Metrics Section */
.metrics-section[b-ophmdap5cb] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.metric-card[b-ophmdap5cb] {
    position: relative;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    min-height: 140px;
}

.metric-card-background[b-ophmdap5cb] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    opacity: 0.5;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.02) 10px, rgba(0,0,0,0.02) 20px);
}

.metric-content[b-ophmdap5cb] {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.metric-title[b-ophmdap5cb] {
    font-size: 14px;
    font-weight: 500;
    color: #666666;
}

.metric-value[b-ophmdap5cb] {
    font-size: 36px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1;
}

/* Charts Section */
.charts-section[b-ophmdap5cb] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.chart-container[b-ophmdap5cb] {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.chart-header[b-ophmdap5cb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-controls[b-ophmdap5cb] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chart-toggle[b-ophmdap5cb] {
    display: inline-flex;
    background: #f1f4f8;
    border-radius: 999px;
    padding: 3px;
}

.chart-toggle-btn[b-ophmdap5cb] {
    border: none;
    background: transparent;
    color: #566579;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    padding: 4px 10px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.chart-toggle-btn.active[b-ophmdap5cb] {
    background: #1A3B6A;
    color: #FFFFFF;
}

.chart-title[b-ophmdap5cb] {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0;
}

.chart-subtitle[b-ophmdap5cb] {
    font-size: 12px;
    color: #666666;
    font-weight: 500;
}

.chart-content[b-ophmdap5cb] {
    min-height: 250px;
    position: relative;
}

.chart-placeholder[b-ophmdap5cb] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 14px;
}

/* Entry vs Exit Donut Chart */
.entry-exit-chart[b-ophmdap5cb] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.donut-chart-svg[b-ophmdap5cb] {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.chart-segment[b-ophmdap5cb] {
    transition: opacity 0.2s ease;
    cursor: pointer;
}

.chart-segment:hover[b-ophmdap5cb] {
    opacity: 0.8;
}

.entry-segment[b-ophmdap5cb] {
    fill: #1A3B6A;
}

.exit-segment[b-ophmdap5cb] {
    fill: #4A90E2;
}

.chart-legend[b-ophmdap5cb] {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}

.legend-item[b-ophmdap5cb] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color[b-ophmdap5cb] {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

.entry-color[b-ophmdap5cb] {
    background-color: #1A3B6A;
}

.exit-color[b-ophmdap5cb] {
    background-color: #4A90E2;
}

.legend-label[b-ophmdap5cb] {
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
    font-family: 'Ubuntu', sans-serif;
}

/* Invitations Section */
.invitations-section[b-ophmdap5cb] {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-title[b-ophmdap5cb] {
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 24px 0;
}

.invitations-controls[b-ophmdap5cb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.search-container[b-ophmdap5cb] {
    position: relative;
    flex: 1;
    min-width: 250px;
    max-width: 400px;
}

.search-icon[b-ophmdap5cb] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999999;
    pointer-events: none;
}

.search-input[b-ophmdap5cb] {
    width: 100%;
    padding: 10px 12px 10px 36px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    color: #1A1A1A;
    background-color: #FFFFFF;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input:focus[b-ophmdap5cb] {
    outline: none;
    border-color: #1A3B6A;
    box-shadow: 0 0 0 3px rgba(26, 59, 106, 0.1);
}

.search-input[b-ophmdap5cb]::placeholder {
    color: #999999;
}

.filter-buttons[b-ophmdap5cb] {
    display: flex;
    gap: 8px;
}

.filter-btn[b-ophmdap5cb] {
    padding: 8px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    background-color: #FFFFFF;
    color: #666666;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Ubuntu', sans-serif;
    white-space: nowrap;
}

.filter-btn:hover[b-ophmdap5cb] {
    background-color: #F5F7FA;
    border-color: #CCCCCC;
}

.filter-btn.active[b-ophmdap5cb] {
    background-color: #1A3B6A;
    color: #FFFFFF;
    border-color: #1A3B6A;
}

.filter-btn.active:hover[b-ophmdap5cb] {
    background-color: #153055;
}

/* Table Styles */
.table-container[b-ophmdap5cb] {
    overflow-x: auto;
    margin-bottom: 24px;
}

.invitations-table[b-ophmdap5cb] {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.invitations-table thead[b-ophmdap5cb] {
    background-color: #F8F9FA;
    border-bottom: 2px solid #E0E0E0;
}

.invitations-table th[b-ophmdap5cb] {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #1A1A1A;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.invitations-table td[b-ophmdap5cb] {
    padding: 16px;
    border-bottom: 1px solid #F0F0F0;
    color: #333333;
}

.invitations-table tbody tr[b-ophmdap5cb] {
    transition: background-color 0.2s ease;
}

.invitations-table tbody tr:hover[b-ophmdap5cb] {
    background-color: #F8F9FA;
}

/* Status Badges */
.status-badge[b-ophmdap5cb] {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid transparent;
    line-height: 1;
}

    .status-badge.status-approved[b-ophmdap5cb] {
        background-color: rgba(52, 199, 89, 0.12);
        color: rgba(52, 199, 89, 1);
        border-color: rgba(82, 198, 82, 1);
    }

.status-badge.status-pending[b-ophmdap5cb] {
    background-color: #FFF3E0;
    color: #E65100;
}

.status-badge.status-expired[b-ophmdap5cb] {
    background-color: #F5F5F5;
    color: #666666;
}

/* Walk-in badge */
.walkin-badge[b-ophmdap5cb] {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    /*margin-left: 8px;*/
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    background-color: rgba(0, 122, 255, 0.08);
    color: #007aff;
    border: 1px solid rgba(0, 122, 255, 0.35);
}

/* Action Buttons */
.action-buttons[b-ophmdap5cb] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn[b-ophmdap5cb] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Ubuntu', sans-serif;
}


.action-btn[b-ophmdap5cb] {
    width: 150px;
    height: 32px;
    margin-left: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(0, 31, 87, 0.10); */
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    cursor: pointer;
    /* color: #1a1a1a; */
    transition: background-color 0.15s ease, border-color 0.15s ease;
    background-color: #1A3B6A;
    color: #FFFFFF;
}


.view-btn[b-ophmdap5cb] {
    width: 32px;
    height: 32px;
    padding: 0;
    background-color: #F5F7FA;
    color: #666666;
}

.view-btn:hover[b-ophmdap5cb] {
    background-color: #E0E0E0;
    color: #1A1A1A;
}

.approve-btn[b-ophmdap5cb] {
    background-color: #1A3B6A;
    color: #FFFFFF;
}

.approve-btn:hover[b-ophmdap5cb] {
    background-color: #153055;
}

.reject-btn[b-ophmdap5cb] {
    background-color: #F5F5F5;
    color: #666666;
}

.reject-btn:hover[b-ophmdap5cb] {
    background-color: #E0E0E0;
    color: #1A1A1A;
}

/* Pagination */
.pagination[b-ophmdap5cb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #E0E0E0;
}

.pagination-btn[b-ophmdap5cb] {
    padding: 8px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    background-color: #FFFFFF;
    color: #666666;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Ubuntu', sans-serif;
}

.pagination-btn:hover:not(:disabled)[b-ophmdap5cb] {
    background-color: #F5F7FA;
    border-color: #CCCCCC;
}

.pagination-btn:disabled[b-ophmdap5cb] {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info[b-ophmdap5cb] {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .charts-section[b-ophmdap5cb] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .enterprise-dashboard-container[b-ophmdap5cb] {
        padding: 16px;
    }
    
    .dashboard-header[b-ophmdap5cb] {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .metrics-section[b-ophmdap5cb] {
        grid-template-columns: 1fr;
    }
    
    .invitations-controls[b-ophmdap5cb] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-container[b-ophmdap5cb] {
        max-width: 100%;
    }
    
    .filter-buttons[b-ophmdap5cb] {
        flex-wrap: wrap;
    }
    
    .table-container[b-ophmdap5cb] {
        overflow-x: scroll;
    }
    
    .pagination[b-ophmdap5cb] {
        flex-direction: column;
        gap: 12px;
    }
}


/* /Pages/GateOperations.razor.rz.scp.css */
/* Container Styling */
.gate-operations-container[b-a9zkxnn8nd] {
    width: 100%;
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.gate-operations-container[b-a9zkxnn8nd] {
    background: #F6F8FB;
    border-radius: 16px;
}

/* Enterprise Card Wrapper */
.gate-operations-card[b-a9zkxnn8nd] {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(224, 224, 224, 0.9);
    box-shadow:
        0 10px 24px rgba(15, 35, 64, 0.12),
        0 2px 6px rgba(15, 35, 64, 0.08);
    position: relative;
    overflow: hidden;
}

.gate-operations-card[b-a9zkxnn8nd]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(26, 59, 106, 1), rgba(26, 59, 106, 0.25));
}

.gate-operations-card-header[b-a9zkxnn8nd] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding-top: 6px; /* offsets the accent bar */
    margin-bottom: 18px;
}

.gate-operations-subtitle[b-a9zkxnn8nd] {
    margin: 0;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.4;
    text-align: right;
    max-width: 520px;
}

/* Search Section */
.search-container[b-a9zkxnn8nd] {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    align-items: center;
}

.search-input[b-a9zkxnn8nd] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    background-color: #FFFFFF;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    color: #333333;
    outline: none;
    transition: border-color 0.2s ease;
    max-width: 300px;
}

.search-input:focus[b-a9zkxnn8nd] {
    border-color: #1A3B6A;
    box-shadow: 0 0 0 3px rgba(26, 59, 106, 0.1);
}

.search-input[b-a9zkxnn8nd]::placeholder {
    color: #999999;
}

.search-button[b-a9zkxnn8nd] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #1A3B6A;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.search-button:hover[b-a9zkxnn8nd] {
    background-color: #153055;
}

.search-button:active[b-a9zkxnn8nd] {
    background-color: #0f2340;
}

.search-button svg[b-a9zkxnn8nd] {
    flex-shrink: 0;
}

.search-button span[b-a9zkxnn8nd] {
    line-height: 1;
}

.work-in-and-check-out[b-a9zkxnn8nd] {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: auto;
}

.walkin-button[b-a9zkxnn8nd] {
    padding: 12px 20px;
    background-color: #0f2340;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.walkout-button[b-a9zkxnn8nd] {
    padding: 12px 20px;
    background-color: #666666;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

    .walkin-button:hover[b-a9zkxnn8nd] {
        background-color: #0c1b33;
    }

.walkin-button:active[b-a9zkxnn8nd] {
    background-color: #0a152a;
}

/* Header */
.approved-invitations-header[b-a9zkxnn8nd] {
    color: #1A3B6A;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    text-align: left;
    padding-bottom: 10px;
}

/* Results/Cards */
.invitations-list[b-a9zkxnn8nd] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.invitation-card[b-a9zkxnn8nd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
}

.invitation-card:hover[b-a9zkxnn8nd] {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.guest-name-container[b-a9zkxnn8nd] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.guest-name[b-a9zkxnn8nd] {
    font-weight: 600;
    color: #333333;
    font-size: 16px;
    font-family: 'Ubuntu', sans-serif;
    text-align: left;
}

.guest-invitation-no[b-a9zkxnn8nd] {
    color: rgba(134, 134, 134, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.card-actions[b-a9zkxnn8nd] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.view-details-button[b-a9zkxnn8nd] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background-color: transparent;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    color: #333333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-details-button:hover[b-a9zkxnn8nd] {
    background-color: #F5F5F5;
    border-color: #1A3B6A;
    color: #1A3B6A;
}

.view-details-button svg[b-a9zkxnn8nd] {
    width: 20px;
    height: 20px;
}

.allow-entry-button[b-a9zkxnn8nd] {
    padding: 6px 12px;
    background-color: #1A3B6A;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    min-width: 0;
}

.allow-entry-button:hover:not(:disabled)[b-a9zkxnn8nd] {
    background-color: #153055;
}

.allow-entry-button:active:not(:disabled)[b-a9zkxnn8nd] {
    background-color: #0f2340;
}

.allow-entry-button:disabled[b-a9zkxnn8nd] {
    background-color: #CCCCCC;
    color: #FFFFFF;
    cursor: not-allowed;
    opacity: 0.6;
}

.reject-entry-button[b-a9zkxnn8nd] {
    padding: 6px 12px;
    background-color: #DC3545;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    min-width: 0;
}

.reject-entry-button:hover[b-a9zkxnn8nd] {
    background-color: #C82333;
}

.reject-entry-button:active[b-a9zkxnn8nd] {
    background-color: #BD2130;
}

.no-results[b-a9zkxnn8nd] {
    text-align: center;
    color: #666666;
    font-size: 16px;
    font-family: 'Ubuntu', sans-serif;
    padding: 40px 20px;
    margin: 0;
}

/* Responsive Design - Mobile (< 768px) */
@media (max-width: 767px) {
    .gate-operations-container[b-a9zkxnn8nd] {
        padding: 16px;
    }

    .gate-operations-card[b-a9zkxnn8nd] {
        padding: 18px;
    }

    .gate-operations-card-header[b-a9zkxnn8nd] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 14px;
    }

    .gate-operations-subtitle[b-a9zkxnn8nd] {
        text-align: left;
        max-width: none;
    }

    .search-container[b-a9zkxnn8nd] {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }

    .search-input[b-a9zkxnn8nd] {
        width: 100%;
    }

    .search-button[b-a9zkxnn8nd] {
        width: 100%;
        justify-content: center;
    }

    .walkin-button[b-a9zkxnn8nd] {
        width: 100%;
    }

    .approved-invitations-header[b-a9zkxnn8nd] {
        font-size: 20px;
    }

    .invitation-card[b-a9zkxnn8nd] {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px;
    }

    .guest-name-container[b-a9zkxnn8nd] {
        width: 100%;
    }
    
    .guest-name[b-a9zkxnn8nd] {
        width: auto;
    }

    .card-actions[b-a9zkxnn8nd] {
        width: 100%;
        flex-direction: row;
        justify-content: flex-end;
    }

    .view-details-button[b-a9zkxnn8nd] {
        width: auto;
    }

    .allow-entry-button[b-a9zkxnn8nd] {
        flex: 1;
        min-width: 0;
    }

    .reject-entry-button[b-a9zkxnn8nd] {
        flex: 1;
        min-width: 0;
    }
}

/* Responsive Design - Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .gate-operations-container[b-a9zkxnn8nd] {
        padding: 20px;
    }

    .gate-operations-card[b-a9zkxnn8nd] {
        padding: 22px;
    }

    .approved-invitations-header[b-a9zkxnn8nd] {
        font-size: 22px;
    }

    .invitation-card[b-a9zkxnn8nd] {
        padding: 18px 20px;
    }
}

/* Responsive Design - Large Desktop (> 1440px) */
@media (min-width: 1440px) {
    .gate-operations-container[b-a9zkxnn8nd] {
        padding: 32px;
    }
}

/* Modal Overlay */
.modal-overlay[b-a9zkxnn8nd] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    animation: fadeIn-b-a9zkxnn8nd 0.3s ease;
}

@keyframes fadeIn-b-a9zkxnn8nd {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal Panel */
.modal-panel[b-a9zkxnn8nd] {
    width: 100%;
    max-width: 500px;
    background-color: #FFFFFF;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: slideInRight-b-a9zkxnn8nd 0.3s ease;
    overflow-y: auto;
}

@keyframes slideInRight-b-a9zkxnn8nd {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Modal Header */
.modal-header[b-a9zkxnn8nd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #E0E0E0;
}

.modal-title[b-a9zkxnn8nd] {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
}

.modal-close-button[b-a9zkxnn8nd] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    color: #666666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close-button:hover[b-a9zkxnn8nd] {
    background-color: #F5F5F5;
    color: #333333;
}

.modal-close-button svg[b-a9zkxnn8nd] {
    width: 20px;
    height: 20px;
}

/* Modal Content */
.modal-content[b-a9zkxnn8nd] {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.detail-section[b-a9zkxnn8nd] {
    margin-bottom: 24px;
}

.detail-item[b-a9zkxnn8nd] {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.detail-row[b-a9zkxnn8nd] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.detail-label[b-a9zkxnn8nd] {
    font-weight: 600;
    color: #333333;
    font-size: 14px;
    margin-bottom: 4px;
    font-family: 'Ubuntu', sans-serif;
}

.detail-value[b-a9zkxnn8nd] {
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.detail-divider[b-a9zkxnn8nd] {
    height: 1px;
    background-color: #E0E0E0;
    margin: 16px 0;
}

/* Modal Footer */
.modal-footer[b-a9zkxnn8nd] {
    padding: 24px;
    border-top: 1px solid #E0E0E0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.modal-close-btn[b-a9zkxnn8nd] {
    padding: 10px 24px;
    background-color: #F5F5F5;
    color: #333333;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close-btn:hover[b-a9zkxnn8nd] {
    background-color: #E0E0E0;
    border-color: #CCCCCC;
}

/* Responsive Modal */
@media (max-width: 767px) {
    .modal-panel[b-a9zkxnn8nd] {
        max-width: 100%;
    }

    .detail-row[b-a9zkxnn8nd] {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Walk-In Modal */
.walkin-modal-overlay[b-a9zkxnn8nd] {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 16px 0 16px 16px;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1100;
}

.walkin-modal[b-a9zkxnn8nd] {
    width: 100%;
    max-width: 800px;
    height: 20vh;
    min-height: 180px;
    background-color: #CCCCCC;
    border: 1px solid #d1200d;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    animation: walkinSlideIn-b-a9zkxnn8nd 2.0s ease forwards;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.walkin-modal-content[b-a9zkxnn8nd] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    box-sizing: border-box;
    text-align: center;
    padding-left: 40px;
}

.walkin-title[b-a9zkxnn8nd] {
    margin: 0;
    color: #ff3b1f;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
}

.walkin-subtitle[b-a9zkxnn8nd] {
    margin: 0;
    color: #ff3b1f;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
}

.walkin-cta[b-a9zkxnn8nd] {
    width: 100%;
    max-width: 1100px;
    padding: 14px 20px;
    background-color: #f1270b;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.walkin-cta:hover[b-a9zkxnn8nd] {
    background-color: #d61f08;
}

.walkin-cta:active[b-a9zkxnn8nd] {
    transform: scale(0.99);
}

.walkin-close-button[b-a9zkxnn8nd] {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #ff3b1f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.walkin-close-button:hover[b-a9zkxnn8nd] {
    background-color: rgba(255, 59, 31, 0.1);
    color: #ffffff;
}

.walkin-close-button svg[b-a9zkxnn8nd] {
    width: 18px;
    height: 18px;
}

@keyframes walkinSlideIn-b-a9zkxnn8nd {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@media (max-width: 767px) {
    .walkin-modal[b-a9zkxnn8nd] {
        height: auto;
        min-height: 200px;
    }

    .walkin-title[b-a9zkxnn8nd] {
        font-size: 20px;
    }

    .walkin-subtitle[b-a9zkxnn8nd] {
        font-size: 16px;
    }

    .walkin-cta[b-a9zkxnn8nd] {
        font-size: 18px;
    }
}

/* Non-Approved Invitation Modal */
.non-approved-modal-overlay[b-a9zkxnn8nd] {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 16px 0 16px 16px;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1100;
}

.non-approved-modal[b-a9zkxnn8nd] {
    width: 100%;
    max-width: 800px;
    min-height: 300px;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    animation: nonApprovedSlideIn-b-a9zkxnn8nd 0.3s ease forwards;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

@keyframes nonApprovedSlideIn-b-a9zkxnn8nd {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.non-approved-modal-content[b-a9zkxnn8nd] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    padding-left: 40px;
    box-sizing: border-box;
}

.non-approved-title[b-a9zkxnn8nd] {
    margin: 0;
    color: #1A3B6A;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
}

.non-approved-details[b-a9zkxnn8nd] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.non-approved-detail-item[b-a9zkxnn8nd] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.non-approved-detail-label[b-a9zkxnn8nd] {
    font-weight: 600;
    color: #CCCCCC;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
}

.non-approved-detail-value[b-a9zkxnn8nd] {
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.non-approved-message[b-a9zkxnn8nd] {
    margin-top: 8px;
    padding: 16px;
    background-color: #F5F5F5;
    border-radius: 8px;
    border-left: 4px solid #1A3B6A;
}

.non-approved-message-text[b-a9zkxnn8nd] {
    margin: 0;
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.5;
}

.non-approved-close-button[b-a9zkxnn8nd] {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #666666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.non-approved-close-button:hover[b-a9zkxnn8nd] {
    background-color: rgba(26, 59, 106, 0.1);
    color: #1A3B6A;
}

.non-approved-close-button svg[b-a9zkxnn8nd] {
    width: 18px;
    height: 18px;
}

@media (max-width: 767px) {
    .non-approved-modal[b-a9zkxnn8nd] {
        height: auto;
        min-height: 300px;
        max-width: 50%;
    }

    .non-approved-title[b-a9zkxnn8nd] {
        font-size: 20px;
    }

    .non-approved-modal-content[b-a9zkxnn8nd] {
        padding: 20px;
        padding-left: 40px;
        gap: 20px;
    }

    .non-approved-detail-label[b-a9zkxnn8nd] {
        font-size: 13px;
    }

    .non-approved-detail-value[b-a9zkxnn8nd] {
        font-size: 15px;
    }

    .non-approved-message-text[b-a9zkxnn8nd] {
        font-size: 14px;
    }
}

/* Confirmation Modal */
.confirmation-modal-overlay[b-a9zkxnn8nd] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1200;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn-b-a9zkxnn8nd 0.3s ease;
}

.confirmation-modal[b-a9zkxnn8nd] {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    animation: slideInUp-b-a9zkxnn8nd 0.3s ease;
}

@keyframes slideInUp-b-a9zkxnn8nd {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.confirmation-modal-content[b-a9zkxnn8nd] {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.confirmation-message[b-a9zkxnn8nd] {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

.confirmation-buttons[b-a9zkxnn8nd] {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.confirmation-cancel-button[b-a9zkxnn8nd] {
    padding: 12px 24px;
    background-color: #F5F5F5;
    color: #333333;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 100px;
}

.confirmation-cancel-button:hover[b-a9zkxnn8nd] {
    background-color: #E0E0E0;
    border-color: #CCCCCC;
}

.confirmation-confirm-button[b-a9zkxnn8nd] {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
    color: #FFFFFF;
}

.confirmation-confirm-button.allow-confirm[b-a9zkxnn8nd] {
    background-color: #1A3B6A;
}

.confirmation-confirm-button.allow-confirm:hover[b-a9zkxnn8nd] {
    background-color: #153055;
}

.confirmation-confirm-button.allow-confirm:active[b-a9zkxnn8nd] {
    background-color: #0f2340;
}

.confirmation-confirm-button.reject-confirm[b-a9zkxnn8nd] {
    background-color: #DC3545;
}

.confirmation-confirm-button.reject-confirm:hover[b-a9zkxnn8nd] {
    background-color: #C82333;
}

.confirmation-confirm-button.reject-confirm:active[b-a9zkxnn8nd] {
    background-color: #BD2130;
}

/* Responsive Confirmation Modal */
@media (max-width: 767px) {
    .confirmation-modal[b-a9zkxnn8nd] {
        width: 95%;
        max-width: none;
    }

    .confirmation-modal-content[b-a9zkxnn8nd] {
        padding: 24px;
        gap: 20px;
    }

    .confirmation-message[b-a9zkxnn8nd] {
        font-size: 16px;
    }

    .confirmation-buttons[b-a9zkxnn8nd] {
        flex-direction: column-reverse;
        width: 100%;
    }

    .confirmation-cancel-button[b-a9zkxnn8nd],
    .confirmation-confirm-button[b-a9zkxnn8nd] {
        width: 100%;
        min-width: 0;
    }
}

/* Reschedule Modal Styles */
.reschedule-modal-overlay[b-a9zkxnn8nd] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1200;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn-b-a9zkxnn8nd 0.3s ease;
}

.reschedule-modal[b-a9zkxnn8nd] {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 600px;
    animation: slideInUp-b-a9zkxnn8nd 0.3s ease;
}

.reschedule-modal-content[b-a9zkxnn8nd] {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.reschedule-modal-title[b-a9zkxnn8nd] {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
}

.reschedule-modal-message[b-a9zkxnn8nd] {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
    line-height: 1.5;
}

.reschedule-date-fields[b-a9zkxnn8nd] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reschedule-date-field[b-a9zkxnn8nd] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reschedule-label[b-a9zkxnn8nd] {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    font-family: 'Ubuntu', sans-serif;
}

.reschedule-date-input[b-a9zkxnn8nd] {
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    background-color: #FFFFFF;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    color: #333333;
    outline: none;
    transition: border-color 0.2s ease;
}

.reschedule-date-input:focus[b-a9zkxnn8nd] {
    border-color: #1A3B6A;
    box-shadow: 0 0 0 3px rgba(26, 59, 106, 0.1);
}

.reschedule-buttons[b-a9zkxnn8nd] {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.reschedule-cancel-button[b-a9zkxnn8nd] {
    padding: 12px 24px;
    background-color: #F5F5F5;
    color: #333333;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.reschedule-cancel-button:hover[b-a9zkxnn8nd] {
    background-color: #E8E8E8;
}

.reschedule-submit-button[b-a9zkxnn8nd] {
    padding: 12px 24px;
    background-color: #1A3B6A;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.reschedule-submit-button:hover[b-a9zkxnn8nd] {
    background-color: #153055;
}

.year-select[b-a9zkxnn8nd] {
    background: #001f57;
    color: #B8B8B8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 20px;
    height: 42px;
    background-color: #CCCCCC;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(20, 20, 20, 1);
    white-space: nowrap;
    min-width: 120px;
    transition: background-color 0.2s ease;
}

.reschedule-submit-button:active[b-a9zkxnn8nd] {
    background-color: #0f2340;
}

@media (max-width: 768px) {
    .reschedule-modal[b-a9zkxnn8nd] {
        width: 95%;
        max-width: none;
    }

    .reschedule-modal-content[b-a9zkxnn8nd] {
        padding: 24px;
        gap: 20px;
    }

    .reschedule-modal-title[b-a9zkxnn8nd] {
        font-size: 18px;
    }

    .reschedule-modal-message[b-a9zkxnn8nd] {
        font-size: 14px;
    }

    .reschedule-buttons[b-a9zkxnn8nd] {
        flex-direction: column-reverse;
        width: 100%;
    }

    .reschedule-cancel-button[b-a9zkxnn8nd],
    .reschedule-submit-button[b-a9zkxnn8nd] {
        width: 100%;
        min-width: 0;
    }
}

/* /Pages/Invitation.razor.rz.scp.css */
.visitations-card[b-mh1pejm7b8] {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 18px 18px 12px 18px;
}

/* Header right-side profile (next to \"My Invitations\") */
.invitation-header-right[b-mh1pejm7b8] {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.invitation-user-profile[b-mh1pejm7b8] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.invitation-avatar[b-mh1pejm7b8] {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid #e6e6e6;
    flex-shrink: 0;
}

.invitation-user-meta[b-mh1pejm7b8] {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: 0;
}

.invitation-user-name[b-mh1pejm7b8] {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px;
}

.invitation-user-email[b-mh1pejm7b8] {
    font-size: 12px;
    font-weight: 400;
    color: rgba(17, 24, 39, 0.65);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px;
}
/*.invitation-header {
    background-color: #FFFFFF;
}*/
.invitation-content[b-mh1pejm7b8] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #fbfaf6fa;
    border-radius: 16px;
    padding: 20px 20px;
    background-color: rgba(246, 246, 246, 1);
}
/* Stat cards (between header and Visitations table) */
.invitation-stats[b-mh1pejm7b8] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 10px 0 18px 0;
}

.stat-card[b-mh1pejm7b8] {
    --stat-accent: #111827;
    --stat-accent-bg: rgba(17, 24, 39, 0.08);

    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 18px 22px;
    min-height: 128px;
}

/* subtle contour/wave background */
.stat-card[b-mh1pejm7b8]::after {
    content: "";
    position: absolute;
    right: -10px;
    bottom: -18px;
    width: 62%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    opacity: 0.18;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='240' viewBox='0 0 520 240'%3E%3Cg fill='none' stroke='%23cfd4dc' stroke-width='3'%3E%3Cpath d='M140 220c70-60 140-60 210 0s140 60 210 0'/%3E%3Cpath d='M120 190c80-70 160-70 240 0s160 70 240 0'/%3E%3Cpath d='M100 160c90-80 180-80 270 0s180 80 270 0'/%3E%3Cpath d='M80 130c100-90 200-90 300 0s200 90 300 0'/%3E%3Cpath d='M60 100c110-100 220-100 330 0s220 100 330 0'/%3E%3C/g%3E%3C/svg%3E");
}

.stat-card__top[b-mh1pejm7b8] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.stat-card__title[b-mh1pejm7b8] {
    font-size: 20px;
    font-weight: 500;
    color: #111827;
    letter-spacing: -0.2px;
}

.stat-card__value[b-mh1pejm7b8] {
    margin-top: 18px;
    font-size: 44px;
    font-weight: 700;
    color: #111827;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.stat-card__icon[b-mh1pejm7b8] {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--stat-accent-bg);
    color: var(--stat-accent);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.stat-card--orange[b-mh1pejm7b8] {
    --stat-accent: #df812f;
    --stat-accent-bg: rgba(223, 129, 47, 0.10);
}

.stat-card--blue[b-mh1pejm7b8] {
    --stat-accent: #007aff;
    --stat-accent-bg: rgba(0, 122, 255, 0.10);
}

.stat-card--green[b-mh1pejm7b8] {
    --stat-accent: #34c759;
    --stat-accent-bg: rgba(52, 199, 89, 0.10);
}

.visitations-topbar[b-mh1pejm7b8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.visitations-title[b-mh1pejm7b8] {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

.visitations-controls[b-mh1pejm7b8] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    row-gap: 10px;
    flex-wrap: wrap;
    flex: 1 1 auto;
    margin-left: auto;
    padding-right: 12px;
}

/* Search */
.search-box[b-mh1pejm7b8] {
    position: relative;
    width: 220px;
    max-width: 100%;
}

.search-icon[b-mh1pejm7b8] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa0a6;
    pointer-events: none;
}

.search-input[b-mh1pejm7b8] {
    width: 100%;
    height: 44px;
    padding: 10px 14px 10px 40px;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 14px;
    outline: none;
}

.search-input[b-mh1pejm7b8]::placeholder {
    color: #9aa0a6;
}

.year-select[b-mh1pejm7b8] {
    height: 44px;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    padding: 10px 14px;
    background: #f1f2f4;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    min-width: 140px;
}

.year-select:focus[b-mh1pejm7b8] {
    border-color: rgba(0, 31, 87, 0.7);
    box-shadow: 0 0 0 3px rgba(0, 31, 87, 0.10);
}

.search-input:focus[b-mh1pejm7b8] {
    border-color: rgba(0, 31, 87, 0.7);
    box-shadow: 0 0 0 3px rgba(0, 31, 87, 0.10);
}

.search-suggestions[b-mh1pejm7b8] {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    overflow: hidden;
    z-index: 30;
    max-height: 320px;
    overflow-y: auto;
}

.search-suggestion-item[b-mh1pejm7b8] {
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    padding: 12px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.search-suggestion-item:hover[b-mh1pejm7b8],
.search-suggestion-item:focus[b-mh1pejm7b8] {
    background: rgba(0, 31, 87, 0.06);
    outline: none;
}

.search-suggestion-main[b-mh1pejm7b8] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.search-suggestion-inv[b-mh1pejm7b8] {
    font-weight: 700;
    color: #001f57;
    white-space: nowrap;
}

.search-suggestion-name[b-mh1pejm7b8] {
    font-weight: 500;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.search-suggestion-meta[b-mh1pejm7b8] {
    font-size: 12px;
    color: rgba(17, 24, 39, 0.65);
    white-space: nowrap;
}

.search-suggestion-content[b-mh1pejm7b8] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
}

.search-suggestion-plate[b-mh1pejm7b8] {
    font-size: 12px;
    color: rgba(17, 24, 39, 0.75);
}

.search-suggestion-plate[b-mh1pejm7b8]::before {
    content: '';
}

/* New suggestion-item layout (3-line card), aligned with Dashboard's typeahead. */
.suggestion-item[b-mh1pejm7b8] {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: background-color 0.15s ease;
}

.suggestion-item:last-child[b-mh1pejm7b8] {
    border-bottom: none;
}

.suggestion-item:hover[b-mh1pejm7b8],
.suggestion-item.highlighted[b-mh1pejm7b8] {
    background: rgba(0, 31, 87, 0.06);
}

.suggestion-primary[b-mh1pejm7b8] {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suggestion-secondary[b-mh1pejm7b8] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 12px;
}

.suggestion-inv-no[b-mh1pejm7b8] {
    font-weight: 700;
    color: #001f57;
}

.suggestion-date[b-mh1pejm7b8] {
    color: rgba(17, 24, 39, 0.65);
}

.suggestion-tertiary[b-mh1pejm7b8] {
    font-size: 12px;
    color: rgba(17, 24, 39, 0.75);
    display: flex;
    gap: 4px;
}

.suggestion-plate-label[b-mh1pejm7b8] {
    font-weight: 600;
}

.suggestion-plate-list[b-mh1pejm7b8] {
    color: rgba(17, 24, 39, 0.85);
}

/* Dropdowns (UI only) */
.visitations-dropdown[b-mh1pejm7b8] {
    position: relative;
    outline: none;
    /*margin-left: 50px;*/
}

.filters-btn[b-mh1pejm7b8],
.export-btn[b-mh1pejm7b8] {
    height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    user-select: none;
}

.caret-icon[b-mh1pejm7b8] {
    flex-shrink: 0;
}

.filters-btn[b-mh1pejm7b8] {
    background: #f1f2f4;
    color: #1a1a1a;
    border-color: #e2e2e2;
}

.filters-btn:hover[b-mh1pejm7b8] {
    background: #e9eaee;
}

.export-btn[b-mh1pejm7b8] {
    background: #001f57;
    color: #ffffff;
}

.export-btn:hover[b-mh1pejm7b8] {
    background: #001a4a;
}

.dropdown-menu[b-mh1pejm7b8] {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    width: 190px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    overflow: hidden;
    z-index: 20;
}

/* Pure CSS open on focus/keyboard */
.visitations-dropdown:focus-within .dropdown-menu[b-mh1pejm7b8] {
    display: block;
}

.dropdown-item[b-mh1pejm7b8] {
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    padding: 12px 14px;
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
}

.dropdown-item:hover[b-mh1pejm7b8],
.dropdown-item:focus[b-mh1pejm7b8] {
    background: rgba(0, 31, 87, 0.06);
    outline: none;
}

/* Table */
.visitations-table-wrapper[b-mh1pejm7b8] {
    border-top: 1px solid #efefef;
}

.visitations-table[b-mh1pejm7b8] {
    width: 100%;
    border-collapse: collapse;
}

.visitations-table thead th[b-mh1pejm7b8] {
    padding: 14px 12px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: #9aa0a6;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.visitations-table tbody td[b-mh1pejm7b8] {
    padding: 16px 12px;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
    color: #1a1a1a;
    vertical-align: middle;
}

.visitations-table tbody td:last-child[b-mh1pejm7b8] {
    text-align: right;
    white-space: nowrap;
}

.visitations-table tbody tr:hover[b-mh1pejm7b8] {
    background: #fafafa;
}

.invitation-id[b-mh1pejm7b8] {
    color: #001f57;
    font-weight: 600;
}

.table-state[b-mh1pejm7b8] {
    text-align: center;
    padding: 26px 12px;
    color: #6b7280;
    font-size: 14px;
}

.table-state-error[b-mh1pejm7b8] {
    color: #b91c1c;
}

/* Status pills */
.status-pill[b-mh1pejm7b8] {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid transparent;
    line-height: 1;
}

.status-pill.status-completed[b-mh1pejm7b8] {
    background: rgba(52, 199, 89, 0.12);
    color: rgba(52, 199, 89, 1);
    border-color: rgba(52, 199, 89, 0.45);
}

.status-pill.status-pending[b-mh1pejm7b8] {
    background: rgba(255, 149, 0, 0.12);
    color: rgba(255, 149, 0, 1); 
    border-color: rgba(255, 149, 0, 0.45);
}

    .status-pill.status-approved[b-mh1pejm7b8] {
        background-color: rgba(52, 199, 89, 0.12);
        color: rgba(52, 199, 89, 1);
        border-color: rgba(82, 198, 82, 1);
    }

.status-pill.status-rejected[b-mh1pejm7b8] {
    background: rgba(220, 53, 69, 0.12);
    color: rgba(220, 53, 69, 1);
    border-color: rgba(220, 53, 69, 0.35);
}

    .status-pill.status-cancelled[b-mh1pejm7b8] {
        background: rgba(245, 31, 0, 0.12);
        color: rgba(52, 199, 89, 1);
        border-color: rgba(82, 198, 82, 1);
    }

    .status-pill.status-Unattended[b-mh1pejm7b8] {
        background: rgba(245, 31, 0, 0.12);
        color: rgba(52, 199, 89, 1);
        border-color: rgba(82, 198, 82, 1);
    }


/*.status-pill.status-cancelled,*/
.status-pill.status-expired[b-mh1pejm7b8],
.status-pill.status-checkedin[b-mh1pejm7b8],
.status-pill.status-default[b-mh1pejm7b8] {
    background: rgba(139, 139, 139, 0.12);
    color: rgba(139, 139, 139, 1);
    border-color: rgba(139, 139, 139, 0.35);
}

/* Walk-in badge */
.walkin-badge[b-mh1pejm7b8] {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    /*margin-left: 8px;*/
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    background: rgba(0, 122, 255, 0.08);
    color: #007aff;
    border: 1px solid rgba(0, 122, 255, 0.35);
}

/* Action icon */
.action-icon-btn[b-mh1pejm7b8] {
    width: 36px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 31, 87, 0.10);
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    cursor: pointer;
    color: #1a1a1a;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.action-icon-btn-qrcode[b-mh1pejm7b8] {
    width: 150px;
    height: 32px;
    margin-left: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /*background: rgba(0, 31, 87, 0.10);*/
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    cursor: pointer;
    /*color: #1a1a1a;*/
    transition: background-color 0.15s ease, border-color 0.15s ease;
    background-color: #1A3B6A;
    color: #FFFFFF;
}

.action-icon-btn-passimage[b-mh1pejm7b8] {
    width: 120px;
    height: 20px;
    margin-left: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
    background-color: #0d6e49;
    color: #FFFFFF;
}

.action-icon-btn:hover[b-mh1pejm7b8] {
    background: #f5f5f5;
    border-color: rgba(0, 31, 87, 0.35);
}

.action-icon-btn:focus[b-mh1pejm7b8] {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 31, 87, 0.10);
}

/* Pagination (UI only) */
.visitations-pagination[b-mh1pejm7b8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 0 6px 0;
}

.pagination-btn[b-mh1pejm7b8] {
    height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: none;
    border-radius: 10px;
    background: #001f57;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.15s ease, opacity 0.15s ease;
}

.pagination-btn:hover:not(:disabled)[b-mh1pejm7b8] {
    background: #001a4a;
}

.pagination-btn:disabled[b-mh1pejm7b8] {
    opacity: 0.45;
    cursor: not-allowed;
}

.pagination-btn-icon[b-mh1pejm7b8] {
    font-size: 16px;
    line-height: 1;
}

.pagination-center[b-mh1pejm7b8] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #1a1a1a;
}

.pagination-pages[b-mh1pejm7b8] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
    flex-wrap: wrap;
}

.pagination-page-btn[b-mh1pejm7b8] {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.pagination-page-btn:hover[b-mh1pejm7b8] {
    background: rgba(0, 31, 87, 0.06);
    border-color: rgba(0, 31, 87, 0.25);
}

.pagination-page-btn.active[b-mh1pejm7b8] {
    background: #001f57;
    border-color: #001f57;
    color: #ffffff;
}

.page-number[b-mh1pejm7b8] {
    min-width: 30px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    background: #f5f7ff;
    font-weight: 600;
}

#th-action[b-mh1pejm7b8] {
    text-align: center;
}
/* QR modal */
. /*qr-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.qr-modal {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
    max-width: 420px;
    width: 100%;
    padding: 18px 20px 20px 20px;
}

.qr-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.qr-modal-header h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.qr-modal-close {
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    color: #6b7280;
}

.qr-modal-close:hover {
    color: #111827;
}

.qr-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 4px;
}

.qr-modal-image {
    max-width: 260px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}
*/
/* Responsive */
@media (max-width: 768px)[b-mh1pejm7b8] {
    .invitation-user-email {
        display: none;
    }

    .invitation-stats[b-mh1pejm7b8] {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .visitations-controls[b-mh1pejm7b8] {
        width: 100%;
        justify-content: stretch;
        padding-right: 0;
    }

    .search-box[b-mh1pejm7b8] {
        width: 100%;
    }

    .filters-btn[b-mh1pejm7b8],
    .export-btn[b-mh1pejm7b8] {
        width: 100%;
        justify-content: space-between;
    }

    .visitations-pagination[b-mh1pejm7b8] {
        flex-direction: column;
        align-items: stretch;
    }

    .pagination-btn[b-mh1pejm7b8] {
        width: 100%;
        justify-content: center;
    }

    .pagination-center[b-mh1pejm7b8] {
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .invitation-stats[b-mh1pejm7b8] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* /Pages/LateExit.razor.rz.scp.css */
/* Page shell (ported from GateOperations layout) */
.late-exit-container[b-rikccu0uem] {
    width: 100%;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #F6F8FB;
    border-radius: 16px;
}

    .late-exit-container[b-rikccu0uem][b-rikccu0uem] {
        background-color: rgba(246, 246, 246, 1);
    }

    .late-exit-card[b-rikccu0uem] {
        background: #FFFFFF;
        border-radius: 12px;
        padding: 24px;
        border: 1px solid rgba(224, 224, 224, 0.9);
        box-shadow: 0 10px 24px rgba(15, 35, 64, 0.12), 0 2px 6px rgba(15, 35, 64, 0.08);
        /*position: relative;*/
        overflow: hidden;
    }

.late-exit-card[b-rikccu0uem]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(26, 59, 106, 1), rgba(26, 59, 106, 0.25));
}

.late-exit-card-header[b-rikccu0uem] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding-top: 6px; /* offsets the accent bar */
    margin-bottom: 18px;
}

.late-exit-subtitle[b-rikccu0uem] {
    margin: 0;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.4;
    text-align: right;
    max-width: 520px;
}

.late-exit-search-input[b-rikccu0uem] {
    max-width: none;
    flex: 1;
}

.late-exit-card-main[b-rikccu0uem] {
    flex: 1;
    min-width: 0;
}

.late-exit-badge[b-rikccu0uem] {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    background: rgba(220, 53, 69, 0.12);
    color: #a71d2a;
    vertical-align: middle;
}

.late-exit-meta[b-rikccu0uem] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 10px;
    font-size: 13px;
    color: #555;
    font-family: 'Ubuntu', sans-serif;
}

.late-exit-pagination[b-rikccu0uem] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding-top: 6px; /* offsets the accent bar */
    border-top: 1px solid #E8E8E8;
}

.pagination-button[b-rikccu0uem] {
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 14px;
    border: none;
    border-radius: 10px;
    background: #001f57;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.15s ease, opacity 0.15s ease;
}

.pagination-button:disabled[b-rikccu0uem] {
    opacity: 0.45;
    cursor: not-allowed;
}

.pagination-info[b-rikccu0uem] {
    font-size: 14px;
    color: #1a1a1a;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
}

.late-exit-modal-overlay[b-rikccu0uem] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.late-exit-modal[b-rikccu0uem] {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.late-exit-modal-content[b-rikccu0uem] {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.late-exit-modal-title[b-rikccu0uem] {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    font-family: 'Ubuntu', sans-serif;
}

.late-exit-modal-guest[b-rikccu0uem] {
    margin: 0;
    font-size: 14px;
    color: #666;
    font-family: 'Ubuntu', sans-serif;
}

.late-exit-label[b-rikccu0uem] {
    font-size: 13px;
    font-weight: 500;
    color: #444;
    font-family: 'Ubuntu', sans-serif;
}

.late-exit-textarea[b-rikccu0uem] {
    width: 100%;
    padding: 12px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    resize: vertical;
    min-height: 100px;
}

.late-exit-textarea:focus[b-rikccu0uem] {
    outline: none;
    border-color: #1A3B6A;
    box-shadow: 0 0 0 3px rgba(26, 59, 106, 0.12);
}

.late-exit-validation[b-rikccu0uem] {
    margin: 0;
    font-size: 13px;
    color: #DC3545;
    font-family: 'Ubuntu', sans-serif;
}

.invitation-card[b-rikccu0uem] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

@media (max-width: 640px) {
    .invitation-card[b-rikccu0uem] {
        flex-direction: column;
    }
}

/* Search controls (match OnSiteGateOperations pill search look) */
.search-container[b-rikccu0uem] {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: center;
}

.search-input[b-rikccu0uem] {
    width: 100%;
    padding: 10px 12px 10px 12px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    font-size: 13px;
    color: #111827;
    background-color: #f9fafb;
}

.search-input[b-rikccu0uem]::placeholder {
    color: #9ca3af;
}

.search-button[b-rikccu0uem] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
    background: #1f2937;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.15);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.search-button:hover[b-rikccu0uem] {
    background: #111827;
    transform: translateY(-1px);
}

.search-button:active[b-rikccu0uem] {
    background: #0f2340;
}

/* OnSiteGateOperations row/table styles (ported to keep LateExit visually consistent) */
.onsite-gate-visitor-list[b-rikccu0uem] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.onsite-gate-visitor-row[b-rikccu0uem] {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.3fr) auto;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    transition: background-color 0.12s ease;
}

.onsite-gate-visitor-row:hover[b-rikccu0uem] {
    background-color: #f9fafb;
}

.onsite-gate-visitor-main[b-rikccu0uem] {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.onsite-gate-avatar[b-rikccu0uem] {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}

.onsite-gate-visitor-text[b-rikccu0uem] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.onsite-gate-visitor-name[b-rikccu0uem] {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
}

.onsite-gate-visitor-meta[b-rikccu0uem] {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
}

.onsite-gate-dot[b-rikccu0uem] {
    font-size: 10px;
}

.onsite-gate-visitor-info[b-rikccu0uem] {
    text-align: right;
    font-size: 12px;
    color: #6b7280;
}

.onsite-gate-visitor-time[b-rikccu0uem] {
    font-weight: 500;
    color: #111827;
}

.onsite-gate-visitor-counts[b-rikccu0uem] {
    margin-top: 2px;
}

.onsite-gate-visitor-status[b-rikccu0uem] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.onsite-gate-status-pill[b-rikccu0uem] {
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid transparent;
    white-space: nowrap;
}

/* LateExit "Past expected departure" pill */
.onsite-gate-status-lateexit[b-rikccu0uem] {
    background-color: rgba(220, 53, 69, 0.12);
    color: #a71d2a;
    border-color: rgba(220, 53, 69, 0.35);
}

.onsite-gate-status-qractive[b-rikccu0uem] {
    background-color: rgba(16, 185, 129, 0.15);
    color: #065f46;
    border-color: rgba(16, 185, 129, 0.4);
}

.onsite-gate-status-qrexpired[b-rikccu0uem] {
    background-color: rgba(245, 158, 11, 0.16);
    color: #92400e;
    border-color: rgba(245, 158, 11, 0.38);
}

/* Action button inside each row */
.walkin-button[b-rikccu0uem] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background-color: #1f2937;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.15);
    transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
    white-space: nowrap;
}

.walkin-button:hover[b-rikccu0uem] {
    background-color: #111827;
    transform: translateY(-1px);
}

.walkin-button:active[b-rikccu0uem] {
    background-color: #0f2340;
}


.confirmation-cancel-button[b-rikccu0uem] {
    min-width: 120px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    background-color: #F5F5F5;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.confirmation-cancel-button:hover:not(:disabled)[b-rikccu0uem] {
    background-color: #E0E0E0;
    border-color: #CCCCCC;
}

.confirmation-cancel-button:disabled[b-rikccu0uem] {
    opacity: 0.6;
    cursor: not-allowed;
}

.confirmation-confirm-button.allow-confirm[b-rikccu0uem] {
    min-width: 120px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #1A3B6A;
    color: #FFFFFF;
}

.confirmation-confirm-button.allow-confirm:hover:not(:disabled)[b-rikccu0uem] {
    background-color: #003080;
}

.confirmation-confirm-button.allow-confirm:active:not(:disabled)[b-rikccu0uem] {
    background-color: #001f57;
}

.confirmation-confirm-button.allow-confirm:disabled[b-rikccu0uem] {
    opacity: 0.6;
    cursor: not-allowed;
}

.action-icon-btn-qrcode[b-rikccu0uem] {
    min-width: 130px;
    height: 32px;
    padding: 0 12px;
    margin-left: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /*background: rgba(0, 31, 87, 0.10);*/
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    cursor: pointer;
    /*color: #1a1a1a;*/
    transition: background-color 0.15s ease, border-color 0.15s ease;
    background-color: #1A3B6A;
    color: #FFFFFF;
}


@media (max-width: 1024px) {
    .onsite-gate-visitor-row[b-rikccu0uem] {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
        row-gap: 6px;
    }

    .onsite-gate-visitor-status[b-rikccu0uem] {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .onsite-gate-visitor-row[b-rikccu0uem] {
        grid-template-columns: minmax(0, 1.9fr) minmax(0, 1.6fr);
    }
}

@media (max-width: 600px) {
    .onsite-gate-visitor-row[b-rikccu0uem] {
        grid-template-columns: minmax(0, 1fr);
        align-items: flex-start;
    }

    .onsite-gate-visitor-info[b-rikccu0uem] {
        text-align: left;
        margin-top: 4px;
    }

    .onsite-gate-visitor-status[b-rikccu0uem] {
        justify-content: flex-start;
        margin-top: 4px;
    }
}

/* Late exit shell — responsive (ported from GateOperations) */
@media (max-width: 767px) {
    .late-exit-container[b-rikccu0uem] {
        padding: 16px;
    }

    .late-exit-card[b-rikccu0uem] {
        padding: 18px;
    }

    .late-exit-card-header[b-rikccu0uem] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 14px;
    }

    .late-exit-subtitle[b-rikccu0uem] {
        text-align: left;
        max-width: none;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .late-exit-container[b-rikccu0uem] {
        padding: 20px;
    }

    .late-exit-card[b-rikccu0uem] {
        padding: 22px;
    }
}

@media (min-width: 1440px) {
    .late-exit-container[b-rikccu0uem] {
        padding: 32px;
    }
}
/* /Pages/LateExitHistory.razor.rz.scp.css */
.late-exit-history-container[b-og652rn3ks] {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-og652rn3ks] {
    margin-bottom: 1.5rem;
}

.page-title[b-og652rn3ks] {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
}

.page-subtitle[b-og652rn3ks] {
    margin: 0.4rem 0 0;
    color: #666;
}

.invitations-controls[b-og652rn3ks] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
}

.search-container[b-og652rn3ks] {
    position: relative;
    flex: 1;
}

.search-icon[b-og652rn3ks] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.search-input[b-og652rn3ks] {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.4rem;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.search-btn[b-og652rn3ks] {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border: 1px solid #1A3B6A;
    background: #1A3B6A;
    color: #fff;
    cursor: pointer;
}

.search-btn:disabled[b-og652rn3ks] {
    opacity: 0.65;
    cursor: not-allowed;
}

.table-container[b-og652rn3ks] {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.history-table[b-og652rn3ks] {
    width: 100%;
    border-collapse: collapse;
}

.history-table thead[b-og652rn3ks] {
    background: #f8f9fa;
}

.history-table th[b-og652rn3ks] {
    padding: 0.9rem;
    text-align: left;
    font-size: 0.82rem;
    text-transform: uppercase;
    color: #444;
    letter-spacing: 0.02em;
}

.history-table td[b-og652rn3ks] {
    padding: 0.9rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    vertical-align: top;
}

.history-table tbody tr:hover[b-og652rn3ks] {
    background: #fafafa;
}

.reason-cell[b-og652rn3ks] {
    max-width: 360px;
    white-space: normal;
    word-break: break-word;
}

.empty-row[b-og652rn3ks] {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.empty-row.error[b-og652rn3ks] {
    color: #c62828;
}

.pagination-container[b-og652rn3ks] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.pagination-btn[b-og652rn3ks] {
    padding: 0.45rem 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}

.pagination-btn:disabled[b-og652rn3ks] {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-label[b-og652rn3ks] {
    font-size: 0.9rem;
    color: #555;
}
/* /Pages/Login.razor.rz.scp.css */
.visitor-management-login-page-container[b-qp9e3hlmd7] {
    width: 100%;
    display: flex;
    min-height: 100vh;
    align-items: center;
    flex-direction: column;
}

.visitor-management-login-page-visitor-management-login-page[b-qp9e3hlmd7] {
    width: 100%;
    min-height: 100vh;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-end;
    padding-right: 50px;
    box-sizing: border-box;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 1);
}

.visitor-management-login-page-frame327[b-qp9e3hlmd7] {
    top: 0px;
    left: 0px;
    width: 750px;
    height: 100vh;
    display: flex;
    overflow: hidden;
    position: absolute;
    align-items: flex-start;
    flex-shrink: 0;
}

.visitor-management-login-page-nightrender2[b-qp9e3hlmd7] {
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    bottom: 0px;
    height: 100%;
    margin: auto;
    position: absolute;
    object-fit: cover;
    object-position: center;
}

.visitor-management-login-page-frame346[b-qp9e3hlmd7] {
    gap: 10px;
    bottom: 100px;
    left: 30px;
    width: 610px;
    height: 68px;
    display: flex;
    padding: 10px;
    position: absolute;
    align-items: center;
    flex-shrink: 0;
    border-radius: 12px;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.0010000000474974513);
}

.visitor-management-login-page-text1[b-qp9e3hlmd7] {
    color: rgba(255, 255, 255, 1);
    width: 590px;
    height: auto;
    font-size: 16px;
    font-style: Regular;
    text-align: left;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    line-height: normal;
    font-stretch: normal;
    text-decoration: none;
}

.visitor-management-login-page-group237744[b-qp9e3hlmd7] {
    width: 400px;
    height: auto;
    display: flex;
    position: relative;
    align-items: flex-start;
    flex-shrink: 1;
}

.visitor-management-login-page-frame1618868702[b-qp9e3hlmd7] {
    gap: 40px;
    top: 0px;
    left: 0px;
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
    flex-shrink: 0;
    flex-direction: column;
}

.visitor-management-login-page-lfzlogo231[b-qp9e3hlmd7] {
    width: 160px;
    height: 71px;
    object-fit: contain;
}

.visitor-management-login-page-frame1618868701[b-qp9e3hlmd7] {
    gap: 44px;
    width: 100%;
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-direction: column;
}

.visitor-management-login-page-frame1618868700[b-qp9e3hlmd7] {
    gap: 24px;
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-direction: column;
}

.visitor-management-login-page-email1[b-qp9e3hlmd7] {
    gap: 8px;
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.visitor-management-login-page-text2[b-qp9e3hlmd7] {
    color: rgba(20, 20, 20, 1);
    height: auto;
    font-size: 20px;
    align-self: stretch;
    font-style: Regular;
    text-align: left;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    line-height: normal;
    font-stretch: normal;
    text-decoration: none;
}

.visitor-management-login-page-email2[b-qp9e3hlmd7] {
    gap: 10px;
    width: 100%;
    height: 50px;
    display: flex;
    padding: 16px 12px;
    box-sizing: border-box;
    align-items: center;
    flex-shrink: 0;
    border-color: rgba(204, 204, 204, 1);
    border-style: solid;
    border-width: 0.5px;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 1);
}

.visitor-management-login-page-email-input[b-qp9e3hlmd7] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: rgba(20, 20, 20, 1);
    font-size: 16px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    padding: 0;
    margin: 0;
}

.visitor-management-login-page-email-input[b-qp9e3hlmd7]::placeholder {
    color: rgba(149, 149, 149, 1);
}

.visitor-management-login-page-text3[b-qp9e3hlmd7] {
    color: rgba(149, 149, 149, 1);
    height: auto;
    font-size: 16px;
    font-style: Regular;
    text-align: left;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    line-height: normal;
    font-stretch: normal;
    text-decoration: none;
}

.visitor-management-login-page-password1[b-qp9e3hlmd7] {
    gap: 8px;
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.visitor-management-login-page-text4[b-qp9e3hlmd7] {
    color: rgba(20, 20, 20, 1);
    height: auto;
    font-size: 20px;
    align-self: stretch;
    font-style: Regular;
    text-align: left;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    line-height: normal;
    font-stretch: normal;
    text-decoration: none;
}

.visitor-management-login-page-password2[b-qp9e3hlmd7] {
    gap: 10px;
    width: 100%;
    height: 50px;
    display: flex;
    padding: 16px 12px;
    box-sizing: border-box;
    align-items: center;
    flex-shrink: 0;
    border-color: rgba(204, 204, 204, 1);
    border-style: solid;
    border-width: 0.5px;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 1);
}

.visitor-management-login-page-password-input[b-qp9e3hlmd7] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: rgba(20, 20, 20, 1);
    font-size: 16px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    padding: 0;
    margin: 0;
}

.visitor-management-login-page-password-input[b-qp9e3hlmd7]::placeholder {
    color: rgba(149, 149, 149, 1);
}

.visitor-management-login-page-text5[b-qp9e3hlmd7] {
    color: rgba(149, 149, 149, 1);
    height: auto;
    font-size: 16px;
    font-style: Regular;
    text-align: left;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    line-height: normal;
    font-stretch: normal;
    text-decoration: none;
}

.visitor-management-login-page-viewoffslash[b-qp9e3hlmd7] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    flex-shrink: 0;
}

.visitor-management-login-page-viewoffslash:hover[b-qp9e3hlmd7] {
    opacity: 0.7;
}

.visitor-management-login-page-sign-in-button[b-qp9e3hlmd7] {
    gap: 10px;
    display: flex;
    padding: 16px 10px;
    align-self: stretch;
    box-sizing: border-box;
    align-items: center;
    flex-shrink: 0;
    border-radius: 16px;
    justify-content: center;
    background-color: rgba(26, 36, 85, 1);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.visitor-management-login-page-sign-in-button:hover[b-qp9e3hlmd7] {
    background-color: rgba(20, 28, 68, 1);
}

.visitor-management-login-page-text6[b-qp9e3hlmd7] {
    color: rgba(255, 255, 255, 1);
    height: auto;
    font-size: 20px;
    font-style: Medium;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    line-height: normal;
    font-stretch: normal;
    text-decoration: none;
}

/* Responsive Design - Mobile (< 768px) */
@media (max-width: 767px) {
    .visitor-management-login-page-container[b-qp9e3hlmd7] {
        overflow-y: auto;
        overflow-x: hidden;
        max-height: none;
    }

    .visitor-management-login-page-visitor-management-login-page[b-qp9e3hlmd7] {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        justify-content: flex-start;
        padding-right: 0;
        overflow-y: visible;
        overflow-x: hidden;
    }

    .visitor-management-login-page-frame327[b-qp9e3hlmd7] {
        width: 100%;
        height: 40vh;
        min-height: 250px;
        position: relative;
    }

    .visitor-management-login-page-frame346[b-qp9e3hlmd7] {
        bottom: 20px;
        left: 20px;
        right: 20px;
        width: auto;
        max-width: calc(100% - 40px);
    }

    .visitor-management-login-page-text1[b-qp9e3hlmd7] {
        width: 100%;
        font-size: 14px;
    }

    .visitor-management-login-page-group237744[b-qp9e3hlmd7] {
        top: auto;
        transform: none;
        right: auto;
        left: auto;
        width: 100%;
        position: relative;
        padding: 30px 20px;
        box-sizing: border-box;
        margin: 0;
    }

    .visitor-management-login-page-frame1618868702[b-qp9e3hlmd7] {
        gap: 30px;
        width: 100%;
        max-width: 100%;
    }

    .visitor-management-login-page-lfzlogo231[b-qp9e3hlmd7] {
        width: 140px;
        height: 62px;
    }

    .visitor-management-login-page-frame1618868701[b-qp9e3hlmd7] {
        gap: 32px;
        width: 100%;
    }

    .visitor-management-login-page-text2[b-qp9e3hlmd7],
    .visitor-management-login-page-text4[b-qp9e3hlmd7] {
        font-size: 18px;
    }

    .visitor-management-login-page-email-input[b-qp9e3hlmd7],
    .visitor-management-login-page-password-input[b-qp9e3hlmd7] {
        font-size: 14px;
    }

    .visitor-management-login-page-text6[b-qp9e3hlmd7] {
        font-size: 18px;
    }
}

/* Responsive Design - Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .visitor-management-login-page-frame327[b-qp9e3hlmd7] {
        width: 50%;
        max-width: 500px;
    }

    .visitor-management-login-page-frame346[b-qp9e3hlmd7] {
        width: calc(100% - 60px);
        max-width: 500px;
    }

    .visitor-management-login-page-text1[b-qp9e3hlmd7] {
        width: 100%;
        font-size: 15px;
    }

    .visitor-management-login-page-visitor-management-login-page[b-qp9e3hlmd7] {
        padding-right: 30px;
    }

    .visitor-management-login-page-group237744[b-qp9e3hlmd7] {
        width: 45%;
        min-width: 350px;
        max-width: 400px;
    }    .visitor-management-login-page-text2[b-qp9e3hlmd7],
    .visitor-management-login-page-text4[b-qp9e3hlmd7] {
        font-size: 19px;
    }
}/* Responsive Design - Large Desktop (> 1440px) */
@media (min-width: 1440px) {
    .visitor-management-login-page-frame327[b-qp9e3hlmd7] {
        width: 750px;
    }

    .visitor-management-login-page-visitor-management-login-page[b-qp9e3hlmd7] {
        padding-right: calc((100% - 1440px) / 2 + 50px);
    }

    .visitor-management-login-page-group237744[b-qp9e3hlmd7] {
        max-width: 400px;
    }
}
/* /Pages/Notifications.razor.rz.scp.css */
.notifications-page[b-5bvhhv2kca] {
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.notifications-header[b-5bvhhv2kca] {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.notifications-header h1[b-5bvhhv2kca] {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    color: #333;
}

.btn-back[b-5bvhhv2kca] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #1A3B6A;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.btn-back:hover[b-5bvhhv2kca] {
    background-color: #153055;
}

.btn-back:active[b-5bvhhv2kca] {
    background-color: #0f2340;
}

.btn-back:focus[b-5bvhhv2kca] {
    outline: 2px solid #1A3B6A;
    outline-offset: 2px;
}

.btn-back svg[b-5bvhhv2kca] {
    flex-shrink: 0;
}

.btn-back span[b-5bvhhv2kca] {
    line-height: 1;
}

.loading[b-5bvhhv2kca] {
    text-align: center;
    padding: 48px;
    color: #666;
    font-size: 16px;
}

.empty-state[b-5bvhhv2kca] {
    text-align: center;
    padding: 64px;
    color: #999;
}

.empty-state p[b-5bvhhv2kca] {
    font-size: 18px;
    margin: 0;
}

.notifications-list[b-5bvhhv2kca] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.notification-card[b-5bvhhv2kca] {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.notification-card:hover[b-5bvhhv2kca] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: #d0d0d0;
}

.notification-card.unread[b-5bvhhv2kca] {
    background-color: #f0f7ff;
    border-color: #b3d9ff;
}

.notification-header[b-5bvhhv2kca] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.notification-type[b-5bvhhv2kca] {
    font-size: 12px;
    font-weight: 600;
    color: #007bff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notification-time[b-5bvhhv2kca] {
    font-size: 12px;
    color: #999;
}

.notification-body[b-5bvhhv2kca] {
    margin-bottom: 12px;
}

.notification-body p[b-5bvhhv2kca] {
    margin: 0;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.notification-footer[b-5bvhhv2kca] {
    display: flex;
    justify-content: flex-end;
}

.btn[b-5bvhhv2kca] {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-primary[b-5bvhhv2kca] {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover[b-5bvhhv2kca] {
    background-color: #0056b3;
}

.btn-sm[b-5bvhhv2kca] {
    padding: 6px 12px;
    font-size: 13px;
}

.load-more[b-5bvhhv2kca] {
    text-align: center;
    margin-top: 32px;
    padding: 24px;
}

.load-more .btn[b-5bvhhv2kca] {
    min-width: 120px;
}
/* /Pages/OnSiteGateOperations.razor.rz.scp.css */
.onsite-gate-page[b-x0lx4ztgz5] {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 32px 32px;
    background-color: #f5f6fa;
    min-height: 100%;
}

.onsite-gate-header[b-x0lx4ztgz5] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.onsite-gate-title[b-x0lx4ztgz5] {
    font-size: 24px;
    font-weight: 600;
    color: #1b1f3b;
    margin: 0 0 4px;
}

.onsite-gate-subheader[b-x0lx4ztgz5] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #6b7280;
}

.onsite-gate-date[b-x0lx4ztgz5] {
    font-weight: 500;
}

.onsite-gate-shift-pill[b-x0lx4ztgz5] {
    padding: 4px 10px;
    border-radius: 999px;
    background-color: #f3f4ff;
    color: #4f46e5;
    font-size: 12px;
    font-weight: 500;
}

.onsite-gate-summary[b-x0lx4ztgz5] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.onsite-gate-card[b-x0lx4ztgz5] {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.onsite-gate-card-header[b-x0lx4ztgz5] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.onsite-gate-card-title[b-x0lx4ztgz5] {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    margin: 0;
}

.onsite-gate-card-icon[b-x0lx4ztgz5] {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #eef2ff;
}

.onsite-gate-card-icon-visitors[b-x0lx4ztgz5]::before {
    content: "👥";
}

.onsite-gate-card-icon-pending[b-x0lx4ztgz5]::before {
    content: "⏳";
}

.onsite-gate-card-icon-active[b-x0lx4ztgz5]::before {
    content: "✅";
}

.onsite-gate-card-icon-vehicles[b-x0lx4ztgz5]::before {
    content: "🚘";
}

.onsite-gate-card-body[b-x0lx4ztgz5] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.onsite-gate-card-value[b-x0lx4ztgz5] {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.onsite-gate-card-subtitle[b-x0lx4ztgz5] {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.onsite-gate-actions-row[b-x0lx4ztgz5] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.onsite-gate-primary-btn[b-x0lx4ztgz5],
.onsite-gate-secondary-btn[b-x0lx4ztgz5] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
}

.onsite-gate-primary-btn[b-x0lx4ztgz5] {
    background: #1f2937;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.2);
}

.onsite-gate-primary-btn:hover[b-x0lx4ztgz5] {
    background: #111827;
    transform: translateY(-1px);
}

.onsite-gate-primary-plus[b-x0lx4ztgz5] {
    font-size: 18px;
}

.onsite-gate-secondary-btn[b-x0lx4ztgz5] {
    background: #ffffff;
    color: #111827;
    border: 1px solid #e5e7eb;
}

.onsite-gate-secondary-btn:hover[b-x0lx4ztgz5] {
    background: #f9fafb;
}

.onsite-gate-secondary-icon[b-x0lx4ztgz5] {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 1px solid #9ca3af;
    position: relative;
}

.onsite-gate-secondary-icon[b-x0lx4ztgz5]::before,
.onsite-gate-secondary-icon[b-x0lx4ztgz5]::after {
    content: "";
    position: absolute;
    border-radius: 1px;
    background-color: #4b5563;
}

.onsite-gate-secondary-icon[b-x0lx4ztgz5]::before {
    left: 3px;
    right: 3px;
    top: 5px;
    height: 1px;
}

.onsite-gate-secondary-icon[b-x0lx4ztgz5]::after {
    left: 7px;
    top: 3px;
    bottom: 3px;
    width: 1px;
}

.onsite-gate-recent[b-x0lx4ztgz5] {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 20px 20px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
    border: 1px solid #e5e7eb;
}

.onsite-gate-recent-header[b-x0lx4ztgz5] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.onsite-gate-recent-title[b-x0lx4ztgz5] {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.onsite-gate-recent-viewall[b-x0lx4ztgz5] {
    border: none;
    background: transparent;
    color: #2563eb;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.onsite-gate-search[b-x0lx4ztgz5] {
    position: relative;
    margin-bottom: 16px;
}

.onsite-gate-search-icon[b-x0lx4ztgz5] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid #9ca3af;
}

.onsite-gate-search-icon[b-x0lx4ztgz5]::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 2px;
    background-color: #9ca3af;
    border-radius: 999px;
    right: -2px;
    bottom: -1px;
    transform: rotate(45deg);
}

.onsite-gate-search-input[b-x0lx4ztgz5] {
    width: 100%;
    padding: 10px 12px 10px 36px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    font-size: 13px;
    color: #111827;
    background-color: #f9fafb;
}

.onsite-gate-search-input[b-x0lx4ztgz5]::placeholder {
    color: #9ca3af;
}

.onsite-gate-visitor-list[b-x0lx4ztgz5] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.onsite-gate-visitor-row[b-x0lx4ztgz5] {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.3fr) auto;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    transition: background-color 0.12s ease;
}

.onsite-gate-visitor-row:hover[b-x0lx4ztgz5] {
    background-color: #f9fafb;
}

.onsite-gate-visitor-main[b-x0lx4ztgz5] {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.onsite-gate-avatar[b-x0lx4ztgz5] {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}

.onsite-gate-visitor-text[b-x0lx4ztgz5] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.onsite-gate-visitor-name[b-x0lx4ztgz5] {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
}

.onsite-gate-visitor-meta[b-x0lx4ztgz5] {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
}

.onsite-gate-dot[b-x0lx4ztgz5] {
    font-size: 10px;
}

.onsite-gate-visitor-info[b-x0lx4ztgz5] {
    text-align: right;
    font-size: 12px;
    color: #6b7280;
}

.onsite-gate-visitor-time[b-x0lx4ztgz5] {
    font-weight: 500;
    color: #111827;
}

.onsite-gate-visitor-counts[b-x0lx4ztgz5] {
    margin-top: 2px;
}

.onsite-gate-visitor-status[b-x0lx4ztgz5] {
    display: flex;
    justify-content: flex-end;
}

.onsite-gate-status-pill[b-x0lx4ztgz5] {
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid transparent;
}

.onsite-gate-status-pending[b-x0lx4ztgz5] {
    background-color: #fffbeb;
    color: #92400e;
    border-color: #fbbf24;
}

.onsite-gate-status-approved[b-x0lx4ztgz5] {
    background-color: #eff6ff;
    color: #1d4ed8;
    border-color: #60a5fa;
}

.onsite-gate-status-checkedin[b-x0lx4ztgz5] {
    background-color: #ecfdf3;
    color: #166534;
    border-color: #34d399;
}

/* Pagination - styled similar to Invitations page */
.onsite-gate-pagination[b-x0lx4ztgz5] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 0 6px 0;
}

.onsite-gate-page-btn[b-x0lx4ztgz5] {
    height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: none;
    border-radius: 10px;
    background: #001f57;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.15s ease, opacity 0.15s ease;
}

.onsite-gate-page-btn:hover:not(:disabled)[b-x0lx4ztgz5] {
    background: #001a4a;
}

.onsite-gate-page-btn:disabled[b-x0lx4ztgz5] {
    opacity: 0.45;
    cursor: not-allowed;
}

.onsite-gate-page-btn-icon[b-x0lx4ztgz5] {
    font-size: 16px;
    line-height: 1;
}

.onsite-gate-page-center[b-x0lx4ztgz5] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #1a1a1a;
}

.onsite-gate-page-number[b-x0lx4ztgz5] {
    min-width: 30px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    background: #f5f7ff;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .onsite-gate-summary[b-x0lx4ztgz5] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .onsite-gate-visitor-row[b-x0lx4ztgz5] {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
        row-gap: 6px;
    }

    .onsite-gate-visitor-status[b-x0lx4ztgz5] {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .onsite-gate-page[b-x0lx4ztgz5] {
        padding: 16px 16px 24px;
    }

    .onsite-gate-summary[b-x0lx4ztgz5] {
        grid-template-columns: 1fr 1fr;
    }

    .onsite-gate-actions-row[b-x0lx4ztgz5] {
        flex-direction: column;
        align-items: stretch;
    }

    .onsite-gate-visitor-row[b-x0lx4ztgz5] {
        grid-template-columns: minmax(0, 1.9fr) minmax(0, 1.6fr);
    }

    .onsite-gate-pagination[b-x0lx4ztgz5] {
        flex-direction: column;
        align-items: stretch;
    }

    .onsite-gate-page-btn[b-x0lx4ztgz5] {
        width: 100%;
        justify-content: center;
    }

    .onsite-gate-page-center[b-x0lx4ztgz5] {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .onsite-gate-summary[b-x0lx4ztgz5] {
        grid-template-columns: 1fr;
    }

    .onsite-gate-visitor-row[b-x0lx4ztgz5] {
        grid-template-columns: minmax(0, 1fr);
        align-items: flex-start;
    }

    .onsite-gate-visitor-info[b-x0lx4ztgz5] {
        text-align: left;
        margin-top: 4px;
    }

    .onsite-gate-visitor-status[b-x0lx4ztgz5] {
        justify-content: flex-start;
        margin-top: 4px;
    }
}

/* Match Gate Operations layout for consistency */
.gate-operations-container[b-x0lx4ztgz5] {
    width: 100%;
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.approved-invitations-header[b-x0lx4ztgz5] {
    color: #1A3B6A;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 24px 0;
    font-family: 'Ubuntu', sans-serif;
    text-align: left;
}

.onsite-gate-welcome[b-x0lx4ztgz5] {
    color: #555;
    font-size: 16px;
    margin: 0 0 32px 0;
    font-family: 'Ubuntu', sans-serif;
}

.onsite-gate-actions[b-x0lx4ztgz5] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.walkin-button[b-x0lx4ztgz5] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #0f2340;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.walkin-button:hover[b-x0lx4ztgz5] {
    background-color: #0c1b33;
}

.walkin-button:active[b-x0lx4ztgz5] {
    background-color: #0a152a;
}

.walkin-button svg[b-x0lx4ztgz5] {
    flex-shrink: 0;
}

.walkin-button span[b-x0lx4ztgz5] {
    line-height: 1;
}
/* /Pages/OtpVerification.razor.rz.scp.css */
.visitor-management-login-page-optional-container[b-ynumlq0aw1] {
    width: 100%;
    display: flex;
    overflow: hidden;
    min-height: 100vh;
    max-height: 100vh;
    align-items: center;
    flex-direction: column;
}

.visitor-management-login-page-optional-visitor-management-login-page-optional[b-ynumlq0aw1] {
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: flex-start;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 1);
}

.visitor-management-login-page-optional-frame327[b-ynumlq0aw1] {
    top: 0px;
    left: 0px;
    width: 750px;
    height: 100vh;
    display: flex;
    overflow: hidden;
    position: absolute;
    align-items: flex-start;
    flex-shrink: 0;
}

.visitor-management-login-page-optionalnightrender2[b-ynumlq0aw1] {
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    bottom: 0px;
    height: 100%;
    margin: auto;
    position: absolute;
    object-fit: cover;
    object-position: center;
}

.visitor-management-login-page-optional-frame346[b-ynumlq0aw1] {
    gap: 10px;
    bottom: 100px;
    left: 30px;
    width: 610px;
    height: 68px;
    display: flex;
    padding: 10px;
    position: absolute;
    align-items: center;
    flex-shrink: 0;
    border-radius: 12px;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.0010000000474974513);
}

.visitor-management-login-page-optional-text1[b-ynumlq0aw1] {
    color: rgba(255, 255, 255, 1);
    width: 590px;
    height: auto;
    font-size: 16px;
    font-style: Regular;
    text-align: left;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    line-height: normal;
    font-stretch: normal;
    text-decoration: none;
}

.visitor-management-login-page-optional-group237745[b-ynumlq0aw1] {
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
    width: 409px;
    min-width: 320px;
    max-width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    position: absolute;
    align-items: flex-start;
    flex-shrink: 1;
    overflow: visible;
    gap: 0;
}

.visitor-management-login-page-optional-frame32343318[b-ynumlq0aw1] {
    gap: 16px;
    top: 0px;
    left: 0px;
    display: flex;
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-width: 0;
    overflow: visible;
    margin-bottom: 24px;
}

.visitor-management-login-page-optional-text2[b-ynumlq0aw1] {
    color: rgba(20, 20, 20, 1);
    height: auto;
    font-size: 36px;
    align-self: stretch;
    font-style: Bold;
    text-align: left;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    line-height: normal;
    font-stretch: normal;
    text-decoration: none;
}

.visitor-management-login-page-optional-text3[b-ynumlq0aw1] {
    color: rgba(149, 149, 149, 1);
    height: auto;
    font-size: 16px;
    font-style: Regular;
    text-align: left;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    line-height: normal;
    font-stretch: normal;
    text-decoration: none;
}

.visitor-management-login-page-optional-text4[b-ynumlq0aw1] {
    font-weight: 400;
}

.visitor-management-login-page-optional-frame32343317[b-ynumlq0aw1] {
    gap: 8px;
    margin-top: 0;
    left: 0;
    display: flex;
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    overflow: visible;
    margin-bottom: 24px;
}

.visitor-management-login-page-optional-text6[b-ynumlq0aw1] {
    color: rgba(149, 149, 149, 1);
    height: auto;
    font-size: 16px;
    font-style: Regular;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    line-height: normal;
    font-stretch: normal;
    text-decoration: none;
}

.visitor-management-login-page-optional-frame32343315[b-ynumlq0aw1] {
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visitor-management-login-page-optional-text7[b-ynumlq0aw1] {
    color: rgba(71, 155, 194, 1);
    height: auto;
    font-size: 16px;
    font-style: Medium;
    text-align: left;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    line-height: normal;
    font-stretch: normal;
    text-decoration: underline;
    cursor: pointer;
}

.visitor-management-login-page-optional-text7:hover[b-ynumlq0aw1] {
    opacity: 0.8;
}

.visitor-management-login-page-optional-ellipse27[b-ynumlq0aw1] {
    width: 8px;
    height: 8px;
}

.visitor-management-login-page-optional-text8[b-ynumlq0aw1] {
    color: rgba(149, 149, 149, 1);
    height: auto;
    font-size: 14px;
    font-style: Bold;
    text-align: left;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    line-height: normal;
    font-stretch: normal;
    text-decoration: none;
}

.visitor-management-login-page-optional-number[b-ynumlq0aw1] {
    width: 100%;
    min-width: 280px;
    height: 50px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    gap: 15px;
    margin-top: 0;
    margin-bottom: 24px;
    flex-wrap: wrap;
    overflow: visible;
    clear: both;
}

.visitor-management-login-page-optional-number input:nth-child(1)[b-ynumlq0aw1],
.visitor-management-login-page-optional-number input:nth-child(2)[b-ynumlq0aw1],
.visitor-management-login-page-optional-number input:nth-child(3)[b-ynumlq0aw1],
.visitor-management-login-page-optional-number input:nth-child(4)[b-ynumlq0aw1] {
    position: relative;
    left: auto;
    flex: 0 0 auto;
    min-width: 50px;
}

.visitor-management-login-page-optional-frame32343314-empty[b-ynumlq0aw1],
.visitor-management-login-page-optional-frame32343314-filled[b-ynumlq0aw1] {
    width: 50px;
    height: 50px;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 16px;
    text-align: center;
    font-size: 20px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
}

/* Ensure OTP inputs are properly styled with Blazor scoped CSS */
input.visitor-management-login-page-optional-frame32343314-empty[b-ynumlq0aw1],
input.visitor-management-login-page-optional-frame32343314-filled[b-ynumlq0aw1] {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
}

.visitor-management-login-page-optional-frame32343314-empty[b-ynumlq0aw1] {
    border-color: rgba(204, 204, 204, 1);
    border-style: solid;
    border-width: 1px;
    background-color: rgba(246, 246, 246, 1);
    color: rgba(20, 20, 20, 1);
}

.visitor-management-login-page-optional-frame32343314-filled[b-ynumlq0aw1] {
    border-color: rgba(71, 155, 194, 1);
    border-style: solid;
    border-width: 1px;
    background-color: rgba(71, 155, 194, 0.11999999731779099);
    color: rgba(20, 20, 20, 1);
}

.visitor-management-login-page-optional-verify[b-ynumlq0aw1] {
    gap: 10px;
    top: auto;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    padding: 16px 10px;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    flex-shrink: 0;
    border-radius: 16px;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 0;
}

.visitor-management-login-page-optional-verify.disabled[b-ynumlq0aw1] {
    background-color: rgba(230, 230, 230, 1);
    cursor: not-allowed;
}

.visitor-management-login-page-optional-verify.enabled[b-ynumlq0aw1] {
    background-color: rgba(26, 36, 85, 1);
    cursor: pointer;
}

.visitor-management-login-page-optional-verify.enabled:hover[b-ynumlq0aw1] {
    background-color: rgba(20, 28, 68, 1);
}

.visitor-management-login-page-optional-text9[b-ynumlq0aw1] {
    height: auto;
    font-size: 16px;
    font-style: Medium;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    line-height: normal;
    font-stretch: normal;
    text-decoration: none;
}

.visitor-management-login-page-optional-verify.disabled .visitor-management-login-page-optional-text9[b-ynumlq0aw1] {
    color: rgba(149, 149, 149, 1);
}

.visitor-management-login-page-optional-verify.enabled .visitor-management-login-page-optional-text9[b-ynumlq0aw1] {
    color: rgba(255, 255, 255, 1);
}

/* Responsive Design - Mobile (< 768px) */
@media (max-width: 767px) {
    .visitor-management-login-page-optional-container[b-ynumlq0aw1] {
        overflow-y: auto;
        overflow-x: hidden;
        max-height: none;
    }

    .visitor-management-login-page-optional-visitor-management-login-page-optional[b-ynumlq0aw1] {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        overflow-y: visible;
        overflow-x: hidden;
    }

    .visitor-management-login-page-optional-frame327[b-ynumlq0aw1] {
        width: 100%;
        height: 40vh;
        min-height: 250px;
        position: relative;
    }

    .visitor-management-login-page-optional-frame346[b-ynumlq0aw1] {
        bottom: 20px;
        left: 20px;
        right: 20px;
        width: auto;
        max-width: calc(100% - 40px);
    }

    .visitor-management-login-page-optional-text1[b-ynumlq0aw1] {
        width: 100%;
        font-size: 14px;
    }

    .visitor-management-login-page-optional-group237745[b-ynumlq0aw1] {
        top: auto;
        transform: none;
        right: auto;
        left: auto;
        width: 100%;
        position: relative;
        padding: 30px 20px;
        box-sizing: border-box;
        margin: 0;
    }

    .visitor-management-login-page-optional-group237745[b-ynumlq0aw1] {
        flex-direction: column;
        gap: 0;
    }

    .visitor-management-login-page-optional-frame32343318[b-ynumlq0aw1] {
        width: 100%;
        margin-bottom: 20px;
    }

    .visitor-management-login-page-optional-text2[b-ynumlq0aw1] {
        font-size: 28px;
    }

    .visitor-management-login-page-optional-text3[b-ynumlq0aw1] {
        font-size: 14px;
    }

    .visitor-management-login-page-optional-number[b-ynumlq0aw1] {
        width: 100%;
        min-width: 100%;
        justify-content: center;
        align-items: center;
        gap: 10px;
        left: auto;
        margin-top: 0;
        margin-bottom: 20px;
        flex-wrap: wrap;
        overflow: visible;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .visitor-management-login-page-optional-frame32343317[b-ynumlq0aw1] {
        width: 100%;
        left: auto;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .visitor-management-login-page-optional-frame32343314-empty[b-ynumlq0aw1],
    .visitor-management-login-page-optional-frame32343314-filled[b-ynumlq0aw1],
    input.visitor-management-login-page-optional-frame32343314-empty[b-ynumlq0aw1],
    input.visitor-management-login-page-optional-frame32343314-filled[b-ynumlq0aw1] {
        width: 50px;
        height: 50px;
        font-size: 18px;
        flex: 0 0 50px;
        min-width: 50px;
        max-width: 50px;
    }

    .visitor-management-login-page-optional-verify[b-ynumlq0aw1] {
        width: 100%;
        left: auto;
        top: auto;
        margin-top: 30px;
    }
}

/* Extra small screens - ensure OTP inputs wrap if needed */
@media (max-width: 400px) {
    .visitor-management-login-page-optional-number[b-ynumlq0aw1] {
        gap: 8px;
        padding: 0 5px;
    }

    .visitor-management-login-page-optional-frame32343314-empty[b-ynumlq0aw1],
    .visitor-management-login-page-optional-frame32343314-filled[b-ynumlq0aw1],
    input.visitor-management-login-page-optional-frame32343314-empty[b-ynumlq0aw1],
    input.visitor-management-login-page-optional-frame32343314-filled[b-ynumlq0aw1] {
        width: 45px;
        height: 45px;
        min-width: 45px;
        max-width: 45px;
    }
}

/* Responsive Design - Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .visitor-management-login-page-optional-frame327[b-ynumlq0aw1] {
        width: 50%;
        max-width: 500px;
    }

    .visitor-management-login-page-optional-frame346[b-ynumlq0aw1] {
        width: calc(100% - 60px);
        max-width: 500px;
    }

    .visitor-management-login-page-optional-text1[b-ynumlq0aw1] {
        width: 100%;
        font-size: 15px;
    }

    .visitor-management-login-page-optional-group237745[b-ynumlq0aw1] {
        right: 30px;
        width: 45%;
        min-width: 350px;
        max-width: 409px;
    }

    .visitor-management-login-page-optional-text2[b-ynumlq0aw1] {
        font-size: 32px;
    }

    .visitor-management-login-page-optional-number[b-ynumlq0aw1] {
        gap: 18px;
    }
}

/* Responsive Design - Large Desktop (> 1440px) */
@media (min-width: 1440px) {
    .visitor-management-login-page-optional-frame327[b-ynumlq0aw1] {
        width: 750px;
    }

    .visitor-management-login-page-optional-group237745[b-ynumlq0aw1] {
        right: calc((100% - 1440px) / 2 + 50px);
        max-width: 409px;
    }
}
/* /Pages/RescheduledInvitations.razor.rz.scp.css */
.rescheduled-invitations-container[b-xj6c8kib8i] {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-xj6c8kib8i] {
    margin-bottom: 2rem;
}

.page-title[b-xj6c8kib8i] {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.page-subtitle[b-xj6c8kib8i] {
    color: #666;
    margin: 0;
}

.invitations-controls[b-xj6c8kib8i] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.search-container[b-xj6c8kib8i] {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-icon[b-xj6c8kib8i] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.search-input[b-xj6c8kib8i] {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
}

.filter-buttons[b-xj6c8kib8i] {
    display: flex;
    gap: 0.5rem;
}

.filter-btn[b-xj6c8kib8i] {
    padding: 0.75rem 1.5rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.filter-btn:hover[b-xj6c8kib8i] {
    background: #f5f5f5;
}

.filter-btn.active[b-xj6c8kib8i] {
    background: #1A3B6A;
    color: white;
    border-color: #1A3B6A;
}

.table-container[b-xj6c8kib8i] {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.invitations-table[b-xj6c8kib8i] {
    width: 100%;
    border-collapse: collapse;
}

.invitations-table thead[b-xj6c8kib8i] {
    background: #f8f9fa;
}

.invitations-table th[b-xj6c8kib8i] {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #333;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.invitations-table td[b-xj6c8kib8i] {
    padding: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
}

.invitations-table tbody tr:hover[b-xj6c8kib8i] {
    background: #f8f9fa;
}

.status-badge[b-xj6c8kib8i] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge.status-pending[b-xj6c8kib8i] {
    background: #fff3cd;
    color: #856404;
}

.status-badge.status-approved[b-xj6c8kib8i] {
    background: #d4edda;
    color: #155724;
}

.status-badge.status-rejected[b-xj6c8kib8i] {
    background: #f8d7da;
    color: #721c24;
}

.status-badge.status-checkedin[b-xj6c8kib8i] {
    background: #d1ecf1;
    color: #0c5460;
}

.status-badge.status-completed[b-xj6c8kib8i] {
    background: #e2e3e5;
    color: #383d41;
}

.walkin-badge[b-xj6c8kib8i] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    background: #e7f3ff;
    color: #0066cc;
    border: 1px solid #b3d9ff;
}

.rescheduled-badge[b-xj6c8kib8i] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    background: #e7f3ff;
    color: #0066cc;
    border: 1px solid #b3d9ff;
}

.action-buttons[b-xj6c8kib8i] {
    display: flex;
    gap: 0.5rem;
}

.action-btn[b-xj6c8kib8i] {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.action-btn:hover[b-xj6c8kib8i] {
    background: #f5f5f5;
}

.action-btn.view-btn[b-xj6c8kib8i] {
    padding: 0.5rem;
    border: none;
    background: transparent;
}

.action-btn.approve-btn[b-xj6c8kib8i] {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.action-btn.approve-btn:hover[b-xj6c8kib8i] {
    background: #218838;
}

.action-btn.reject-btn[b-xj6c8kib8i] {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

.action-btn.reject-btn:hover[b-xj6c8kib8i] {
    background: #c82333;
}

.pagination[b-xj6c8kib8i] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.pagination-btn[b-xj6c8kib8i] {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.pagination-btn:hover:not(:disabled)[b-xj6c8kib8i] {
    background: #f5f5f5;
}

.pagination-btn:disabled[b-xj6c8kib8i] {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info[b-xj6c8kib8i] {
    font-size: 0.9rem;
    color: #666;
}

/* /Pages/UserWalkInRequest.razor.rz.scp.css */
.user-walkin-requests-container[b-bb12eg9vn7] {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: rgba(246, 246, 246, 1);
}

.walk-in-card[b-bb12eg9vn7] {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(224, 224, 224, 0.9);
    box-shadow: 0 10px 24px rgba(15, 35, 64, 0.12), 0 2px 6px rgba(15, 35, 64, 0.08);
    /*position: relative;*/
    overflow: hidden;
}

.page-header[b-bb12eg9vn7] {
    margin-bottom: 0.5rem;
}

.page-title[b-bb12eg9vn7] {
    font-size: 2rem;
    /*font-weight: 600;*/
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.page-subtitle[b-bb12eg9vn7] {
    color: #666;
    margin: 0;
}

.invitations-controls[b-bb12eg9vn7] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.search-container[b-bb12eg9vn7] {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-icon[b-bb12eg9vn7] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.search-input[b-bb12eg9vn7] {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
}

.filter-buttons[b-bb12eg9vn7] {
    display: flex;
    gap: 0.5rem;
}

.filter-btn[b-bb12eg9vn7] {
    padding: 0.75rem 1.5rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.filter-btn:hover[b-bb12eg9vn7] {
    background: #f5f5f5;
}

.filter-btn.active[b-bb12eg9vn7] {
    background: #1A3B6A;
    color: white;
    border-color: #1A3B6A;
}

.table-container[b-bb12eg9vn7] {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 2px;
}

.invitations-table[b-bb12eg9vn7] {
    width: 100%;
    border-collapse: collapse;
}

.invitations-table thead[b-bb12eg9vn7] {
    background: #f8f9fa;
}

.invitations-table th[b-bb12eg9vn7] {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #333;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.invitations-table td[b-bb12eg9vn7] {
    padding: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
}

.invitations-table tbody tr:hover[b-bb12eg9vn7] {
    background: #f8f9fa;
}

.status-badge[b-bb12eg9vn7] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge.status-pending[b-bb12eg9vn7] {
    background: #fff3cd;
    color: #856404;
}

.status-badge.status-approved[b-bb12eg9vn7] {
    background: #d4edda;
    color: #155724;
}

.status-badge.status-rejected[b-bb12eg9vn7] {
    background: #f8d7da;
    color: #721c24;
}

.status-badge.status-checkedin[b-bb12eg9vn7] {
    background: #d1ecf1;
    color: #0c5460;
}

.status-badge.status-completed[b-bb12eg9vn7] {
    background: #e2e3e5;
    color: #383d41;
}

.action-buttons[b-bb12eg9vn7] {
    display: flex;
    gap: 0.5rem;
}

.action-btn[b-bb12eg9vn7] {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.action-btn:hover[b-bb12eg9vn7] {
    background: #f5f5f5;
}

.action-btn.view-btn[b-bb12eg9vn7] {
    padding: 0.5rem;
    border: none;
    background: transparent;
}

    .action-btn.approve-btn[b-bb12eg9vn7] {
        background: #1A3B6A;
        color: white;
        border-color: #1A3B6A;
    }

        .action-btn.approve-btn:hover[b-bb12eg9vn7] {
            background: #1a3b6ade;
        }

.action-btn.reject-btn[b-bb12eg9vn7] {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

.action-btn.reject-btn:hover[b-bb12eg9vn7] {
    background: #c82333;
}

.pagination[b-bb12eg9vn7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.pagination-btn[b-bb12eg9vn7] {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.pagination-btn:hover:not(:disabled)[b-bb12eg9vn7] {
    background: #f5f5f5;
}

.pagination-btn:disabled[b-bb12eg9vn7] {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info[b-bb12eg9vn7] {
    font-size: 0.9rem;
    color: #666;
}

/* /Pages/ValidatePassport.razor.rz.scp.css */
.validate-passport-container[b-cdaoucurp1] {
    width: 100%;
    min-height: 100vh;
    background-color: #f5f5f5;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.validate-passport-content[b-cdaoucurp1] {
    width: 100%;
    max-width: 1200px;
}

.validate-passport-header[b-cdaoucurp1] {
    margin-bottom: 32px;
    text-align: center;
}

.validate-passport-title[b-cdaoucurp1] {
    font-size: 32px;
    font-weight: 700;
    color: #1A3B6A;
    margin: 0 0 8px 0;
    font-family: 'Ubuntu', sans-serif;
}

.validate-passport-subtitle[b-cdaoucurp1] {
    font-size: 16px;
    color: #888888;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
}

.loading-container[b-cdaoucurp1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 20px;
}

.spinner[b-cdaoucurp1] {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1A3B6A;
    border-radius: 50%;
    animation: spin-b-cdaoucurp1 1s linear infinite;
}

@keyframes spin-b-cdaoucurp1 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.validation-form-container[b-cdaoucurp1] {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto 32px;
}

.form-group[b-cdaoucurp1] {
    margin-bottom: 24px;
}

.form-label[b-cdaoucurp1] {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 12px;
    font-family: 'Ubuntu', sans-serif;
}

.form-control[b-cdaoucurp1] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Ubuntu', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: #ffffff;
}

.form-control:focus[b-cdaoucurp1] {
    outline: none;
    border-color: #1A3B6A;
    box-shadow: 0 0 0 3px rgba(26, 59, 106, 0.1);
}

.form-control.is-invalid[b-cdaoucurp1] {
    border-color: #dc3545;
}

.form-control.is-invalid:focus[b-cdaoucurp1] {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.invalid-feedback[b-cdaoucurp1] {
    display: block;
    width: 100%;
    margin-top: 8px;
    font-size: 14px;
    color: #dc3545;
    font-family: 'Ubuntu', sans-serif;
}

.form-actions[b-cdaoucurp1] {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.btn-validate[b-cdaoucurp1] {
    background-color: #1A3B6A;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    font-family: 'Ubuntu', sans-serif;
    min-width: 200px;
}

.btn-validate:hover:not(:disabled)[b-cdaoucurp1] {
    background-color: #0f2542;
    transform: translateY(-1px);
}

.btn-validate:active:not(:disabled)[b-cdaoucurp1] {
    transform: translateY(0);
}

.btn-validate:disabled[b-cdaoucurp1] {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.alert[b-cdaoucurp1] {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.alert-danger[b-cdaoucurp1] {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.passport-card-container[b-cdaoucurp1] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: 32px;
}

.passport-result-title[b-cdaoucurp1] {
    font-size: 24px;
    font-weight: 600;
    color: #1A3B6A;
    margin: 0 0 24px 0;
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .validate-passport-container[b-cdaoucurp1] {
        padding: 20px 16px;
    }

    .validate-passport-title[b-cdaoucurp1] {
        font-size: 28px;
    }

    .validate-passport-subtitle[b-cdaoucurp1] {
        font-size: 14px;
    }

    .validation-form-container[b-cdaoucurp1] {
        padding: 24px;
    }

    .btn-validate[b-cdaoucurp1] {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .validate-passport-title[b-cdaoucurp1] {
        font-size: 24px;
    }

    .validation-form-container[b-cdaoucurp1] {
        padding: 20px;
    }
}
/* /Pages/VehiclePlateNumbers.razor.rz.scp.css */
/* ========================================
   Plates Page Layout
   ======================================== */
.plates-page[b-4krzamzwsv] {
    padding: 32px;
    /*background-color: #F5F7FA;*/
    background-color: rgba(246, 246, 246, 1);
    min-height: 100%;
    font-family: 'Ubuntu', sans-serif;
}

/* ========================================
   Page Header
   ======================================== */
.page-header[b-4krzamzwsv] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
}

.page-header-actions[b-4krzamzwsv] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.page-title[b-4krzamzwsv] {
    font-size: 24px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 4px 0;
    line-height: 1.2;
    font-family: 'Ubuntu', sans-serif;
}

.page-subtitle[b-4krzamzwsv] {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
}

/* ========================================
   Primary Action Button
   ======================================== */
.btn-primary-action[b-4krzamzwsv] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #001F57;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.05s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 31, 87, 0.16);
    white-space: nowrap;
}

.btn-primary-action:hover:not(:disabled)[b-4krzamzwsv] {
    background-color: #0A2F7A;
    box-shadow: 0 3px 8px rgba(0, 31, 87, 0.24);
}

.btn-primary-action:active:not(:disabled)[b-4krzamzwsv] {
    transform: translateY(1px);
}

.btn-primary-action i[b-4krzamzwsv] {
    font-size: 14px;
    line-height: 1;
}

.btn-secondary-action[b-4krzamzwsv] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #FFFFFF;
    color: #001F57;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary-action:hover:not(:disabled)[b-4krzamzwsv] {
    background-color: #F5F7FA;
    border-color: #001F57;
}

/* ========================================
   Alert
   ======================================== */
.alert[b-4krzamzwsv] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    font-family: 'Ubuntu', sans-serif;
}

.alert-danger[b-4krzamzwsv] {
    background-color: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FCA5A5;
}

.alert i[b-4krzamzwsv] {
    font-size: 16px;
    flex-shrink: 0;
}

/* ========================================
   Toolbar (Search + Count)
   ======================================== */
.toolbar[b-4krzamzwsv] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.search-wrapper[b-4krzamzwsv] {
    position: relative;
    flex: 1;
    max-width: 420px;
}

.search-icon[b-4krzamzwsv] {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    font-size: 16px;
    pointer-events: none;
}

.search-input[b-4krzamzwsv] {
    width: 100%;
    padding: 10px 40px 10px 42px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    background-color: #FFFFFF;
    font-size: 14px;
    color: #1A1A1A;
    font-family: 'Ubuntu', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input[b-4krzamzwsv]::placeholder {
    color: #9CA3AF;
}

.search-input:focus[b-4krzamzwsv] {
    outline: none;
    border-color: #001F57;
    box-shadow: 0 0 0 3px rgba(0, 31, 87, 0.1);
}

.search-clear[b-4krzamzwsv] {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #6B7280;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.search-clear:hover[b-4krzamzwsv] {
    background-color: #F1F5F9;
    color: #1A1A1A;
}

.search-clear i[b-4krzamzwsv] {
    font-size: 18px;
}

.count-pill[b-4krzamzwsv] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background-color: #EFF2F7;
    color: #374151;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.count-pill span[b-4krzamzwsv] {
    font-weight: 400;
    color: #6B7280;
}

/* ========================================
   Plates Card + Table
   ======================================== */
.plates-card[b-4krzamzwsv] {
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.plates-table[b-4krzamzwsv] {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Ubuntu', sans-serif;
}

.plates-table thead[b-4krzamzwsv] {
    background-color: #F8FAFC;
    border-bottom: 1px solid #E5E7EB;
}

.plates-table thead th[b-4krzamzwsv] {
    padding: 14px 20px;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.plates-table thead th.actions-col[b-4krzamzwsv] {
    width: 110px;
    text-align: right;
}

.plates-table tbody tr[b-4krzamzwsv] {
    border-bottom: 1px solid #F1F5F9;
    transition: background-color 0.15s ease;
}

.plates-table tbody tr:last-child[b-4krzamzwsv] {
    border-bottom: none;
}

.plates-table tbody tr:hover:not(.skeleton-row)[b-4krzamzwsv] {
    background-color: rgba(0, 31, 87, 0.035);
}

.plates-table tbody td[b-4krzamzwsv] {
    padding: 16px 20px;
    font-size: 14px;
    color: #1F2937;
    vertical-align: middle;
}

.cell-strong[b-4krzamzwsv] {
    font-weight: 600;
    color: #1A1A1A;
}

.cell-mono[b-4krzamzwsv] {
    font-family: 'JetBrains Mono', 'Consolas', 'SF Mono', monospace;
    font-size: 13px;
    color: #374151;
}

.cell-muted[b-4krzamzwsv] {
    color: #6B7280;
    max-width: 360px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.plates-table tbody td.actions-col[b-4krzamzwsv] {
    text-align: right;
    white-space: nowrap;
}

/* ========================================
   Action Icon Buttons
   ======================================== */
.action-icon-btn[b-4krzamzwsv] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 4px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.15s ease;
}

.action-icon-btn i[b-4krzamzwsv] {
    font-size: 15px;
    line-height: 1;
}

.action-icon-btn.edit:hover[b-4krzamzwsv] {
    background-color: rgba(0, 31, 87, 0.08);
    color: #001F57;
    border-color: rgba(0, 31, 87, 0.18);
}

.action-icon-btn.delete:hover[b-4krzamzwsv] {
    background-color: rgba(220, 38, 38, 0.08);
    color: #DC2626;
    border-color: rgba(220, 38, 38, 0.18);
}

.action-icon-btn:focus-visible[b-4krzamzwsv] {
    outline: 2px solid rgba(0, 31, 87, 0.35);
    outline-offset: 1px;
}

/* ========================================
   Empty State
   ======================================== */
.empty-state[b-4krzamzwsv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
    text-align: center;
}

.empty-icon[b-4krzamzwsv] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: #EFF2F7;
    color: #001F57;
    border-radius: 50%;
    margin-bottom: 20px;
}

.empty-icon i[b-4krzamzwsv] {
    font-size: 28px;
}

.empty-state h3[b-4krzamzwsv] {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 8px 0;
    font-family: 'Ubuntu', sans-serif;
}

.empty-state p[b-4krzamzwsv] {
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 20px 0;
    max-width: 360px;
    font-family: 'Ubuntu', sans-serif;
}

/* ========================================
   Skeleton Loading
   ======================================== */
.skeleton-row td[b-4krzamzwsv] {
    padding: 16px 20px;
}

.skeleton[b-4krzamzwsv] {
    display: inline-block;
    background: linear-gradient(90deg, #F1F5F9 0%, #E5E7EB 50%, #F1F5F9 100%);
    background-size: 200% 100%;
    animation: shimmer-b-4krzamzwsv 1.4s ease-in-out infinite;
    border-radius: 4px;
}

.skeleton-text[b-4krzamzwsv] {
    height: 14px;
    vertical-align: middle;
}

.skeleton-action[b-4krzamzwsv] {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    margin-left: 4px;
    vertical-align: middle;
}

@keyframes shimmer-b-4krzamzwsv {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ========================================
   Slide-Over Panel
   ======================================== */
.slide-over-backdrop[b-4krzamzwsv] {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.45);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 1040;
    backdrop-filter: blur(2px);
}

.slide-over-backdrop.show[b-4krzamzwsv] {
    opacity: 1;
}

.slide-over-panel[b-4krzamzwsv] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 480px;
    max-width: 100vw;
    background-color: #FFFFFF;
    box-shadow: -8px 0 24px rgba(15, 23, 42, 0.12);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Ubuntu', sans-serif;
}

.slide-over-panel.show[b-4krzamzwsv] {
    transform: translateX(0);
}

.slide-over-header[b-4krzamzwsv] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px 20px;
    border-bottom: 1px solid #E5E7EB;
}

.slide-over-header h2[b-4krzamzwsv] {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 2px 0;
    font-family: 'Ubuntu', sans-serif;
}

.slide-over-header p[b-4krzamzwsv] {
    font-size: 13px;
    color: #6B7280;
    margin: 0;
}

.slide-over-close[b-4krzamzwsv] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: #6B7280;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.slide-over-close:hover[b-4krzamzwsv] {
    background-color: #F1F5F9;
    color: #1A1A1A;
}

.slide-over-close i[b-4krzamzwsv] {
    font-size: 16px;
}

.slide-over-form[b-4krzamzwsv] {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.slide-over-body[b-4krzamzwsv] {
    flex: 1;
    overflow-y: auto;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

[b-4krzamzwsv] .slide-over-body .form-group {
    display: flex;
    flex-direction: column;
}

[b-4krzamzwsv] .slide-over-body .form-label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
    font-family: 'Ubuntu', sans-serif;
}

[b-4krzamzwsv] .slide-over-body .form-label .required {
    color: #DC2626;
    margin-left: 2px;
}

[b-4krzamzwsv] .slide-over-body .form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    color: #1A1A1A;
    background-color: #FFFFFF;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

[b-4krzamzwsv] .slide-over-body .form-control:focus {
    outline: none;
    border-color: #001F57;
    box-shadow: 0 0 0 3px rgba(0, 31, 87, 0.1);
}

[b-4krzamzwsv] .slide-over-body .form-control::placeholder {
    color: #9CA3AF;
}

[b-4krzamzwsv] .slide-over-body .validation-message {
    color: #DC2626;
    font-size: 12px;
    margin-top: 4px;
    font-family: 'Ubuntu', sans-serif;
}

.slide-over-footer[b-4krzamzwsv] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-top: 1px solid #E5E7EB;
    background-color: #FAFBFC;
}

.btn-ghost[b-4krzamzwsv] {
    padding: 10px 18px;
    background-color: transparent;
    color: #374151;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-ghost:hover:not(:disabled)[b-4krzamzwsv] {
    background-color: #F5F7FA;
    border-color: #CBD5E1;
}

.btn-ghost:disabled[b-4krzamzwsv] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-submit[b-4krzamzwsv] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #001F57;
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-submit:hover:not(:disabled)[b-4krzamzwsv] {
    background-color: #0A2F7A;
}

.btn-submit:disabled[b-4krzamzwsv] {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit i[b-4krzamzwsv] {
    font-size: 14px;
    line-height: 1;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    .plates-page[b-4krzamzwsv] {
        padding: 20px 16px;
    }

    .page-header[b-4krzamzwsv] {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary-action[b-4krzamzwsv] {
        justify-content: center;
    }

    .toolbar[b-4krzamzwsv] {
        flex-direction: column;
        align-items: stretch;
    }

    .search-wrapper[b-4krzamzwsv] {
        max-width: 100%;
    }

    .count-pill[b-4krzamzwsv] {
        align-self: flex-start;
    }

    .plates-table thead[b-4krzamzwsv] {
        display: none;
    }

    .plates-table[b-4krzamzwsv],
    .plates-table tbody[b-4krzamzwsv],
    .plates-table tr[b-4krzamzwsv],
    .plates-table td[b-4krzamzwsv] {
        display: block;
        width: 100%;
    }

    .plates-table tbody tr[b-4krzamzwsv] {
        padding: 12px 16px;
        border-bottom: 1px solid #F1F5F9;
    }

    .plates-table tbody td[b-4krzamzwsv] {
        padding: 4px 0;
        border: none;
    }

    .plates-table tbody td.actions-col[b-4krzamzwsv] {
        text-align: left;
        padding-top: 8px;
    }

    .cell-muted[b-4krzamzwsv] {
        max-width: 100%;
        white-space: normal;
    }

    .slide-over-panel[b-4krzamzwsv] {
        width: 100vw;
    }

    .slide-over-header[b-4krzamzwsv],
    .slide-over-body[b-4krzamzwsv],
    .slide-over-footer[b-4krzamzwsv] {
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* /Pages/VisitingReport.razor.rz.scp.css */
/* Main Container */
.lfz-admin-container[b-4z3l3vblfk] {
    width: 100%;
    display: flex;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    align-items: center;
    flex-direction: column;
    background-color: rgba(246, 246, 246, 1);
    font-family: 'Ubuntu', sans-serif;
}

.lfz-admin-main[b-4z3l3vblfk] {
    width: 100%;
    max-width: 1424px;
    padding: 16px 22px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
}

/* Header Section */
.lfz-admin-header[b-4z3l3vblfk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    background-color: rgba(255, 255, 255, 1);
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 8px;
    height: 60px;
}

.lfz-admin-title[b-4z3l3vblfk] {
    color: rgba(20, 20, 20, 1);
    font-size: 28px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
}

.lfz-admin-user-section[b-4z3l3vblfk] {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lfz-admin-notification-icon[b-4z3l3vblfk] {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(20, 20, 20, 1);
    cursor: pointer;
}

.lfz-admin-profile[b-4z3l3vblfk] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lfz-admin-avatar[b-4z3l3vblfk] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}

.lfz-admin-avatar img[b-4z3l3vblfk] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lfz-admin-user-info[b-4z3l3vblfk] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lfz-admin-user-name[b-4z3l3vblfk] {
    color: rgba(20, 20, 20, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.lfz-admin-user-email[b-4z3l3vblfk] {
    color: rgba(20, 20, 20, 0.65);
    font-size: 12px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

/* Metric Cards Section */
.lfz-admin-metrics[b-4z3l3vblfk] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lfz-admin-metric-card[b-4z3l3vblfk] {
    position: relative;
    width: 100%;
    min-width: 0;
    height: 120px;
    background-color: rgba(255, 255, 255, 1);
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 8px;
    padding: 20px 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.metric-wave-bg[b-4z3l3vblfk] {
    position: absolute;
    bottom: -20px;
    right: -50px;
    width: 396px;
    height: 103px;
    opacity: 0.1;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.05) 10px,
        rgba(0, 0, 0, 0.05) 20px
    );
}

.metric-label[b-4z3l3vblfk] {
    color: rgba(20, 20, 20, 1);
    font-size: 20px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    z-index: 1;
}

.metric-value[b-4z3l3vblfk] {
    color: rgba(20, 20, 20, 1);
    font-size: 32px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    z-index: 1;
}

.metric-inline-spinner[b-4z3l3vblfk] {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 3px solid #e5e7eb;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: attendance-spin-b-4z3l3vblfk 0.8s linear infinite;
    vertical-align: middle;
}

.metric-icon[b-4z3l3vblfk] {
    position: absolute;
    top: 20px;
    right: 16px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    z-index: 1;
}

.visitors-icon[b-4z3l3vblfk] {
    background-color: rgba(223, 129, 47, 0.08);
    color: rgba(223, 129, 47, 1);
}

.enterprises-icon[b-4z3l3vblfk] {
    background-color: rgba(0, 122, 255, 0.08);
    color: rgba(0, 122, 255, 1);
}

.walkins-icon[b-4z3l3vblfk] {
    background-color: rgba(82, 198, 82, 0.08);
    color: rgba(82, 198, 82, 1);
}

/* Charts Section */
.lfz-admin-charts[b-4z3l3vblfk] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.lfz-admin-chart-container[b-4z3l3vblfk] {
    background-color: rgba(255, 255, 255, 1);
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 8px;
    padding: 16px;
    height: 313px;
    display: flex;
    flex-direction: column;
}

.chart-title[b-4z3l3vblfk] {
    color: rgba(20, 20, 20, 1);
    font-size: 20px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 0;
}

.chart-view-toggle[b-4z3l3vblfk] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.toggle-btn[b-4z3l3vblfk] {
    padding: 8px 16px;
    border: 1px solid rgba(204, 204, 204, 1);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 1);
    color: rgba(20, 20, 20, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.toggle-btn:hover[b-4z3l3vblfk] {
    background-color: rgba(242, 245, 253, 1);
    border-color: rgba(0, 31, 87, 1);
}

.toggle-btn.active[b-4z3l3vblfk] {
    background-color: rgba(0, 31, 87, 1);
    color: rgba(255, 255, 255, 1);
    border-color: rgba(0, 31, 87, 1);
}

.toggle-btn.active:hover[b-4z3l3vblfk] {
    background-color: rgba(0, 25, 70, 1);
}

.chart-content[b-4z3l3vblfk] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visitors-chart[b-4z3l3vblfk] {
    width: 100%;
    height: 100%;
}

.axis-label[b-4z3l3vblfk] {
    font-size: 14px;
    fill: rgba(134, 134, 134, 1);
    font-family: 'Ubuntu', sans-serif;
}

.chart-line[b-4z3l3vblfk] {
    filter: drop-shadow(0 2px 4px rgba(76, 175, 80, 0.2));
}

.chart-tooltip[b-4z3l3vblfk] {
    pointer-events: none;
}

.tooltip-text[b-4z3l3vblfk] {
    font-size: 12px;
    fill: rgba(20, 20, 20, 1);
    font-family: 'Ubuntu', sans-serif;
}

.pie-chart-content[b-4z3l3vblfk] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.pie-chart[b-4z3l3vblfk] {
    flex-shrink: 0;
}

.pie-segment[b-4z3l3vblfk] {
    transition: opacity 0.2s;
}

.pie-segment:hover[b-4z3l3vblfk] {
    opacity: 0.8;
}

.pie-legend[b-4z3l3vblfk] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legend-item[b-4z3l3vblfk] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color[b-4z3l3vblfk] {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    flex-shrink: 0;
}

.legend-label[b-4z3l3vblfk] {
    color: rgba(20, 20, 20, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

/* Invitations Section */
.lfz-admin-invitations[b-4z3l3vblfk] {
    background-color: rgba(255, 255, 255, 1);
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 8px;
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.invitations-title[b-4z3l3vblfk] {
    color: rgba(20, 20, 20, 1);
    font-size: 20px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.invitations-controls[b-4z3l3vblfk] {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.search-cluster[b-4z3l3vblfk] {
    display: flex;
    align-items: end;
    gap: 8px;
    flex: 1;
    min-width: 0;
    max-width: 600px;
    margin-left:20px;
}

.search-cluster .search-box[b-4z3l3vblfk] {
    max-width: none;
}

.year-select[b-4z3l3vblfk] {
    height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(216, 216, 216, 1);
    border-radius: 6px;
    background-color: #fff;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(20, 20, 20, 1);
    min-width: 140px;
    flex-shrink: 0;
    cursor: pointer;
}

.search-button[b-4z3l3vblfk] {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 16px;
    background-color: #001F57;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

.search-button:hover[b-4z3l3vblfk] {
    background-color: #001a4a;
}

.search-box[b-4z3l3vblfk] {
    flex: 1;
    min-width: 0;
    max-width: 600px;
    height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 1);
    box-sizing: border-box;
}

.search-box svg[b-4z3l3vblfk] {
    width: 20px;
    height: 20px;
    color: rgba(134, 134, 134, 1);
    flex-shrink: 0;
}

.search-input[b-4z3l3vblfk] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: rgba(134, 134, 134, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.search-input[b-4z3l3vblfk]::placeholder {
    color: rgba(134, 134, 134, 1);
}

.export-dropdown[b-4z3l3vblfk] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    height: 42px;
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 1);
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(20, 20, 20, 1);
    white-space: nowrap;
    flex-shrink: 0;
}

.date-range-filter[b-4z3l3vblfk] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    max-width: 600px;
}

.date-range-filter .date-input[b-4z3l3vblfk] {
    flex: 1;
    min-width: 0;
    height: 42px;
    padding: 0 10px;
    border: 1px solid rgba(216, 216, 216, 1);
    border-radius: 6px;
    background-color: #fff;
    font-size: 14px;
    color: rgba(20, 20, 20, 1);
}

.date-range-filter .date-range-sep[b-4z3l3vblfk] {
    font-size: 13px;
    color: rgba(134, 134, 134, 1);
}

    .date-range-filter .apply-date-btn[b-4z3l3vblfk],
    .date-range-filter .clear-date-btn[b-4z3l3vblfk] {
        height: 42px;
        padding: 0 14px;
        border-radius: 6px;
        border: 1px solid rgba(216, 216, 216, 1);
        /*background-color: #fff;*/
        background-color: #001F57;
        font-size: 14px;
        color: rgba(20, 20, 20, 1);
        cursor: pointer;
    }

    .date-range-filter .apply-date-btn[b-4z3l3vblfk] {
        /*background-color: rgba(20, 20, 20, 1);*/
        background-color: #001F57;
        color: #fff;
        border-color: rgba(20, 20, 20, 1);
    }

.date-range-filter .apply-date-btn:hover[b-4z3l3vblfk] {
    opacity: 0.9;
}

.date-range-filter .clear-date-btn:hover[b-4z3l3vblfk] {
    background-color: rgba(245, 245, 245, 1);
}

.filter-dropdown-container[b-4z3l3vblfk] {
    position: relative;
    margin-left: auto;
    flex-shrink: 0;
}

.filter-header[b-4z3l3vblfk] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 20px;
    height: 42px;
    background-color: #CCCCCC;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(20, 20, 20, 1);
    white-space: nowrap;
    min-width: 120px;
    transition: background-color 0.2s ease;
}

.filter-header:hover[b-4z3l3vblfk] {
    background-color: #B8B8B8;
}

.filter-header svg[b-4z3l3vblfk] {
    width: 20px;
    height: 20px;
    color: rgba(20, 20, 20, 1);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.filter-dropdown-menu[b-4z3l3vblfk] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    min-width: 180px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    overflow: hidden;
    margin-top: 4px;
}

.filter-option[b-4z3l3vblfk] {
    padding: 12px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(20, 20, 20, 1);
    transition: background-color 0.2s ease;
    border-bottom: 1px solid rgba(240, 240, 240, 1);
}

.filter-option:last-child[b-4z3l3vblfk] {
    border-bottom: none;
}

.filter-option:hover[b-4z3l3vblfk] {
    background-color: rgba(0, 31, 87, 0.05);
}

.export-dropdown-container[b-4z3l3vblfk] {
    position: relative;
    flex-shrink: 0;
}

.toolbar-action-end[b-4z3l3vblfk] {
    /*margin-left: auto;*/
}

.export-header[b-4z3l3vblfk] {
    appearance: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 12px 20px;
    height: 42px;
    background-color: #001F57;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(255, 255, 255, 1);
    white-space: nowrap;
    min-width: 120px;
    transition: background-color 0.2s ease;
}

.export-header:hover[b-4z3l3vblfk] {
    background-color: #001a4a;
}

.export-header svg[b-4z3l3vblfk] {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 1);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.export-dropdown-menu[b-4z3l3vblfk] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    min-width: 180px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    overflow: hidden;
}

.export-option[b-4z3l3vblfk] {
    appearance: none;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(20, 20, 20, 1);
    transition: background-color 0.2s ease;
    border-bottom: 1px solid rgba(240, 240, 240, 1);
}

.export-option:disabled[b-4z3l3vblfk] {
    cursor: not-allowed;
}

.export-option:last-child[b-4z3l3vblfk] {
    border-bottom: none;
}

.export-option:hover[b-4z3l3vblfk] {
    background-color: rgba(0, 31, 87, 0.05);
}

/* Table */
.table-wrapper[b-4z3l3vblfk] {
    overflow-x: auto;
}

.invitations-table[b-4z3l3vblfk] {
    width: 100%;
    border-collapse: collapse;
}

.invitations-table thead[b-4z3l3vblfk] {
    border-bottom: 1px solid rgba(204, 204, 204, 1);
}

.invitations-table th[b-4z3l3vblfk] {
    padding: 12px 16px;
    text-align: left;
    color: rgba(134, 134, 134, 1);
    font-size: 12px;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    text-transform: uppercase;
}

.invitations-table tbody tr[b-4z3l3vblfk] {
    border-bottom: 1px solid rgba(204, 204, 204, 1);
}

.invitations-table tbody tr:last-child[b-4z3l3vblfk] {
    border-bottom: none;
}

.invitations-table td[b-4z3l3vblfk] {
    padding: 16px;
    color: rgba(20, 20, 20, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.invitations-table td:first-child[b-4z3l3vblfk] {
    color: rgba(0, 31, 87, 1);
    font-weight: 500;
}

/* Status Badges */
.rescheduled-badge[b-4z3l3vblfk] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    background: #e7f3ff;
    color: #0066cc;
    border: 1px solid #b3d9ff;
}

/* Walk-in badge */
.walkin-badge[b-4z3l3vblfk] {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    /*margin-left: 8px;*/
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    background: rgba(0, 122, 255, 0.08);
    color: #007aff;
    border: 1px solid rgba(0, 122, 255, 0.35);
}


.status-badge[b-4z3l3vblfk] {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    border: 0.5px solid;
}

.status-badge.status-approved[b-4z3l3vblfk] {
    background-color: rgba(52, 199, 89, 0.12);
    color: rgba(52, 199, 89, 1);
    border-color: rgba(82, 198, 82, 1);
}

.status-badge.status-pending[b-4z3l3vblfk] {
    background-color: rgba(255, 149, 0, 0.12);
    color: rgba(255, 149, 0, 1);
    border-color: rgba(255, 149, 0, 1);
}

.status-badge.status-exited[b-4z3l3vblfk] {
    background-color: rgba(139, 139, 139, 0.12);
    color: rgba(139, 139, 139, 1);
    border-color: rgba(139, 139, 139, 1);
}

/* Action Buttons */
.action-buttons[b-4z3l3vblfk] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-btn[b-4z3l3vblfk] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 1);
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(20, 20, 20, 1);
    transition: background-color 0.2s;
}

.action-btn:hover[b-4z3l3vblfk] {
    background-color: rgba(242, 245, 253, 1);
}

.view-btn[b-4z3l3vblfk] {
    width: 32px;
    height: 32px;
    padding: 0;
}

.view-btn svg[b-4z3l3vblfk] {
    width: 16px;
    height: 16px;
    color: rgba(20, 20, 20, 1);
}

.approve-btn[b-4z3l3vblfk] {
    background-color: rgba(0, 31, 87, 1);
    color: rgba(255, 255, 255, 1);
    border-color: rgba(0, 31, 87, 1);
}

.approve-btn:hover[b-4z3l3vblfk] {
    background-color: rgba(0, 25, 70, 1);
}

.reject-btn[b-4z3l3vblfk] {
    background-color: rgba(255, 255, 255, 1);
    color: rgba(20, 20, 20, 1);
}

.reject-btn:hover[b-4z3l3vblfk] {
    background-color: rgba(242, 245, 253, 1);
}

/* Pagination */
.pagination[b-4z3l3vblfk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(204, 204, 204, 1);
}

.pagination-btn[b-4z3l3vblfk] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border: none;
    border-radius: 4px;
    background-color: rgba(0, 31, 87, 1);
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
}

.pagination-btn:hover[b-4z3l3vblfk] {
    background-color: rgba(0, 25, 70, 1);
}

.pagination-btn svg[b-4z3l3vblfk] {
    width: 12px;
    height: 12px;
    color: rgba(255, 255, 255, 1);
}

.pagination-info[b-4z3l3vblfk] {
    display: flex;
    align-items: center;
    gap: 2px;
    color: rgba(20, 20, 20, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.page-number[b-4z3l3vblfk] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    min-width: 22px;
    height: 22px;
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 4px;
    background-color: rgba(242, 245, 253, 1);
    color: rgba(20, 20, 20, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

/* Visit Details Modal Overlay */
.modal-overlay[b-4z3l3vblfk] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.modal-overlay.show[b-4z3l3vblfk] {
    opacity: 1;
    pointer-events: all;
}

.modal-content[b-4z3l3vblfk] {
    width: 480px;
    max-width: 90vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.modal-content.show[b-4z3l3vblfk] {
    transform: translateX(0);
}

.modal-header[b-4z3l3vblfk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(204, 204, 204, 1);
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 1);
    z-index: 10;
}

.modal-title[b-4z3l3vblfk] {
    color: rgba(20, 20, 20, 1);
    font-size: 20px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
}

.attendance-modal .modal-title[b-4z3l3vblfk] {
    color: #1A3B6A;
    font-weight: 700;
}

.modal-close-btn-top[b-4z3l3vblfk] {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    color: rgba(20, 20, 20, 1);
    transition: background-color 0.2s;
    padding: 0;
}

.modal-close-btn-top:hover[b-4z3l3vblfk] {
    background-color: rgba(242, 245, 253, 1);
}

.modal-close-btn-top svg[b-4z3l3vblfk] {
    width: 20px;
    height: 20px;
}

.modal-body[b-4z3l3vblfk] {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-field[b-4z3l3vblfk] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-label[b-4z3l3vblfk] {
    color: rgba(134, 134, 134, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.detail-value[b-4z3l3vblfk] {
    color: rgba(20, 20, 20, 1);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.detail-value-with-badge[b-4z3l3vblfk] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-footer[b-4z3l3vblfk] {
    padding: 24px;
    border-top: 1px solid rgba(204, 204, 204, 1);
    display: flex;
    justify-content: flex-end;
    position: sticky;
    bottom: 0;
    background-color: rgba(255, 255, 255, 1);
    z-index: 10;
}

.modal-close-btn-bottom[b-4z3l3vblfk] {
    padding: 10px 24px;
    border: 0.5px solid rgba(204, 204, 204, 1);
    border-radius: 8px;
    background-color: rgba(242, 245, 253, 1);
    color: rgba(20, 20, 20, 1);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
}

.modal-close-btn-bottom:hover[b-4z3l3vblfk] {
    background-color: rgba(224, 230, 245, 1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .lfz-admin-metrics[b-4z3l3vblfk] {
        grid-template-columns: 1fr;
    }
    
    .lfz-admin-metric-card[b-4z3l3vblfk] {
        width: 100%;
    }
    
    .lfz-admin-charts[b-4z3l3vblfk] {
        grid-template-columns: 1fr;
    }
    
    .pie-chart-content[b-4z3l3vblfk] {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .lfz-admin-main[b-4z3l3vblfk] {
        padding: 16px;
    }
    
    .lfz-admin-header[b-4z3l3vblfk] {
        flex-direction: column;
        height: auto;
        gap: 12px;
    }
    
    .invitations-controls[b-4z3l3vblfk] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box[b-4z3l3vblfk] {
        max-width: 100%;
    }
    
    .filter-dropdown[b-4z3l3vblfk],
    .export-dropdown[b-4z3l3vblfk] {
        width: 100%;
        justify-content: space-between;
    }
    
    .table-wrapper[b-4z3l3vblfk] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pagination[b-4z3l3vblfk] {
        flex-direction: column;
        gap: 12px;
    }
    
    .pagination-btn[b-4z3l3vblfk] {
        width: 100%;
        justify-content: center;
    }
    
    .modal-content[b-4z3l3vblfk] {
        width: 100%;
        max-width: 100vw;
    }
}

/* ===== Visitor Attendance Modal ===== */
.modal-content.attendance-modal[b-4z3l3vblfk] {
    max-width: 880px;
    width: 92%;
}

.attendance-context[b-4z3l3vblfk] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    gap: 12px 24px;
    padding: 16px 18px;
    background: #f7f9fc;
    border: 1px solid #e6eaf0;
    border-radius: 8px;
    margin-bottom: 16px;
}

.attendance-context-item[b-4z3l3vblfk] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.attendance-context-label[b-4z3l3vblfk] {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #1A3B6A;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
}

.attendance-context-value[b-4z3l3vblfk] {
    font-size: 14px;
    color: #1f2937;
    font-weight: 500;
    word-break: break-word;
}

.attendance-summary[b-4z3l3vblfk] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.summary-card[b-4z3l3vblfk] {
    background: #ffffff;
    border: 1px solid #e6eaf0;
    border-radius: 8px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.summary-label[b-4z3l3vblfk] {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #1A3B6A;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
}

.summary-value[b-4z3l3vblfk] {
    font-size: 16px;
    color: #111827;
    font-weight: 600;
}

.summary-info[b-4z3l3vblfk] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-info-row[b-4z3l3vblfk] {
    font-size: 13px;
    color: #1f2937;
    line-height: 1.4;
}

.summary-info-key[b-4z3l3vblfk] {
    color: #1A3B6A;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    margin-right: 4px;
}

.summary-info-val[b-4z3l3vblfk] {
    color: #111827;
    font-weight: 500;
}

.attendance-table-wrapper[b-4z3l3vblfk] {
    border: 1px solid #e6eaf0;
    border-radius: 8px;
    overflow: hidden;
}

.attendance-table[b-4z3l3vblfk] {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.attendance-table thead[b-4z3l3vblfk] {
    background: #f3f5f9;
}

.attendance-table th[b-4z3l3vblfk] {
    text-align: left;
    padding: 10px 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #1A3B6A;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    border-bottom: 1px solid #e6eaf0;
}

.attendance-table td[b-4z3l3vblfk] {
    padding: 10px 14px;
    color: #1f2937;
    border-bottom: 1px solid #eef1f5;
    vertical-align: middle;
}

.attendance-table tbody tr:last-child td[b-4z3l3vblfk] {
    border-bottom: none;
}

.attendance-table tbody tr:hover[b-4z3l3vblfk] {
    background: #fafbfd;
}

.attendance-loading[b-4z3l3vblfk],
.attendance-empty[b-4z3l3vblfk],
.attendance-error[b-4z3l3vblfk] {
    padding: 24px 16px;
    text-align: center;
    border-radius: 8px;
    font-size: 14px;
}

.attendance-loading[b-4z3l3vblfk] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #4b5563;
    background: #f7f9fc;
    border: 1px solid #e6eaf0;
}

.attendance-empty[b-4z3l3vblfk] {
    color: #6b7280;
    background: #f7f9fc;
    border: 1px dashed #d1d5db;
}

.attendance-error[b-4z3l3vblfk] {
    color: #b91c1c;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.attendance-spinner[b-4z3l3vblfk] {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: attendance-spin-b-4z3l3vblfk 0.8s linear infinite;
}

@keyframes attendance-spin-b-4z3l3vblfk {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .attendance-context[b-4z3l3vblfk],
    .attendance-summary[b-4z3l3vblfk] {
        grid-template-columns: 1fr;
    }

    .attendance-table th[b-4z3l3vblfk],
    .attendance-table td[b-4z3l3vblfk] {
        padding: 8px 10px;
        font-size: 12px;
    }
}
