/* /Home.razor.rz.scp.css */
/* Welcome Section */
/*.welcome-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}*/

.welcome-title[b-9l15hmfd2h] {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: black;
}

.welcome-subtitle[b-9l15hmfd2h] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    color: black;
}

/* Grid Toolbar */
.grid-toolbar[b-9l15hmfd2h] {
    background: white;
    border-bottom: 1px solid #dee2e6;
    padding: 0.75rem;
}

/* Landing Page Layout */
.landing-container[b-9l15hmfd2h] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-height: 95vh;
    height: 90vh;
    background-color: #f8f9fa;
}

.content-area[b-9l15hmfd2h] {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 1rem;
    gap: 1rem;
}

.grid-container[b-9l15hmfd2h] {
    flex: 1 1 auto;
    min-height: 0;
    height: 90%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: auto;
    position: relative; /* Required for overlay positioning */
}

/* Grid Filtering Overlay */
.grid-filtering-overlay[b-9l15hmfd2h] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    z-index: 100;
    pointer-events: none;
}

.filtering-indicator[b-9l15hmfd2h] {
    display: flex;
    align-items: center;
    background: white;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    animation: fadeIn-b-9l15hmfd2h 0.15s ease-in-out;
}

@keyframes fadeIn-b-9l15hmfd2h {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid Styling */
.vehicles-grid[b-9l15hmfd2h] {
    height: 95%;
    min-height: 400px;
}

/* Status Indicators */
.ignition-status[b-9l15hmfd2h] {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.ignition-on[b-9l15hmfd2h] {
    background-color: #d4edda;
    color: #155724;
}

.ignition-off[b-9l15hmfd2h] {
    background-color: #f8d7da;
    color: #721c24;
}

.battery-level[b-9l15hmfd2h] {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.battery-high[b-9l15hmfd2h] {
    background-color: #d4edda;
    color: #155724;
}

.battery-medium[b-9l15hmfd2h] {
    background-color: #fff3cd;
    color: #856404;
}

.battery-low[b-9l15hmfd2h] {
    background-color: #f8d7da;
    color: #721c24;
}

.battery-unknown[b-9l15hmfd2h] {
    background-color: #e2e3e5;
    color: #383d41;
}

/* Empty State */
.empty-state[b-9l15hmfd2h] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    color: #6c757d;
}

.empty-icon[b-9l15hmfd2h] {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h3[b-9l15hmfd2h] {
    color: #495057;
    margin-bottom: 0.5rem;
}

.empty-state p[b-9l15hmfd2h] {
    margin-bottom: 1.5rem;
}

/* Loading Overlay */
.loading-overlay[b-9l15hmfd2h] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* ==================== POPUP STYLES (MATCHING VEHICLE MAINTENANCE) ==================== */

/* Popup content wrapper with proper padding */
.popup-content-wrapper[b-9l15hmfd2h] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    gap: 1.5rem;
    overflow: hidden;
}

/* Two-panel layout */
.popup-layout[b-9l15hmfd2h] {
    display: flex;
    flex: 1;
    gap: 1.5rem;
    min-height: 0;
    overflow: hidden;
}

/* Details panel (left side) */
.details-panel[b-9l15hmfd2h] {
    flex: 1;
    overflow-y: auto;
    padding-right: 1rem;
    min-width: 350px;
}

/* Map panel (right side) */
.map-panel[b-9l15hmfd2h] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 400px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.map-header[b-9l15hmfd2h] {
    padding: 0.75rem 1rem;
    background: white;
    border-bottom: 1px solid #dee2e6;
}

    .map-header h5[b-9l15hmfd2h] {
        margin: 0;
        font-size: 1rem;
        font-weight: 600;
        color: #495057;
    }

/* Vehicle detail map */
.vehicle-detail-map[b-9l15hmfd2h] {
    flex: 1;
    width: 100%;
    min-height: 300px;
    background: #e9ecef;
}

/* Map loading overlay */
.map-loading-overlay[b-9l15hmfd2h] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1000;
}

/* Override DevExpress popup body padding */
[b-9l15hmfd2h] .vehicle-popup .dxbl-popup-body {
    padding: 0 !important;
}

[b-9l15hmfd2h] .vehicle-popup .dxbl-popup-content {
    padding: 0 !important;
}

/* Custom scrollbar for details panel */
.details-panel[b-9l15hmfd2h]::-webkit-scrollbar {
    width: 6px;
}

.details-panel[b-9l15hmfd2h]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.details-panel[b-9l15hmfd2h]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

    .details-panel[b-9l15hmfd2h]::-webkit-scrollbar-thumb:hover {
        background: #a1a1a1;
    }

/* ==================== LEGACY POPUP STYLES (FOR BACKWARD COMPATIBILITY) ==================== */

/* Popup Layout - Legacy */
.popup-map-container[b-9l15hmfd2h] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    gap: 1.5rem;
    overflow: hidden;
}

/* Details Section (top) - Legacy */
.vehicle-details-section[b-9l15hmfd2h] {
    flex-shrink: 0;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    max-height: 45%; /* prevents details from consuming full popup */
    overflow-y: auto;
}

/* Map Section (bottom) - Legacy */
.map-section[b-9l15hmfd2h] {
    flex: 1;
    position: relative;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    min-height: 250px;
}

/* Actual map container - Legacy */
.popup-map[b-9l15hmfd2h] {
    width: 100%;
    height: 100%;
    background: #e9ecef;
}

/* When map loads - Legacy */
.map-loading[b-9l15hmfd2h] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1000;
}

/* Marker animation */
.vehicle-location-marker[b-9l15hmfd2h] {
    color: #dc3545;
    font-size: 24px;
    animation: pulse-b-9l15hmfd2h 2s infinite;
}

@keyframes pulse-b-9l15hmfd2h {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Popup container responsive improve */
.vehicle-popup .dx-popup-content[b-9l15hmfd2h] {
    overflow: auto !important;
    padding: 0 !important;
}

/* Ensure FormLayout scrolls properly */
.dx-formlayout[b-9l15hmfd2h] {
    width: 100%;
    box-sizing: border-box;
}

/* ==================== RESPONSIVE STYLES ==================== */

@media (max-width: 1200px) {
    .popup-layout[b-9l15hmfd2h] {
        flex-direction: column;
    }

    .details-panel[b-9l15hmfd2h],
    .map-panel[b-9l15hmfd2h] {
        min-width: 100%;
        flex: none;
    }

    .details-panel[b-9l15hmfd2h] {
        max-height: 50%;
        padding-right: 0;
    }

    .map-panel[b-9l15hmfd2h] {
        flex: 1;
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .landing-container[b-9l15hmfd2h] {
        height: 100vh;
        max-height: 100vh;
    }

    .content-area[b-9l15hmfd2h] {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .welcome-section[b-9l15hmfd2h] {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }

    .welcome-title[b-9l15hmfd2h] {
        font-size: 1.5rem;
    }

    .welcome-subtitle[b-9l15hmfd2h] {
        font-size: 1rem;
    }

    .grid-container[b-9l15hmfd2h] {
        border-radius: 4px;
    }

    .empty-state[b-9l15hmfd2h] {
        padding: 2rem 1rem;
    }

    .empty-icon[b-9l15hmfd2h] {
        font-size: 3rem;
    }

    /* Popup responsive adjustments */
    .popup-content-wrapper[b-9l15hmfd2h] {
        padding: 1rem;
        gap: 1rem;
    }

    .vehicle-details-section[b-9l15hmfd2h] {
        max-height: 55%;
    }

    .map-section[b-9l15hmfd2h] {
        min-height: 200px;
    }

    /* Filtering indicator mobile */
    .filtering-indicator[b-9l15hmfd2h] {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .landing-container[b-9l15hmfd2h] {
        height: 100vh;
        max-height: 100vh;
    }

    .content-area[b-9l15hmfd2h] {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .welcome-section[b-9l15hmfd2h] {
        padding: 1.75rem;
    }
}

@media (min-width: 1201px) {
    .landing-container[b-9l15hmfd2h] {
        height: 100vh;
        max-height: 95vh;
    }

    .content-area[b-9l15hmfd2h] {
        padding: 1rem;
        gap: 1rem;
    }
}

/* Ensure grid responsiveness */
[b-9l15hmfd2h] .dxbl-grid {
    height: 100% !important;
}

[b-9l15hmfd2h] .dxbl-grid-container {
    height: 100% !important;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.app-container[b-7o6ivnqxz3] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header styling */
header[b-7o6ivnqxz3] {
    flex-shrink: 0;
    background: white;
    z-index: 1000;
    position: relative;
}

/* Main menu - prevent collapse on desktop */
.main-menu[b-7o6ivnqxz3] {
    width: 100%;
}

    .main-menu .dxbl-menu-items[b-7o6ivnqxz3] {
        flex-wrap: nowrap;
    }

.dx-menu-item[b-7o6ivnqxz3] {
    position: relative;
    transition: all 0.2s ease;
    white-space: nowrap;
}

    .dx-menu-item:hover[b-7o6ivnqxz3] {
        background-color: rgba(0, 123, 255, 0.1);
        color: #007bff;
        border-radius: 0.25rem;
    }

    /* Active menu item */
    .dx-menu-item.dx-menu-item-selected[b-7o6ivnqxz3] {
        background-color: #007bff;
        color: white !important;
        font-weight: 600;
        border-radius: 0.25rem;
    }

    /* Submenu styling */
    .dx-menu-item > .dx-submenu[b-7o6ivnqxz3] {
        opacity: 0;
        transform: translateY(-5px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .dx-menu-item:hover > .dx-submenu[b-7o6ivnqxz3],
    .dx-menu-item.dx-menu-item-selected > .dx-submenu[b-7o6ivnqxz3] {
        opacity: 1;
        transform: translateY(0);
    }

/* Icons */
.menu-icon[b-7o6ivnqxz3] {
    margin-right: 0.4rem;
    font-size: 0.9rem;
}

/* User greeting - interactive with how-to dropdown */
.user-greeting-interactive[b-7o6ivnqxz3] {
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-greeting-interactive:hover[b-7o6ivnqxz3] {
    background-color: rgba(13, 202, 240, 0.1);
    border-radius: 0.25rem;
}

.how-to-icon[b-7o6ivnqxz3] {
    font-size: 0.85rem;
    animation: pulse-help-b-7o6ivnqxz3 2s ease-in-out infinite;
}

@keyframes pulse-help-b-7o6ivnqxz3 {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; transform: scale(1.1); }
}

.how-to-item[b-7o6ivnqxz3] {
    font-size: 0.85rem;
}

/* Main content area */
.main-content[b-7o6ivnqxz3] {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 70px);
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

    .main-content > *[b-7o6ivnqxz3] {
        flex: 1 1 auto;
        width: 100%;
    }

/* Menu base styling */
.dxbl-menu[b-7o6ivnqxz3] {
    background: transparent !important;
    border: none !important;
}

.dxbl-menu-item[b-7o6ivnqxz3] {
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
}

/* Desktop - Full menu display (1200px+) */
@media (min-width: 1200px) {
    .dxbl-menu-items[b-7o6ivnqxz3] {
        gap: 0.25rem;
    }

    .dxbl-menu-item[b-7o6ivnqxz3] {
        font-size: 0.875rem;
        padding: 0.5rem 0.65rem;
    }
}

/* Large desktop (1400px+) */
@media (min-width: 1400px) {
    .dxbl-menu-item[b-7o6ivnqxz3] {
        font-size: 0.9rem;
        padding: 0.5rem 0.85rem;
    }

    .main-content[b-7o6ivnqxz3] {
        min-height: calc(100vh - 70px);
    }
}

/* Medium screens (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .dxbl-menu-item[b-7o6ivnqxz3] {
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
    }

    .menu-icon[b-7o6ivnqxz3] {
        margin-right: 0.25rem;
        font-size: 0.85rem;
    }

    .d-flex.align-items-center.gap-3 h1[b-7o6ivnqxz3] {
        font-size: 1.1rem;
    }
}

/* Tablet and below (below 992px) - Allow hamburger menu */
@media (max-width: 991px) {
    header[b-7o6ivnqxz3] {
        padding: 0.5rem 1rem !important;
    }

    .main-content[b-7o6ivnqxz3] {
        min-height: calc(100vh - 100px);
    }
}

/* Mobile (below 768px) */
@media (max-width: 767px) {
    header[b-7o6ivnqxz3] {
        padding: 0.5rem !important;
    }

    img[alt="Kempston Logo"][b-7o6ivnqxz3] {
        height: 35px !important;
    }

    .main-content[b-7o6ivnqxz3] {
        min-height: calc(100vh - 120px);
    }
}

/* Small mobile (below 576px) */
@media (max-width: 575px) {
    .dxbl-menu-item-text[b-7o6ivnqxz3] {
        font-size: 0.85rem;
    }

    img[alt="Kempston Logo"][b-7o6ivnqxz3] {
        height: 30px !important;
    }
}

/* Print styles */
@media print {
    header[b-7o6ivnqxz3] {
        display: none;
    }

    .main-content[b-7o6ivnqxz3] {
        min-height: auto;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .dx-menu-item[b-7o6ivnqxz3],
    .dx-menu-item > .dx-submenu[b-7o6ivnqxz3] {
        transition: none;
    }
}
/* /Pages/Account/AccessDenied.razor.rz.scp.css */
/* Page container to center everything */
.page-container[b-q1l21twjkg] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Message styling */
.message[b-q1l21twjkg] {
    font-size: 2.5rem;
    font-weight: bold;
    color: black;
    text-align: center;
    margin-bottom: 1rem;
    animation: flux-b-q1l21twjkg 3s ease-in-out infinite;
}

.message2[b-q1l21twjkg] {
    font-size: 1.2rem;
    color: black;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.5;
}

/* Container for the door animation */
.container[b-q1l21twjkg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.neon[b-q1l21twjkg] {
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trash[b-q1l21twjkg] {
    width: 170px;
    height: 220px;
    background-color: #585F67;
    margin: 0 auto;
}

.can[b-q1l21twjkg] {
    width: 190px;
    height: 30px;
    background-color: #6B737C;
    border-radius: 15px 15px 0 0;
    margin: 0 auto;
}

.door-frame[b-q1l21twjkg] {
    height: 495px;
    width: 295px;
    border-radius: 90px 90px 0 0;
    background-color: #8594A5;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.door[b-q1l21twjkg] {
    height: 450px;
    width: 250px;
    border-radius: 70px 70px 0 0;
    background-color: #A0AEC0;
    position: relative;
}

.eye[b-q1l21twjkg] {
    position: absolute;
    top: 15px;
    left: 25px;
    height: 5px;
    width: 15px;
    border-radius: 50%;
    background-color: white;
    animation: eye-b-q1l21twjkg 7s ease-in-out infinite;
}

.eye2[b-q1l21twjkg] {
    left: 65px;
}

.window[b-q1l21twjkg] {
    height: 40px;
    width: 130px;
    background-color: #1C2127;
    border-radius: 3px;
    margin: 80px auto 0;
    position: relative;
    overflow: hidden;
}

.leaf[b-q1l21twjkg] {
    height: 40px;
    width: 130px;
    background-color: #8594A5;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 0;
    animation: leaf-b-q1l21twjkg 7s infinite;
    transform-origin: right;
}

.handle[b-q1l21twjkg] {
    height: 8px;
    width: 50px;
    border-radius: 4px;
    background-color: #EBF3FC;
    position: absolute;
    top: 250px;
    left: 30px;
}

.rectangle[b-q1l21twjkg] {
    height: 70px;
    width: 25px;
    background-color: #CBD8E6;
    border-radius: 4px;
    position: absolute;
    top: 220px;
    left: 20px;
}

/* Animations */
@keyframes leaf-b-q1l21twjkg {
    0% {
        transform: scaleX(1);
    }

    5% {
        transform: scaleX(0.2);
    }

    70% {
        transform: scaleX(0.2);
    }

    75% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(1);
    }
}

@keyframes eye-b-q1l21twjkg {
    0% {
        opacity: 0;
        transform: translateX(0);
    }

    5% {
        opacity: 0;
    }

    15% {
        opacity: 1;
        transform: translateX(0);
    }

    20% {
        transform: translateX(15px);
    }

    35% {
        transform: translateX(15px);
    }

    40% {
        transform: translateX(-15px);
    }

    60% {
        transform: translateX(-15px);
    }

    65% {
        transform: translateX(0);
    }

    70% {
        opacity: 1;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes flux-b-q1l21twjkg {
    0%, 100% {
        text-shadow:
        /* black edge + depth */
        1px 1px 0 #000000, 2px 2px 3px rgba(0, 0, 0, 0.9),
        /* yellow glow */
        0 0 5px #FFD84D, 0 0 15px #FFD84D, 0 0 50px #FFEA00, 0 0 50px #FFF6B0, 0 0 2px #FFF2A6;
        color: #FFE600;
    }

    50% {
        text-shadow:
        /* black edge + depth */
        1px 1px 0 #000000, 2px 2px 3px rgba(0, 0, 0, 0.85),
        /* reduced glow for pulse */
        0 0 3px #FFD84D, 0 0 7px #FFD84D, 0 0 25px #FFEA00, 0 0 25px #FFF6B0, 0 0 2px #FFF2A6;
        color: #FFD000;
    }
}


/* Responsive design */
@media (max-width: 768px) {
    .page-container[b-q1l21twjkg] {
        padding: 1rem;
    }

    .message[b-q1l21twjkg] {
        font-size: 2rem;
    }

    .message2[b-q1l21twjkg] {
        font-size: 1rem;
    }

    .door-frame[b-q1l21twjkg] {
        height: 400px;
        width: 240px;
    }

    .door[b-q1l21twjkg] {
        height: 360px;
        width: 200px;
    }

    .window[b-q1l21twjkg] {
        width: 100px;
        margin: 60px auto 0;
    }

    .leaf[b-q1l21twjkg] {
        width: 100px;
    }

    .handle[b-q1l21twjkg] {
        top: 200px;
        left: 25px;
        width: 40px;
    }

    .rectangle[b-q1l21twjkg] {
        top: 180px;
        left: 15px;
        height: 60px;
        width: 20px;
    }
}
/* /Pages/Account/Login.razor.rz.scp.css */
/* Reset and base styles */

/* Main page container - Flexible centering */
#page-container[b-1qbgy29jxk] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

    /* Remove fixed container constraints */
    #page-container .container[b-1qbgy29jxk] {
        max-width: none;
        width: 100%;
    }

/* Card styling - Allow natural height */
.card[b-1qbgy29jxk] {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    border: none;
    min-height: auto; /* Remove fixed height */
}

.card-body[b-1qbgy29jxk] {
    padding: 0;
}

/* Remove fixed heights from columns */
.row.no-gutters[b-1qbgy29jxk] {
    min-height: auto;
}

.col-lg-6[b-1qbgy29jxk] {
    min-height: auto;
}

/* Form section - Allow natural content flow */
.p-5[b-1qbgy29jxk] {
    padding: 3rem !important;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Background image section - Flexible height */
.account-block[b-1qbgy29jxk] {
    padding: 0;
    background-image: url('images/login-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 590px; /* Minimum height instead of fixed */
    height: auto;
    position: relative;
    display: flex;
    align-items: flex-end;
}

    .account-block .overlay[b-1qbgy29jxk] {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 0 0.5rem 0.5rem 0;
    }

    .account-block .account-testimonial[b-1qbgy29jxk] {
        text-align: center;
        color: #fff;
        position: relative;
        padding: 2rem 1.75rem;
        width: 100%;
        z-index: 2;
    }

/* Theme colors */
.text-theme[b-1qbgy29jxk] {
    color: #5369f8 !important;
}

.btn-theme[b-1qbgy29jxk] {
    background-color: #5369f8;
    border-color: #5369f8;
    color: #fff;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

    .btn-theme:hover[b-1qbgy29jxk] {
        background-color: #4057f5;
        border-color: #4057f5;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(83, 105, 248, 0.3);
    }

/* Form elements - Better spacing */
.form-label[b-1qbgy29jxk] {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

.input-group[b-1qbgy29jxk] {
    margin-bottom: 0.5rem;
}

.input-group-text[b-1qbgy29jxk] {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-right: none;
}

.form-control[b-1qbgy29jxk] {
    border-left: none;
    padding: 0.75rem;
    height: auto;
}

/* Material icons */
.material-symbols-outlined[b-1qbgy29jxk] {
    font-size: 1.25rem;
    color: #6c757d;
}

/* Responsive design - Prevent squashing on mobile */
@media (max-width: 1199.98px) {
    .p-5[b-1qbgy29jxk] {
        padding: 2rem !important;
    }
}

@media (max-width: 991.98px) {
    #page-container[b-1qbgy29jxk] {
        padding: 0.5rem;
        min-height: 100vh;
        justify-content: flex-start; /* Start from top on mobile */
        padding-top: 2rem;
    }

    .col-lg-6.d-none.d-lg-inline-block[b-1qbgy29jxk] {
        display: none !important;
    }

    .p-5[b-1qbgy29jxk] {
        padding: 2rem !important;
    }

    .card[b-1qbgy29jxk] {
        margin: 0 auto;
        max-width: 500px;
    }
}

@media (max-width: 767.98px) {
    #page-container[b-1qbgy29jxk] {
        padding: 0.25rem;
        justify-content: flex-start;
        padding-top: 1rem;
    }

    .p-5[b-1qbgy29jxk] {
        padding: 1.5rem !important;
    }

    .col-xl-10[b-1qbgy29jxk] {
        padding: 0;
    }

    /* Reduce spacing on very small screens */
    .mb-5[b-1qbgy29jxk] {
        margin-bottom: 1.5rem !important;
    }

    .mb-3[b-1qbgy29jxk] {
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 575.98px) {
    .p-5[b-1qbgy29jxk] {
        padding: 1rem !important;
    }

    h3.h4[b-1qbgy29jxk] {
        font-size: 1.25rem;
    }

    h6.h5[b-1qbgy29jxk] {
        font-size: 1rem;
    }

    .btn-theme[b-1qbgy29jxk] {
        padding: 0.625rem 1.25rem;
    }
}

/* Content sizing fixes */
.mb-5[b-1qbgy29jxk] {
    margin-bottom: 2rem !important;
}

.mb-3[b-1qbgy29jxk] {
    margin-bottom: 1rem !important;
}

.mt-2[b-1qbgy29jxk] {
    margin-top: 0.5rem !important;
}

/* Ensure text doesn't get too small */
h3.h4[b-1qbgy29jxk] {
    font-size: 1.5rem;
    line-height: 1.2;
}

h6.h5[b-1qbgy29jxk] {
    font-size: 1.1rem;
    line-height: 1.3;
}

.lead[b-1qbgy29jxk] {
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Input field sizing */
.input-group .form-control[b-1qbgy29jxk] {
    min-height: 48px; /* Comfortable touch target */
}

/* Button sizing */
.d-grid .btn[b-1qbgy29jxk] {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Remove any max-height constraints */
.card[b-1qbgy29jxk],
.card-body[b-1qbgy29jxk],
.row.no-gutters[b-1qbgy29jxk],
.col-lg-6[b-1qbgy29jxk] {
    max-height: none !important;
}

/* Allow vertical rhythm */
.account-testimonial h4[b-1qbgy29jxk] {
    margin-bottom: 1rem;
}

.account-testimonial .lead[b-1qbgy29jxk] {
    margin-bottom: 0;
}
/* /Pages/Account/Register.razor.rz.scp.css */
/* Reset and base styles */

/* Main page container - Flexible centering */
#page-container[b-j8561bi2pk] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

    /* Remove fixed container constraints */
    #page-container .container[b-j8561bi2pk] {
        max-width: none;
        width: 100%;
    }

/* Card styling - Allow natural height */
.card[b-j8561bi2pk] {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    border: none;
    min-height: auto;
    max-width: 1200px; /* Ensure card doesn't get too wide on large screens */
    width: 100%;
}

.card-body[b-j8561bi2pk] {
    padding: 0;
}

/* Remove fixed heights from columns */
.row.no-gutters[b-j8561bi2pk] {
    min-height: auto;
}

.col-lg-6[b-j8561bi2pk] {
    min-height: auto;
}

/* Form section - Allow natural content flow with better spacing */
.p-5[b-j8561bi2pk] {
    padding: 2.5rem !important;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Start from top for registration form */
    max-height: none;
    overflow-y: auto; /* Allow scrolling if needed */
}

/* Background image section - Flexible height */
.account-block[b-j8561bi2pk] {
    padding: 0;
    background-image: url('images/login-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 700px; /* Increased minimum height for registration content */
    height: auto;
    position: relative;
    display: flex;
    align-items: center; /* Center content vertically */
}

    .account-block .overlay[b-j8561bi2pk] {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 0 0.5rem 0.5rem 0;
    }

    .account-block .account-testimonial[b-j8561bi2pk] {
        text-align: center;
        color: #fff;
        position: relative;
        padding: 2rem 1.75rem;
        width: 100%;
        z-index: 2;
    }

/* Theme colors */
.text-theme[b-j8561bi2pk] {
    color: #5369f8 !important;
}

.btn-theme[b-j8561bi2pk] {
    background-color: #5369f8;
    border-color: #5369f8;
    color: #fff;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

    .btn-theme:hover[b-j8561bi2pk] {
        background-color: #4057f5;
        border-color: #4057f5;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(83, 105, 248, 0.3);
    }

    .btn-theme:disabled[b-j8561bi2pk] {
        background-color: #6c757d;
        border-color: #6c757d;
        transform: none;
        box-shadow: none;
    }

/* Form elements - Better spacing for registration form */
.form-label[b-j8561bi2pk] {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.input-group[b-j8561bi2pk] {
    margin-bottom: 0.25rem;
}

.input-group-text[b-j8561bi2pk] {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-right: none;
    min-width: 45px;
    justify-content: center;
}

.form-control[b-j8561bi2pk] {
    border-left: none;
    padding: 0.65rem 0.75rem;
    height: auto;
    font-size: 0.95rem;
}

/* Compact spacing for registration form */
.mb-3[b-j8561bi2pk] {
    margin-bottom: 1rem !important;
}

.mb-5[b-j8561bi2pk] {
    margin-bottom: 1.5rem !important;
}

/* Material icons */
.material-symbols-outlined[b-j8561bi2pk] {
    font-size: 1.2rem;
    color: #6c757d;
}

/* Alert styling */
.alert[b-j8561bi2pk] {
    border-radius: 0.375rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.alert i[b-j8561bi2pk] {
    margin-right: 0.5rem;
}

/* Loading overlay */
.loading-overlay[b-j8561bi2pk] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Password validation feedback */
.text-success.small[b-j8561bi2pk],
.text-danger.small[b-j8561bi2pk] {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

    .text-success.small i[b-j8561bi2pk],
    .text-danger.small i[b-j8561bi2pk] {
        margin-right: 0.25rem;
        font-size: 0.8rem;
    }

/* Responsive design - Prevent squashing on mobile */
@media (max-width: 1199.98px) {
    .p-5[b-j8561bi2pk] {
        padding: 2rem !important;
    }

    .account-block[b-j8561bi2pk] {
        min-height: 600px;
    }
}

@media (max-width: 991.98px) {
    #page-container[b-j8561bi2pk] {
        padding: 0.5rem;
        min-height: 100vh;
        justify-content: flex-start;
        padding-top: 1rem;
    }

    .col-lg-6.d-none.d-lg-inline-block[b-j8561bi2pk] {
        display: none !important;
    }

    .p-5[b-j8561bi2pk] {
        padding: 1.75rem !important;
    }

    .card[b-j8561bi2pk] {
        margin: 0 auto;
        max-width: 600px;
    }

    .col-xl-10[b-j8561bi2pk] {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    #page-container[b-j8561bi2pk] {
        padding: 0.5rem;
        justify-content: flex-start;
        padding-top: 0.5rem;
    }

    .p-5[b-j8561bi2pk] {
        padding: 1.5rem !important;
    }

    .col-xl-10[b-j8561bi2pk] {
        padding: 0;
    }

    /* Reduce spacing on smaller screens */
    .mb-5[b-j8561bi2pk] {
        margin-bottom: 1rem !important;
    }

    .mb-3[b-j8561bi2pk] {
        margin-bottom: 0.75rem !important;
    }

    /* Smaller form elements on mobile */
    .form-label[b-j8561bi2pk] {
        font-size: 0.9rem;
    }

    .form-control[b-j8561bi2pk] {
        padding: 0.6rem 0.7rem;
        font-size: 0.9rem;
    }

    .input-group-text[b-j8561bi2pk] {
        min-width: 40px;
    }

    .material-symbols-outlined[b-j8561bi2pk] {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .p-5[b-j8561bi2pk] {
        padding: 1.25rem !important;
    }

    h3.h4[b-j8561bi2pk] {
        font-size: 1.25rem;
        line-height: 1.2;
    }

    h6.h5[b-j8561bi2pk] {
        font-size: 1rem;
        line-height: 1.3;
    }

    .btn-theme[b-j8561bi2pk] {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }

    /* Very compact spacing on small screens */
    .mb-3[b-j8561bi2pk] {
        margin-bottom: 0.65rem !important;
    }

    .mb-5[b-j8561bi2pk] {
        margin-bottom: 1rem !important;
    }

    .mt-2[b-j8561bi2pk] {
        margin-top: 0.4rem !important;
    }

    .mt-4[b-j8561bi2pk] {
        margin-top: 1rem !important;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    #page-container[b-j8561bi2pk] {
        padding: 0.25rem;
    }

    .p-5[b-j8561bi2pk] {
        padding: 1rem !important;
    }

    .form-control[b-j8561bi2pk] {
        padding: 0.55rem 0.65rem;
        font-size: 0.85rem;
    }

    .form-label[b-j8561bi2pk] {
        font-size: 0.85rem;
    }

    .btn-theme[b-j8561bi2pk] {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    h3.h4[b-j8561bi2pk] {
        font-size: 1.1rem;
    }
}

/* Content sizing fixes */
.lead[b-j8561bi2pk] {
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Input field sizing - consistent touch targets */
.input-group .form-control[b-j8561bi2pk] {
    min-height: 44px;
}

/* Button sizing - consistent touch targets */
.d-grid .btn[b-j8561bi2pk] {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Remove any max-height constraints */
.card[b-j8561bi2pk],
.card-body[b-j8561bi2pk],
.row.no-gutters[b-j8561bi2pk],
.col-lg-6[b-j8561bi2pk] {
    max-height: none !important;
}

/* Testimonial section responsive text */
.account-testimonial h4[b-j8561bi2pk] {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.account-testimonial .lead[b-j8561bi2pk] {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.account-testimonial ul[b-j8561bi2pk] {
    list-style: none;
    padding-left: 0;
}

.account-testimonial ul li[b-j8561bi2pk] {
    padding: 0.25rem 0;
    font-size: 0.95rem;
}

/* Ensure proper vertical rhythm */
@media (min-height: 800px) {
    #page-container[b-j8561bi2pk] {
        justify-content: center;
    }

    .account-block[b-j8561bi2pk] {
        align-items: center;
    }
}

/* Print styles */
@media print {
    #page-container[b-j8561bi2pk] {
        min-height: auto;
        padding: 1rem;
    }

    .account-block[b-j8561bi2pk] {
        display: none;
    }

    .col-lg-6[b-j8561bi2pk] {
        width: 100% !important;
    }
}

/* Focus styles for accessibility */
.form-control:focus[b-j8561bi2pk] {
    border-color: #5369f8;
    box-shadow: 0 0 0 0.2rem rgba(83, 105, 248, 0.25);
}

.btn-theme:focus[b-j8561bi2pk] {
    box-shadow: 0 0 0 0.2rem rgba(83, 105, 248, 0.5);
}

/* Ensure consistent select styling */
select.form-control[b-j8561bi2pk] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}
/* /Pages/Account/Reset-Password.razor.rz.scp.css */
/* Reset and base styles */

/* Main page container - Flexible centering */
#page-container[b-ttq85wpsaa] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

    /* Remove fixed container constraints */
    #page-container .container[b-ttq85wpsaa] {
        max-width: none;
        width: 100%;
    }

/* Card styling - Allow natural height */
.card[b-ttq85wpsaa] {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    border: none;
    min-height: auto; /* Remove fixed height */
}

.card-body[b-ttq85wpsaa] {
    padding: 0;
}

/* Remove fixed heights from columns */
.row.no-gutters[b-ttq85wpsaa] {
    min-height: auto;
}

.col-lg-6[b-ttq85wpsaa] {
    min-height: auto;
}

/* Form section - Allow natural content flow */
.p-5[b-ttq85wpsaa] {
    padding: 3rem !important;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Background image section - Flexible height */
.account-block[b-ttq85wpsaa] {
    padding: 0;
    background-image: url('images/login-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 590px; /* Minimum height instead of fixed */
    height: auto;
    position: relative;
    display: flex;
    align-items: flex-end;
}

    .account-block .overlay[b-ttq85wpsaa] {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 0 0.5rem 0.5rem 0;
    }

    .account-block .account-testimonial[b-ttq85wpsaa] {
        text-align: center;
        color: #fff;
        position: relative;
        padding: 2rem 1.75rem;
        width: 100%;
        z-index: 2;
    }

/* Theme colors */
.text-theme[b-ttq85wpsaa] {
    color: #5369f8 !important;
}

.btn-theme[b-ttq85wpsaa] {
    background-color: #5369f8;
    border-color: #5369f8;
    color: #fff;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

    .btn-theme:hover[b-ttq85wpsaa] {
        background-color: #4057f5;
        border-color: #4057f5;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(83, 105, 248, 0.3);
    }

/* Form elements - Better spacing */
.form-label[b-ttq85wpsaa] {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

.input-group[b-ttq85wpsaa] {
    margin-bottom: 0.5rem;
}

.input-group-text[b-ttq85wpsaa] {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-right: none;
}

.form-control[b-ttq85wpsaa] {
    border-left: none;
    padding: 0.75rem;
    height: auto;
}

/* Material icons */
.material-symbols-outlined[b-ttq85wpsaa] {
    font-size: 1.25rem;
    color: #6c757d;
}

/* Responsive design - Prevent squashing on mobile */
@media (max-width: 1199.98px) {
    .p-5[b-ttq85wpsaa] {
        padding: 2rem !important;
    }
}

@media (max-width: 991.98px) {
    #page-container[b-ttq85wpsaa] {
        padding: 0.5rem;
        min-height: 100vh;
        justify-content: flex-start; /* Start from top on mobile */
        padding-top: 2rem;
    }

    .col-lg-6.d-none.d-lg-inline-block[b-ttq85wpsaa] {
        display: none !important;
    }

    .p-5[b-ttq85wpsaa] {
        padding: 2rem !important;
    }

    .card[b-ttq85wpsaa] {
        margin: 0 auto;
        max-width: 500px;
    }
}

@media (max-width: 767.98px) {
    #page-container[b-ttq85wpsaa] {
        padding: 0.25rem;
        justify-content: flex-start;
        padding-top: 1rem;
    }

    .p-5[b-ttq85wpsaa] {
        padding: 1.5rem !important;
    }

    .col-xl-10[b-ttq85wpsaa] {
        padding: 0;
    }

    /* Reduce spacing on very small screens */
    .mb-5[b-ttq85wpsaa] {
        margin-bottom: 1.5rem !important;
    }

    .mb-3[b-ttq85wpsaa] {
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 575.98px) {
    .p-5[b-ttq85wpsaa] {
        padding: 1rem !important;
    }

    h3.h4[b-ttq85wpsaa] {
        font-size: 1.25rem;
    }

    h6.h5[b-ttq85wpsaa] {
        font-size: 1rem;
    }

    .btn-theme[b-ttq85wpsaa] {
        padding: 0.625rem 1.25rem;
    }
}

/* Content sizing fixes */
.mb-5[b-ttq85wpsaa] {
    margin-bottom: 2rem !important;
}

.mb-3[b-ttq85wpsaa] {
    margin-bottom: 1rem !important;
}

.mt-2[b-ttq85wpsaa] {
    margin-top: 0.5rem !important;
}

/* Ensure text doesn't get too small */
h3.h4[b-ttq85wpsaa] {
    font-size: 1.5rem;
    line-height: 1.2;
}

h6.h5[b-ttq85wpsaa] {
    font-size: 1.1rem;
    line-height: 1.3;
}

.lead[b-ttq85wpsaa] {
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Input field sizing */
.input-group .form-control[b-ttq85wpsaa] {
    min-height: 48px; /* Comfortable touch target */
}

/* Button sizing */
.d-grid .btn[b-ttq85wpsaa] {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Remove any max-height constraints */
.card[b-ttq85wpsaa],
.card-body[b-ttq85wpsaa],
.row.no-gutters[b-ttq85wpsaa],
.col-lg-6[b-ttq85wpsaa] {
    max-height: none !important;
}

/* Allow vertical rhythm */
.account-testimonial h4[b-ttq85wpsaa] {
    margin-bottom: 1rem;
}

.account-testimonial .lead[b-ttq85wpsaa] {
    margin-bottom: 0;
}
/* /Pages/Admin/Create-Modify-Group.razor.rz.scp.css */
/* ── Page wrapper ─────────────────────────────────── */
.group-edit-page[b-v6txd917zd] {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 80px);
    padding: 1rem;
    gap: 0.75rem;
    background: #f8f9fa;
}

/* ── Card shell ───────────────────────────────────── */
.group-form-card[b-v6txd917zd] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.group-form-header[b-v6txd917zd] {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid #dee2e6;
}

.group-form-header h4[b-v6txd917zd] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #343a40;
}

/* ── Two-panel body ───────────────────────────────── */
.group-form-body[b-v6txd917zd] {
    display: flex;
    flex: 1;
    min-height: 0;
}

.group-left-panel[b-v6txd917zd] {
    width: 38%;
    min-width: 260px;
    padding: 1.25rem;
    border-right: 2px solid #e9ecef;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.group-right-panel[b-v6txd917zd] {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 0;
}

/* ── Footer ───────────────────────────────────────── */
.group-form-footer[b-v6txd917zd] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-top: 2px solid #e9ecef;
    background: #f8f9fa;
}

/* ── Section labels ───────────────────────────────── */
.panel-section-label[b-v6txd917zd] {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

/* ── Timestamps ───────────────────────────────────── */
.form-timestamps[b-v6txd917zd] {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #e9ecef;
    font-size: 0.78rem;
    color: #6c757d;
    line-height: 1.6;
}

/* ── Device assignment container ──────────────────── */
.device-assignment-container[b-v6txd917zd] {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    min-height: 0;
}

.device-list-panel[b-v6txd917zd] {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex: 1;
    min-height: 200px;
}

.device-list-panel.assigned-panel[b-v6txd917zd] {
    border-color: #c3e6cb;
}

.device-panel-header[b-v6txd917zd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0.7rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #495057;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    flex-shrink: 0;
}

.assigned-panel .device-panel-header[b-v6txd917zd] {
    background: #d1e7dd;
    border-bottom-color: #c3e6cb;
    color: #0f5132;
}

.device-list-search[b-v6txd917zd] {
    border: none;
    border-bottom: 1px solid #dee2e6;
    padding: 0.35rem 0.7rem;
    font-size: 0.8rem;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    flex-shrink: 0;
}

.assigned-panel .device-list-search[b-v6txd917zd] {
    border-bottom-color: #c3e6cb;
}

.device-list-scroll[b-v6txd917zd] {
    overflow-y: auto;
    flex: 1;
    max-height: 300px;
    min-height: 180px;
}

.device-checkbox-row[b-v6txd917zd] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.7rem;
    font-size: 0.82rem;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    user-select: none;
    transition: background 0.1s;
    color: #343a40;
}

.device-checkbox-row:hover[b-v6txd917zd] {
    background: #f0f4ff;
}

.device-checkbox-row.selected-row[b-v6txd917zd] {
    background: #dbeafe;
}

.assigned-panel .device-checkbox-row[b-v6txd917zd] {
    background: #f0fff4;
    border-bottom-color: #e8f5e9;
}

.assigned-panel .device-checkbox-row:hover[b-v6txd917zd] {
    background: #d4edda;
}

.assigned-panel .device-checkbox-row.selected-row[b-v6txd917zd] {
    background: #b7dfbf;
}

/* ── Shuttle buttons ──────────────────────────────── */
.shuttle-buttons[b-v6txd917zd] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    min-width: 50px;
    flex-shrink: 0;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
    .group-form-body[b-v6txd917zd] {
        flex-direction: column;
    }

    .group-left-panel[b-v6txd917zd] {
        width: 100%;
        min-width: 0;
        border-right: none;
        border-bottom: 2px solid #e9ecef;
    }

    .device-assignment-container[b-v6txd917zd] {
        min-height: 300px;
    }
}
/* /Pages/Admin/Create-Modify-Legacy-User.razor.rz.scp.css */
/* ── Page wrapper ─────────────────────────────────── */
.legacy-user-page[b-ccu00uj1vi] {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 80px);
    padding: 1rem;
    gap: 0.75rem;
    background: #f8f9fa;
}

/* ── Card ─────────────────────────────────────────── */
.legacy-user-card[b-ccu00uj1vi] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.legacy-user-header[b-ccu00uj1vi] {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid #dee2e6;
}

.legacy-user-header h4[b-ccu00uj1vi] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #343a40;
}

/* ── Two-panel body ───────────────────────────────── */
.legacy-user-body[b-ccu00uj1vi] {
    display: flex;
    flex: 1;
    min-height: 0;
}

.legacy-left-panel[b-ccu00uj1vi] {
    width: 34%;
    min-width: 240px;
    padding: 1.25rem;
    border-right: 2px solid #e9ecef;
    overflow-y: auto;
}

.legacy-right-panel[b-ccu00uj1vi] {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 0;
}

/* ── Footer ───────────────────────────────────────── */
.legacy-user-footer[b-ccu00uj1vi] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-top: 2px solid #e9ecef;
    background: #f8f9fa;
}

/* ── Reuse group shuttle classes from Create-Modify-Group ── */
.panel-section-label[b-ccu00uj1vi] {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.device-assignment-container[b-ccu00uj1vi] {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    min-height: 0;
}

.device-list-panel[b-ccu00uj1vi] {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex: 1;
    min-height: 200px;
}

.device-list-panel.assigned-panel[b-ccu00uj1vi] {
    border-color: #c3e6cb;
}

.device-panel-header[b-ccu00uj1vi] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0.7rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #495057;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    flex-shrink: 0;
}

.assigned-panel .device-panel-header[b-ccu00uj1vi] {
    background: #d1e7dd;
    border-bottom-color: #c3e6cb;
    color: #0f5132;
}

.device-list-search[b-ccu00uj1vi] {
    border: none;
    border-bottom: 1px solid #dee2e6;
    padding: 0.35rem 0.7rem;
    font-size: 0.8rem;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    flex-shrink: 0;
}

.assigned-panel .device-list-search[b-ccu00uj1vi] {
    border-bottom-color: #c3e6cb;
}

.device-list-scroll[b-ccu00uj1vi] {
    overflow-y: auto;
    flex: 1;
    max-height: 300px;
    min-height: 180px;
}

.device-checkbox-row[b-ccu00uj1vi] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.7rem;
    font-size: 0.82rem;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    user-select: none;
    transition: background 0.1s;
    color: #343a40;
}

.device-checkbox-row:hover[b-ccu00uj1vi] { background: #f0f4ff; }
.device-checkbox-row.selected-row[b-ccu00uj1vi] { background: #dbeafe; }

.assigned-panel .device-checkbox-row[b-ccu00uj1vi] {
    background: #f0fff4;
    border-bottom-color: #e8f5e9;
}

.assigned-panel .device-checkbox-row:hover[b-ccu00uj1vi] { background: #d4edda; }
.assigned-panel .device-checkbox-row.selected-row[b-ccu00uj1vi] { background: #b7dfbf; }

.shuttle-buttons[b-ccu00uj1vi] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    min-width: 38px;
    flex-shrink: 0;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
    .legacy-user-body[b-ccu00uj1vi] {
        flex-direction: column;
    }

    .legacy-left-panel[b-ccu00uj1vi] {
        width: 100%;
        min-width: 0;
        border-right: none;
        border-bottom: 2px solid #e9ecef;
    }

    .device-assignment-container[b-ccu00uj1vi] {
        min-height: 300px;
    }
}
/* /Pages/Admin/Create-Modify-User.razor.rz.scp.css */
/* Page Container */
.page-contain[b-kv6wuhadyx] {
    max-width: 50%;
    margin: 0 auto;
    padding: 1rem;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    min-height: 80vh; /* Ensures full viewport height */
}

/* Form Header */
.form-header h2[b-kv6wuhadyx] {
    margin-bottom: 2rem;
    color: #495057;
    font-weight: 500;
}

/* Form Layout */
.user-form-layout[b-kv6wuhadyx] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
}

/* Password Group */
.password-group[b-kv6wuhadyx] {
    display: flex;
    gap: 8px;
    align-items: center;
}

    .password-group .dxbl-textbox[b-kv6wuhadyx] {
        flex: 1;
    }

.alert-success code[b-kv6wuhadyx] {
    font-family: 'Courier New', Consolas, monospace;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.alert-dismissible .btn-close[b-kv6wuhadyx] {
    padding: 0.75rem 1rem;
}

/* Action Section */
.action-section[b-kv6wuhadyx] {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #dee2e6;
}

.action-buttons[b-kv6wuhadyx] {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Loading Overlay */
.loading-overlay[b-kv6wuhadyx] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1000;
}

/* Validation Messages */
[b-kv6wuhadyx] .validation-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

[b-kv6wuhadyx] .validation-summary {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    padding: 1rem;
    color: #721c24;
    margin-top: 1rem;
}

/* Tab Styling */
[b-kv6wuhadyx] .dxbl-form-layout-tab-pages .dxbl-tab-content {
    padding: 1.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-container[b-kv6wuhadyx] {
        padding: 0.5rem;
    }

    .user-form-layout[b-kv6wuhadyx] {
        padding: 1rem;
    }

    .password-group[b-kv6wuhadyx] {
        flex-direction: column;
    }

    .action-buttons[b-kv6wuhadyx] {
        flex-direction: column;
    }

        .action-buttons > *[b-kv6wuhadyx] {
            width: 100%;
        }
}
/* /Pages/Admin/Group-Maintenance.razor.rz.scp.css */
/* Command Buttons */
.command-buttons[b-l1wp5qlkak] {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

/* Grid Toolbar */
.grid-toolbar[b-l1wp5qlkak] {
    background: white;
    border-bottom: 1px solid #dee2e6;
    padding: 0.75rem;
}

/* Landing Page Layout */
.landing-container[b-l1wp5qlkak] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-height: 95vh;
    height: 90vh;
    background-color: #f8f9fa;
}

.content-area[b-l1wp5qlkak] {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 1rem;
    gap: 1rem;
}

.grid-container[b-l1wp5qlkak] {
    flex: 1 1 auto;
    min-height: 0;
    height: 90%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Grid Styling */
.vehicles-grid[b-l1wp5qlkak] {
    height: 95%;
    min-height: 400px;
}

/* Empty State */
.empty-state[b-l1wp5qlkak] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    color: #6c757d;
}

.empty-icon[b-l1wp5qlkak] {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h3[b-l1wp5qlkak] {
    color: #495057;
    margin-bottom: 0.5rem;
}

.empty-state p[b-l1wp5qlkak] {
    margin-bottom: 1.5rem;
}

/* Loading Overlay */
.loading-overlay[b-l1wp5qlkak] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Responsive Design */
@media (max-width: 767px) {
    .landing-container[b-l1wp5qlkak] {
        height: 100vh;
        max-height: 100vh;
    }

    .content-area[b-l1wp5qlkak] {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .grid-container[b-l1wp5qlkak] {
        border-radius: 4px;
    }

    .empty-state[b-l1wp5qlkak] {
        padding: 2rem 1rem;
    }

    .empty-icon[b-l1wp5qlkak] {
        font-size: 3rem;
    }

    .command-buttons[b-l1wp5qlkak] {
        flex-direction: column;
        gap: 4px;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .landing-container[b-l1wp5qlkak] {
        height: 100vh;
        max-height: 100vh;
    }

    .content-area[b-l1wp5qlkak] {
        padding: 0.75rem;
        gap: 0.75rem;
    }
}

@media (min-width: 1201px) {
    .landing-container[b-l1wp5qlkak] {
        height: 100vh;
        max-height: 95vh;
    }

    .content-area[b-l1wp5qlkak] {
        padding: 1rem;
        gap: 1rem;
    }
}

/* Ensure grid responsiveness */
[b-l1wp5qlkak] .dxbl-grid {
    height: 100% !important;
}

[b-l1wp5qlkak] .dxbl-grid-container {
    height: 100% !important;
}

/* Count badges */
[b-l1wp5qlkak] .badge-count {
    display: inline-block;
    border-radius: 10px;
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

[b-l1wp5qlkak] .badge-users {
    background: #e7f1ff;
    color: #0d6efd;
}

[b-l1wp5qlkak] .badge-devices {
    background: #d1e7dd;
    color: #0f5132;
}
/* /Pages/Admin/User-Maintenance.razor.rz.scp.css */
/* Status Badge Styling */
.status-badge[b-uevtzuvrs1] {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    gap: 6px;
}

.status-active[b-uevtzuvrs1] {
    background-color: #d4edda;
    color: #155724;
}

.status-inactive[b-uevtzuvrs1] {
    background-color: #f8d7da;
    color: #721c24;
}

.status-dot[b-uevtzuvrs1] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-active[b-uevtzuvrs1] {
    background-color: #28a745;
}

.dot-inactive[b-uevtzuvrs1] {
    background-color: #dc3545;
}

/* Command Buttons */
.command-buttons[b-uevtzuvrs1] {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

/* Welcome Section */
.welcome-section[b-uevtzuvrs1] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.welcome-title[b-uevtzuvrs1] {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.welcome-subtitle[b-uevtzuvrs1] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Grid Toolbar */
.grid-toolbar[b-uevtzuvrs1] {
    background: white;
    border-bottom: 1px solid #dee2e6;
    padding: 0.75rem;
}

/* Landing Page Layout */
.landing-container[b-uevtzuvrs1] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-height: 95vh;
    height: 90vh;
    background-color: #f8f9fa;
}

.content-area[b-uevtzuvrs1] {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 1rem;
    gap: 1rem;
}

.grid-container[b-uevtzuvrs1] {
    flex: 1 1 auto;
    min-height: 0;
    height: 90%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Grid Styling */
.vehicles-grid[b-uevtzuvrs1] {
    height: 95%;
    min-height: 400px;
}

/* Empty State */
.empty-state[b-uevtzuvrs1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    color: #6c757d;
}

.empty-icon[b-uevtzuvrs1] {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h3[b-uevtzuvrs1] {
    color: #495057;
    margin-bottom: 0.5rem;
}

.empty-state p[b-uevtzuvrs1] {
    margin-bottom: 1.5rem;
}

/* Loading Overlay */
.loading-overlay[b-uevtzuvrs1] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Responsive Design */
@media (max-width: 767px) {
    .landing-container[b-uevtzuvrs1] {
        height: 100vh;
        max-height: 100vh;
    }

    .content-area[b-uevtzuvrs1] {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .welcome-section[b-uevtzuvrs1] {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }

    .welcome-title[b-uevtzuvrs1] {
        font-size: 1.5rem;
    }

    .welcome-subtitle[b-uevtzuvrs1] {
        font-size: 1rem;
    }

    .grid-container[b-uevtzuvrs1] {
        border-radius: 4px;
    }

    .empty-state[b-uevtzuvrs1] {
        padding: 2rem 1rem;
    }

    .empty-icon[b-uevtzuvrs1] {
        font-size: 3rem;
    }

    .command-buttons[b-uevtzuvrs1] {
        flex-direction: column;
        gap: 4px;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .landing-container[b-uevtzuvrs1] {
        height: 100vh;
        max-height: 100vh;
    }

    .content-area[b-uevtzuvrs1] {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .welcome-section[b-uevtzuvrs1] {
        padding: 1.75rem;
    }
}

@media (min-width: 1201px) {
    .landing-container[b-uevtzuvrs1] {
        height: 100vh;
        max-height: 95vh;
    }

    .content-area[b-uevtzuvrs1] {
        padding: 1rem;
        gap: 1rem;
    }
}

/* Ensure grid responsiveness */
[b-uevtzuvrs1] .dxbl-grid {
    height: 100% !important;
}

[b-uevtzuvrs1] .dxbl-grid-container {
    height: 100% !important;
}
/* /Pages/Admin/Vehicle-Edit.razor.rz.scp.css */
/* Page Container */
.page-contain[b-tv3b6mfcjg] {
    padding: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Form Header */
.form-header[b-tv3b6mfcjg] {
    margin-bottom: 24px;
}

.form-header h2[b-tv3b6mfcjg] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

/* Form Card */
.form-card[b-tv3b6mfcjg] {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Form Layout */
.vehicle-form-layout[b-tv3b6mfcjg] {
    gap: 16px;
}

[b-tv3b6mfcjg] .vehicle-form-layout .dxbl-fl-ctrl-cpt {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 6px;
}

[b-tv3b6mfcjg] .vehicle-form-layout .dxbl-fl-item {
    margin-bottom: 16px;
}

/* Text inputs */
[b-tv3b6mfcjg] .vehicle-form-layout .dxbl-text-edit {
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: border-color 0.15s ease;
}

[b-tv3b6mfcjg] .vehicle-form-layout .dxbl-text-edit:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Read-only fields */
[b-tv3b6mfcjg] .vehicle-form-layout .dxbl-text-edit[readonly] {
    background-color: #f9fafb;
    border-color: #e5e7eb;
    color: #6b7280;
}

/* Editable fields - subtle accent */
[b-tv3b6mfcjg] .editable-field {
    border-color: #3b82f6 !important;
    background-color: #fff !important;
}

/* Checkbox styling */
[b-tv3b6mfcjg] .vehicle-form-layout .dxbl-checkbox {
    margin-top: 8px;
}

/* Details Column */
.details-column[b-tv3b6mfcjg] {
    overflow-y: auto;
    max-height: calc(100vh - 160px);
    padding-right: 8px;
}

/* Map Column */
.map-column[b-tv3b6mfcjg] {
    position: sticky;
    top: 24px;
    align-self: flex-start;
}

/* Map Container */
.map-container[b-tv3b6mfcjg] {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 160px);
    min-height: 400px;
}

.map-header[b-tv3b6mfcjg] {
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
}

.map-title[b-tv3b6mfcjg] {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
}

.map-content[b-tv3b6mfcjg] {
    flex: 1;
    position: relative;
    min-height: 0;
}

#vehicleDetailMap[b-tv3b6mfcjg] {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

/* Map Loading Overlay */
.map-loading-overlay[b-tv3b6mfcjg] {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Action Section */
.action-section[b-tv3b6mfcjg] {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f3f4f6;
}

.action-buttons[b-tv3b6mfcjg] {
    display: flex;
    gap: 12px;
}

[b-tv3b6mfcjg] .action-buttons .dxbl-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
}

/* Validation message */
.validation-message[b-tv3b6mfcjg] {
    margin-top: 12px;
    font-size: 0.8125rem;
    color: #dc2626;
}

/* Alert styling */
.alert[b-tv3b6mfcjg] {
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.875rem;
}

.alert-danger[b-tv3b6mfcjg] {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

/* Scrollbar */
.details-column[b-tv3b6mfcjg]::-webkit-scrollbar {
    width: 6px;
}

.details-column[b-tv3b6mfcjg]::-webkit-scrollbar-track {
    background: transparent;
}

.details-column[b-tv3b6mfcjg]::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.details-column[b-tv3b6mfcjg]::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Responsive */
@media (max-width: 991px) {
    .page-contain[b-tv3b6mfcjg] {
        padding: 16px;
    }

    .details-column[b-tv3b6mfcjg] {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
        margin-bottom: 24px;
    }

    .map-column[b-tv3b6mfcjg] {
        position: relative;
        top: 0;
    }

    .map-container[b-tv3b6mfcjg] {
        height: 350px;
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .page-contain[b-tv3b6mfcjg] {
        padding: 12px;
    }

    .form-card[b-tv3b6mfcjg] {
        padding: 16px;
        border-radius: 8px;
    }

    .form-header h2[b-tv3b6mfcjg] {
        font-size: 1.25rem;
    }

    .action-buttons[b-tv3b6mfcjg] {
        flex-direction: column;
    }

    [b-tv3b6mfcjg] .action-buttons .dxbl-btn {
        width: 100%;
    }
}

/* Tracker Action Bar */
.tracker-action-bar[b-tv3b6mfcjg] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: #f0f7ff;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    flex-wrap: wrap;
}

.tracker-action-bar-label[b-tv3b6mfcjg] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex: 1;
    min-width: 80px;
}

/* Unlink Tracker button — white bg with red text/border */
[b-tv3b6mfcjg] .unlink-tracker-btn.dxbl-btn {
    background-color: #fff;
    color: #dc2626;
    border: 1px solid #fecaca;
}

[b-tv3b6mfcjg] .unlink-tracker-btn.dxbl-btn:hover:not(:disabled) {
    background-color: #fef2f2;
    border-color: #f87171;
}

/* ── Popup body ──────────────────────────────── */
.popup-body-inner[b-tv3b6mfcjg] {
    padding: 16px 20px 8px;
}

/* ── Callout banners ─────────────────────────── */
.popup-callout[b-tv3b6mfcjg] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.8125rem;
    line-height: 1.5;
}

    .popup-callout i[b-tv3b6mfcjg] {
        font-size: 0.875rem;
        margin-top: 2px;
        flex-shrink: 0;
    }

.popup-callout-info[b-tv3b6mfcjg] {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

.popup-callout-warn[b-tv3b6mfcjg] {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

/* ── Checkbox card group ─────────────────────── */
.popup-check-group[b-tv3b6mfcjg] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.popup-check-item[b-tv3b6mfcjg] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: border-color 0.15s ease, background-color 0.15s ease;
    user-select: none;
}

    .popup-check-item:hover[b-tv3b6mfcjg] {
        border-color: #93c5fd;
        background-color: #f0f7ff;
    }

.popup-check-item--checked[b-tv3b6mfcjg] {
    border-color: #3b82f6 !important;
    background-color: #eff6ff !important;
}

.popup-check-item-checkbox[b-tv3b6mfcjg] {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.popup-check-item-content[b-tv3b6mfcjg] {
    flex: 1;
    min-width: 0;
}

.popup-check-item-label[b-tv3b6mfcjg] {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    line-height: 1.3;
}

.popup-check-item-desc[b-tv3b6mfcjg] {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 2px;
}

/* ── DevExpress overrides inside popups ──────── */
[b-tv3b6mfcjg] .popup-body-inner .dxbl-fl-ctrl-cpt {
    font-size: 0.8rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

[b-tv3b6mfcjg] .popup-body-inner .dxbl-fl-item {
    margin-bottom: 12px;
}

/* Hide DxCheckBox built-in text label inside cards — label is our own element */
[b-tv3b6mfcjg] .popup-check-item-checkbox .dxbl-checkbox-text {
    display: none;
}

/* ── Action Toast ────────────────────────────── */
.tracker-toast[b-tv3b6mfcjg] {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    min-width: 300px;
    max-width: 440px;
    animation: toastSlideIn-b-tv3b6mfcjg 0.25s ease;
}

@keyframes toastSlideIn-b-tv3b6mfcjg {
    from { transform: translateY(16px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.tracker-toast--success[b-tv3b6mfcjg] {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

.tracker-toast--error[b-tv3b6mfcjg] {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.tracker-toast-icon[b-tv3b6mfcjg] {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.tracker-toast-body[b-tv3b6mfcjg] {
    flex: 1;
    min-width: 0;
}

.tracker-toast-title[b-tv3b6mfcjg] {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.3;
}

.tracker-toast-message[b-tv3b6mfcjg] {
    font-size: 0.8rem;
    margin-top: 3px;
    opacity: 0.85;
    line-height: 1.4;
}

.tracker-toast-close[b-tv3b6mfcjg] {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    opacity: 0.55;
    padding: 0 4px;
    color: inherit;
    flex-shrink: 0;
    line-height: 1;
}

    .tracker-toast-close:hover[b-tv3b6mfcjg] {
        opacity: 1;
    }

/* ── Group Assignment Section ─────────────────────── */
.group-assignment-section[b-tv3b6mfcjg] {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
    margin-top: 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.group-assignment-header[b-tv3b6mfcjg] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.group-section-label[b-tv3b6mfcjg] {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
}

.group-count-badge[b-tv3b6mfcjg] {
    background: #0d6efd;
    color: white;
    font-size: 0.65rem;
    border-radius: 10px;
    padding: 1px 8px;
    font-weight: 600;
}

.group-loading[b-tv3b6mfcjg] {
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
}

.group-search-wrap[b-tv3b6mfcjg] {
    position: relative;
    display: flex;
    align-items: center;
}

.group-search-icon[b-tv3b6mfcjg] {
    position: absolute;
    left: 8px;
    color: #adb5bd;
    font-size: 0.75rem;
    pointer-events: none;
}

.group-search-input[b-tv3b6mfcjg] {
    width: 100%;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 5px 8px 5px 26px;
    font-size: 0.8rem;
    outline: none;
    transition: border-color 0.15s;
}

.group-search-input:focus[b-tv3b6mfcjg] {
    border-color: #86b7fe;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.15);
}

.group-checklist-scroll[b-tv3b6mfcjg] {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    overflow-y: auto;
    max-height: 180px;
}

.group-checklist-row[b-tv3b6mfcjg] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    user-select: none;
    transition: background 0.1s;
}

.group-checklist-row:last-child[b-tv3b6mfcjg] {
    border-bottom: none;
}

.group-checklist-row:hover:not(.group-row--locked)[b-tv3b6mfcjg] {
    background: #f0f4ff;
}

.group-row--locked[b-tv3b6mfcjg] {
    background: #fff8e1;
    cursor: default;
}

.group-row--checked:not(.group-row--locked)[b-tv3b6mfcjg] {
    background: #f0fff4;
}

.group-row-id[b-tv3b6mfcjg] {
    font-weight: 500;
    color: #212529;
    flex-shrink: 0;
}

.group-row-desc[b-tv3b6mfcjg] {
    color: #6c757d;
    font-size: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.group-locked-badge[b-tv3b6mfcjg] {
    margin-left: auto;
    font-size: 0.65rem;
    color: #adb5bd;
    background: #f0f0f0;
    border-radius: 8px;
    padding: 1px 6px;
    flex-shrink: 0;
}

.group-no-results[b-tv3b6mfcjg] {
    padding: 12px;
    font-size: 0.8rem;
    color: #6c757d;
    text-align: center;
}
/* /Pages/Admin/Vehicle-Maintenace.razor.rz.scp.css */
/* Welcome Section */
.welcome-title[b-x7umhlioch] {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: black;
}

.welcome-subtitle[b-x7umhlioch] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    color: black;
}

/* Grid Toolbar */
.grid-toolbar[b-x7umhlioch] {
    background: white;
    border-bottom: 1px solid #dee2e6;
    padding: 0.75rem;
}

/* Landing Page Layout */
.landing-container[b-x7umhlioch] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-height: 95vh;
    height: 90vh;
    background-color: #f8f9fa;
}

.content-area[b-x7umhlioch] {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 1rem;
    gap: 1rem;
}

.grid-container[b-x7umhlioch] {
    flex: 1 1 auto;
    min-height: 0;
    height: 90%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Grid Styling */
.vehicles-grid[b-x7umhlioch] {
    height: 95%;
    min-height: 400px;
}

/* Status Indicators */
.ignition-status[b-x7umhlioch] {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.ignition-on[b-x7umhlioch] {
    background-color: #d4edda;
    color: #155724;
}

.ignition-off[b-x7umhlioch] {
    background-color: #f8d7da;
    color: #721c24;
}

.battery-level[b-x7umhlioch] {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.battery-high[b-x7umhlioch] {
    background-color: #d4edda;
    color: #155724;
}

.battery-medium[b-x7umhlioch] {
    background-color: #fff3cd;
    color: #856404;
}

.battery-low[b-x7umhlioch] {
    background-color: #f8d7da;
    color: #721c24;
}

.battery-unknown[b-x7umhlioch] {
    background-color: #e2e3e5;
    color: #383d41;
}

/* Empty State */
.empty-state[b-x7umhlioch] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    color: #6c757d;
}

.empty-icon[b-x7umhlioch] {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h3[b-x7umhlioch] {
    color: #495057;
    margin-bottom: 0.5rem;
}

.empty-state p[b-x7umhlioch] {
    margin-bottom: 1.5rem;
}

/* Loading Overlay */
.loading-overlay[b-x7umhlioch] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* ==================== POPUP STYLES ==================== */

/* Popup content wrapper with proper padding */
.popup-content-wrapper[b-x7umhlioch] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    gap: 1.5rem;
    overflow: hidden;
}

/* Two-panel layout */
.popup-layout[b-x7umhlioch] {
    display: flex;
    flex: 1;
    gap: 1.5rem;
    min-height: 0;
    overflow: hidden;
}

/* Details panel (left side) */
.details-panel[b-x7umhlioch] {
    flex: 1;
    overflow-y: auto;
    padding-right: 1rem;
    min-width: 400px;
}

/* Map panel (right side) */
.map-panel[b-x7umhlioch] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 400px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.map-header[b-x7umhlioch] {
    padding: 0.75rem 1rem;
    background: white;
    border-bottom: 1px solid #dee2e6;
}

    .map-header h5[b-x7umhlioch] {
        margin: 0;
        font-size: 1rem;
        font-weight: 600;
        color: #495057;
    }

/* Vehicle detail map */
.vehicle-detail-map[b-x7umhlioch] {
    flex: 1;
    width: 100%;
    min-height: 300px;
    background: #e9ecef;
}

/* Action buttons section */
.popup-actions[b-x7umhlioch] {
    display: flex;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    flex-shrink: 0;
}

/* Override DevExpress popup body padding */
[b-x7umhlioch] .vehicle-popup .dxbl-popup-body {
    padding: 0 !important;
}

[b-x7umhlioch] .vehicle-popup .dxbl-popup-content {
    padding: 0 !important;
}

/* Form layout adjustments inside popup */
[b-x7umhlioch] .details-panel .dxbl-fl-group {
    margin-bottom: 1rem;
}

[b-x7umhlioch] .details-panel .dxbl-fl-group-caption {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 0.75rem;
}

/* Custom scrollbar for details panel */
.details-panel[b-x7umhlioch]::-webkit-scrollbar {
    width: 6px;
}

.details-panel[b-x7umhlioch]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.details-panel[b-x7umhlioch]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

    .details-panel[b-x7umhlioch]::-webkit-scrollbar-thumb:hover {
        background: #a1a1a1;
    }

/* ==================== RESPONSIVE STYLES ==================== */

@media (max-width: 1200px) {
    .popup-layout[b-x7umhlioch] {
        flex-direction: column;
    }

    .details-panel[b-x7umhlioch],
    .map-panel[b-x7umhlioch] {
        min-width: 100%;
        flex: none;
    }

    .details-panel[b-x7umhlioch] {
        max-height: 50%;
        padding-right: 0;
    }

    .map-panel[b-x7umhlioch] {
        flex: 1;
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .landing-container[b-x7umhlioch] {
        height: 100vh;
        max-height: 100vh;
    }

    .content-area[b-x7umhlioch] {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .welcome-section[b-x7umhlioch] {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }

    .welcome-title[b-x7umhlioch] {
        font-size: 1.5rem;
    }

    .welcome-subtitle[b-x7umhlioch] {
        font-size: 1rem;
    }

    .grid-container[b-x7umhlioch] {
        border-radius: 4px;
    }

    .empty-state[b-x7umhlioch] {
        padding: 2rem 1rem;
    }

    .empty-icon[b-x7umhlioch] {
        font-size: 3rem;
    }

    .popup-content-wrapper[b-x7umhlioch] {
        padding: 1rem;
        gap: 1rem;
    }

    .popup-actions[b-x7umhlioch] {
        flex-wrap: wrap;
    }

        .popup-actions .dxbl-btn[b-x7umhlioch] {
            flex: 1 1 auto;
            min-width: 120px;
        }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .landing-container[b-x7umhlioch] {
        height: 100vh;
        max-height: 100vh;
    }

    .content-area[b-x7umhlioch] {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .welcome-section[b-x7umhlioch] {
        padding: 1.75rem;
    }
}

@media (min-width: 1201px) {
    .landing-container[b-x7umhlioch] {
        height: 100vh;
        max-height: 95vh;
    }

    .content-area[b-x7umhlioch] {
        padding: 1rem;
        gap: 1rem;
    }
}

/* Ensure grid responsiveness */
[b-x7umhlioch] .dxbl-grid {
    height: 100% !important;
}

[b-x7umhlioch] .dxbl-grid-container {
    height: 100% !important;
}

/* ==================== VEHICLE MODAL CARD STYLES ==================== */

.vehicle-modal-content[b-x7umhlioch] {
    height: 100%;
    overflow: hidden;
}

.vehicle-modal-content .card[b-x7umhlioch] {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.vehicle-modal-content .card-header[b-x7umhlioch] {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    font-weight: 600;
}

.vehicle-modal-content .card-header.bg-primary[b-x7umhlioch] {
    background-color: #0d6efd !important;
}

.vehicle-modal-content .card-title[b-x7umhlioch] {
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
}

.vehicle-modal-content .card-title i[b-x7umhlioch] {
    font-size: 1rem;
}

.vehicle-modal-content .form-label[b-x7umhlioch] {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.vehicle-modal-content .form-label.text-muted[b-x7umhlioch] {
    color: #6c757d !important;
}

/* Read-only field styling */
[b-x7umhlioch] .vehicle-modal-content .dxbl-text-edit[readonly] {
    background-color: #f8f9fa;
    border-color: #e9ecef;
}

/* Editable field styling - subtle highlight */
.vehicle-modal-content .card-header.bg-primary + .card-body .dxbl-text-edit:not([readonly])[b-x7umhlioch] {
    border-color: #0d6efd;
    background-color: #ffffff;
}

/* Override DevExpress popup styles for vehicle popup */
[b-x7umhlioch] .vehicle-popup .dxbl-popup-body {
    padding: 0 !important;
    overflow: hidden !important;
}

[b-x7umhlioch] .vehicle-popup .dxbl-popup-content {
    padding: 0 !important;
    height: 100% !important;
}

[b-x7umhlioch] .vehicle-popup .dxbl-popup-footer {
    border-top: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

/* Map container in card */
.vehicle-modal-content .card .card-body #vehicleDetailMap[b-x7umhlioch] {
    min-height: 400px;
}

/* Scrollbar styling for details panel */
.vehicle-modal-content .col-lg-6:first-child[b-x7umhlioch]::-webkit-scrollbar {
    width: 6px;
}

.vehicle-modal-content .col-lg-6:first-child[b-x7umhlioch]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.vehicle-modal-content .col-lg-6:first-child[b-x7umhlioch]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.vehicle-modal-content .col-lg-6:first-child[b-x7umhlioch]::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* Form switch styling for IsActive toggle */
.vehicle-modal-content .form-check-input:checked[b-x7umhlioch] {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.vehicle-modal-content .form-switch .form-check-input[b-x7umhlioch] {
    width: 3em;
    height: 1.5em;
}

/* ==================== VEHICLE MODAL RESPONSIVE ADJUSTMENTS ==================== */

@media (max-width: 991px) {
    .vehicle-modal-content .row[b-x7umhlioch] {
        flex-direction: column;
    }

    .vehicle-modal-content .col-lg-6[b-x7umhlioch] {
        height: auto !important;
        max-height: 50vh;
    }

    .vehicle-modal-content .col-lg-6:last-child[b-x7umhlioch] {
        min-height: 300px;
    }
}
/* /Pages/Driver/Driver-maintenance.razor.rz.scp.css */
/* Status Badge Styling */
.status-badge[b-dot443b2z7] {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    gap: 6px;
}

.status-active[b-dot443b2z7] {
    background-color: #d4edda;
    color: #155724;
}

.status-inactive[b-dot443b2z7] {
    background-color: #f8d7da;
    color: #721c24;
}

.status-dot[b-dot443b2z7] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-active[b-dot443b2z7] {
    background-color: #28a745;
}

.dot-inactive[b-dot443b2z7] {
    background-color: #dc3545;
}

/* Command Buttons */
.command-buttons[b-dot443b2z7] {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

/* Welcome Section */
.welcome-section[b-dot443b2z7] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.welcome-title[b-dot443b2z7] {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.welcome-subtitle[b-dot443b2z7] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Grid Toolbar */
.grid-toolbar[b-dot443b2z7] {
    background: white;
    border-bottom: 1px solid #dee2e6;
    padding: 0.75rem;
}

/* Landing Page Layout */
.landing-container[b-dot443b2z7] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-height: 95vh;
    height: 90vh;
    background-color: #f8f9fa;
}

.content-area[b-dot443b2z7] {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 1rem;
    gap: 1rem;
}

.grid-container[b-dot443b2z7] {
    flex: 1 1 auto;
    min-height: 0;
    height: 90%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Grid Styling */
.vehicles-grid[b-dot443b2z7] {
    height: 95%;
    min-height: 400px;
}

/* Empty State */
.empty-state[b-dot443b2z7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    color: #6c757d;
}

.empty-icon[b-dot443b2z7] {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h3[b-dot443b2z7] {
    color: #495057;
    margin-bottom: 0.5rem;
}

.empty-state p[b-dot443b2z7] {
    margin-bottom: 1.5rem;
}

/* Loading Overlay */
.loading-overlay[b-dot443b2z7] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Responsive Design */
@media (max-width: 767px) {
    .landing-container[b-dot443b2z7] {
        height: 100vh;
        max-height: 100vh;
    }

    .content-area[b-dot443b2z7] {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .welcome-section[b-dot443b2z7] {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }

    .welcome-title[b-dot443b2z7] {
        font-size: 1.5rem;
    }

    .welcome-subtitle[b-dot443b2z7] {
        font-size: 1rem;
    }

    .grid-container[b-dot443b2z7] {
        border-radius: 4px;
    }

    .empty-state[b-dot443b2z7] {
        padding: 2rem 1rem;
    }

    .empty-icon[b-dot443b2z7] {
        font-size: 3rem;
    }

    .command-buttons[b-dot443b2z7] {
        flex-direction: column;
        gap: 4px;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .landing-container[b-dot443b2z7] {
        height: 100vh;
        max-height: 100vh;
    }

    .content-area[b-dot443b2z7] {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .welcome-section[b-dot443b2z7] {
        padding: 1.75rem;
    }
}

@media (min-width: 1201px) {
    .landing-container[b-dot443b2z7] {
        height: 100vh;
        max-height: 95vh;
    }

    .content-area[b-dot443b2z7] {
        padding: 1rem;
        gap: 1rem;
    }
}

/* Ensure grid responsiveness */
[b-dot443b2z7] .dxbl-grid {
    height: 100% !important;
}

[b-dot443b2z7] .dxbl-grid-container {
    height: 100% !important;
}
/* /Pages/Driver/Driver-schedule.razor.rz.scp.css */
/* Status Badge Styling */
.status-badge[b-igyrwka4w8] {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-planned[b-igyrwka4w8] {
    background-color: #fff3cd;
    color: #856404;
}

.status-active[b-igyrwka4w8] {
    background-color: #d4edda;
    color: #155724;
}

.status-completed[b-igyrwka4w8] {
    background-color: #cce5ff;
    color: #004085;
}

.status-cancelled[b-igyrwka4w8] {
    background-color: #f8d7da;
    color: #721c24;
}

/* Command Buttons */
.command-buttons[b-igyrwka4w8] {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
}

/* Welcome Section */
.welcome-section[b-igyrwka4w8] {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.welcome-title[b-igyrwka4w8] {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.welcome-subtitle[b-igyrwka4w8] {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Grid Toolbar */
.grid-toolbar[b-igyrwka4w8] {
    background: white;
    border-bottom: 1px solid #dee2e6;
    padding: 0.75rem;
}

/* Layout */
.landing-container[b-igyrwka4w8] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-height: 95vh;
    height: 90vh;
    background-color: #f8f9fa;
}

.content-area[b-igyrwka4w8] {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 1rem;
    gap: 0.75rem;
}

.grid-container[b-igyrwka4w8] {
    flex: 1 1 auto;
    min-height: 0;
    height: 90%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.vehicles-grid[b-igyrwka4w8] {
    height: 95%;
    min-height: 400px;
}

/* Loading Overlay */
.loading-overlay[b-igyrwka4w8] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Modal Content */
.schedule-modal-content[b-igyrwka4w8] {
    max-height: 70vh;
    overflow-y: auto;
}

/* Card Styling */
.card[b-igyrwka4w8] {
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.card-header[b-igyrwka4w8] {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.card-title[b-igyrwka4w8] {
    color: #495057;
}

/* Responsive */
@media (max-width: 767px) {
    .landing-container[b-igyrwka4w8] {
        height: 100vh;
        max-height: 100vh;
    }

    .content-area[b-igyrwka4w8] {
        padding: 0.5rem;
    }

    .welcome-section[b-igyrwka4w8] {
        padding: 1rem;
    }

    .welcome-title[b-igyrwka4w8] {
        font-size: 1.25rem;
    }

    .command-buttons[b-igyrwka4w8] {
        flex-direction: column;
        gap: 4px;
    }
}

[b-igyrwka4w8] .dxbl-grid {
    height: 100% !important;
}

[b-igyrwka4w8] .dxbl-grid-container {
    height: 100% !important;
}
/* /Pages/Fuel/FuelPortal.razor.rz.scp.css */
/* Main container styling */
.fuel-portal-container[b-t9z5kekdu6] {
    padding: 1rem;
}

/* Page header styling */
.page-header[b-t9z5kekdu6] {
    margin-bottom: 1.5rem;
}

.page-title[b-t9z5kekdu6] {
    font-size: 2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

/* Card styling */
.card[b-t9z5kekdu6] {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
}

.card-header[b-t9z5kekdu6] {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 1.25rem;
}

/* Info cards for vehicle stats */
.info-card[b-t9z5kekdu6] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    border: 1px solid #e9ecef;
    height: 100%;
}

.info-icon[b-t9z5kekdu6] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    color: white;
    font-size: 1.25rem;
}

.info-content[b-t9z5kekdu6] {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.info-label[b-t9z5kekdu6] {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.info-value[b-t9z5kekdu6] {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Grid styling */
.fuel-grid[b-t9z5kekdu6] {
    border: none;
}

[b-t9z5kekdu6] .fuel-grid .dx-datagrid-content {
    border: none;
}

/* Command buttons in grid */
.command-buttons[b-t9z5kekdu6] {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
}

/* Empty state styling */
.empty-state[b-t9z5kekdu6] {
    text-align: center;
    padding: 3rem 1rem;
    color: #6c757d;
}

.empty-icon[b-t9z5kekdu6] {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h3[b-t9z5kekdu6] {
    color: #495057;
    margin-bottom: 1rem;
}

/* Modal content styling */
.fuel-modal-content[b-t9z5kekdu6] {
    padding: 1rem;
}
.readonly-field[b-t9z5kekdu6] {
    background-color: #f8f9fa !important;
    border-color: #dee2e6 !important;
    cursor: not-allowed;
}

    .readonly-field:focus[b-t9z5kekdu6] {
        box-shadow: none !important;
        background-color: #f8f9fa !important;
    }
/* Loading overlay */
.loading-overlay[b-t9z5kekdu6] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Badge styling for fuel economy */
.badge[b-t9z5kekdu6] {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
}

/* Responsive breakpoints */

/* Mobile devices (576px and down) */
@media (max-width: 576px) {
    .fuel-portal-container[b-t9z5kekdu6] {
        padding: 0.5rem;
    }

    .page-title[b-t9z5kekdu6] {
        font-size: 1.5rem;
    }

    .card-body[b-t9z5kekdu6] {
        padding: 1rem;
    }

    .info-card[b-t9z5kekdu6] {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .info-icon[b-t9z5kekdu6] {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .info-value[b-t9z5kekdu6] {
        font-size: 0.875rem;
    }

    /* Stack vehicle info cards vertically on mobile */
    .info-card[b-t9z5kekdu6] {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .info-content[b-t9z5kekdu6] {
        align-items: center;
    }

    /* Hide some columns on mobile */
    [b-t9z5kekdu6] .fuel-grid .dx-datagrid-table .dx-command-column {
        min-width: 80px;
    }
}

/* Tablet devices (768px and down) */
@media (max-width: 768px) {
    .page-header .row[b-t9z5kekdu6] {
        flex-direction: column;
        gap: 1rem;
    }

    .page-header .col-auto[b-t9z5kekdu6] {
        align-self: stretch;
    }

    .card-header .d-flex[b-t9z5kekdu6] {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start !important;
    }

    /* Adjust grid toolbar for tablets */
    [b-t9z5kekdu6] .grid-toolbar {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

/* Large tablets and small desktops (992px and down) */
@media (max-width: 992px) {
    .fuel-modal-content .row .col-md-6[b-t9z5kekdu6] {
        margin-bottom: 1rem;
    }

    /* Ensure info cards stack properly */
    .info-card[b-t9z5kekdu6] {
        margin-bottom: 1rem;
    }
}

/* Desktop adjustments */
@media (min-width: 1200px) {
    .fuel-portal-container[b-t9z5kekdu6] {
        padding: 1.5rem;
    }

    .info-card[b-t9z5kekdu6] {
        min-height: 5rem;
    }
}

/* Print styles */
@media print {
    .page-header[b-t9z5kekdu6],
    .card-header[b-t9z5kekdu6],
    .command-buttons[b-t9z5kekdu6],
    [b-t9z5kekdu6] .dx-toolbar {
        display: none !important;
    }

    .fuel-portal-container[b-t9z5kekdu6] {
        padding: 0;
    }

    .card[b-t9z5kekdu6] {
        box-shadow: none;
        border: 1px solid #000;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .info-card[b-t9z5kekdu6] {
        border: 2px solid #000;
    }

    .badge[b-t9z5kekdu6] {
        border: 1px solid;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *[b-t9z5kekdu6] {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .page-title[b-t9z5kekdu6] {
        color: #f8f9fa;
    }

    .info-card[b-t9z5kekdu6] {
        background: #343a40;
        border-color: #495057;
        color: #f8f9fa;
    }

    .info-label[b-t9z5kekdu6] {
        color: #adb5bd;
    }

    .info-value[b-t9z5kekdu6] {
        color: #f8f9fa;
    }

    .empty-state[b-t9z5kekdu6] {
        color: #adb5bd;
    }

        .empty-state h3[b-t9z5kekdu6] {
            color: #f8f9fa;
        }
}

/* DevExpress component overrides for better integration */
[b-t9z5kekdu6] .dx-texteditor {
    border-radius: 0.375rem;
}

[b-t9z5kekdu6] .dx-button {
    border-radius: 0.375rem;
}

[b-t9z5kekdu6] .dx-popup-content {
    border-radius: 0.5rem;
}

/* Ensure proper spacing in grid */
[b-t9z5kekdu6] .fuel-grid .dx-datagrid-rowsview .dx-row {
    border-bottom: 1px solid #dee2e6;
}

[b-t9z5kekdu6] .fuel-grid .dx-datagrid-header-panel {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

/* Responsive grid adjustments */
@media (max-width: 768px) {
    [b-t9z5kekdu6] .fuel-grid .dx-datagrid-table {
        font-size: 0.875rem;
    }

    [b-t9z5kekdu6] .fuel-grid .dx-datagrid-headers {
        font-size: 0.75rem;
    }
}
/* /Pages/Fuel/WeekendDriving.razor.rz.scp.css */
/* Base container */

.component-container[b-rlf8iegv8t] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    gap: 1.5rem;
    padding: 1rem;
    box-sizing: border-box;
    width: 100%;
}

/* Form section */
.form-section[b-rlf8iegv8t] {
    flex: 0 0 auto;
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Main content area */
.content-area[b-rlf8iegv8t] {
    flex: 1 1 auto;
    min-height: 300px;
    max-height: calc(100vh - 200px);
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: auto;
}

/* Error text styling */
.error-text[b-rlf8iegv8t] {
    color: #d32f2f;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Mobile breakpoint (<768px) */
@@media (max-width: 767.98px) {
    .component-container[b-rlf8iegv8t] {
        min-height: 80vh;
        max-height: 95vh;
        gap: 1rem;
        padding: 0.75rem;
    }

    .form-section[b-rlf8iegv8t] {
        padding: 1rem;
    }

    .content-area[b-rlf8iegv8t] {
        min-height: 250px;
        max-height: calc(100vh - 150px);
        padding: 0.75rem;
    }
    /* Stack radio group vertically on mobile */
    .form-section[b-rlf8iegv8t]  .dx-rg-horizontal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Tablet breakpoint (768px - 1200px) */
@@media (min-width: 768px) and (max-width: 1199.98px) {
    .component-container[b-rlf8iegv8t] {
        min-height: 75vh;
        max-height: 92vh;
        gap: 1.25rem;
        padding: 1rem;
    }

    .form-section[b-rlf8iegv8t] {
        padding: 1.25rem;
    }

    .content-area[b-rlf8iegv8t] {
        min-height: 280px;
        max-height: calc(100vh - 180px);
        padding: 1rem;
    }
}

/* Desktop breakpoint (>1200px) */
@@media (min-width: 1200px) {
    .component-container[b-rlf8iegv8t] {
        min-height: 70vh;
        max-height: 90vh;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .form-section[b-rlf8iegv8t] {
        padding: 1.5rem;
    }

    .content-area[b-rlf8iegv8t] {
        min-height: 300px;
        max-height: calc(100vh - 200px);
        padding: 1.25rem;
    }
}

/* Ensure form elements are responsive */
.form-section[b-rlf8iegv8t]  .dx-form-group-caption {
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-section[b-rlf8iegv8t]  .dx-texteditor {
    width: 100%;
}

.form-section[b-rlf8iegv8t]  .dx-button {
    width: 100%;
}

/* Tablet and desktop specific adjustments */
@@media (min-width: 768px) {
    .form-section[b-rlf8iegv8t]  .dx-button {
        width: auto;
        min-width: 120px;
    }
}
/* /Pages/Mapping/Divisional-Map.razor.rz.scp.css */
/* Base container with responsive layout */
/*.component-container {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
    max-height: 92vh;
    height: 92vh;
    gap: 1rem;
    padding: 1rem;
    box-sizing: border-box;
}*/

/* Controls section with proper spacing for DxComboBox */
/*.controls-section {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
    background: #ffffff;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}*/

/* Form controls group - ensures DxComboBox has proper space */
/*.form-controls-group {
    flex: 1 1 300px;*/ /* Minimum 300px, can grow */
    /*min-width: 300px;
    max-width: 500px;
}*/

/* Action controls group */
/*.action-controls-group {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}*/

/* Main content area that expands dynamically */
/*.content-area {
    flex: 1 1 auto;
    min-height: 0;*/ /* Crucial for flex child scrolling */
    /*display: flex;
    flex-direction: column;
    gap: 1rem;
}*/

/* Enhanced map container with responsive sizing */
/*.map-container {
    flex: 1 1 auto;
    width: 100%;
    min-height: 400px;
    max-height: 90%;
    height: auto;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}*/

/* Tracking controls with flexible layout */
/*.tracking-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}
track-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.track-button:hover {
    background: #2563eb;
}*/

/* Export button with responsive text */
/*.export-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .export-button:hover {
        background: #2563eb;
    }

.export-icon {
    font-size: 1rem;
}

.export-text {
    font-size: 0.875rem;
    font-weight: 500;
}*/

/* Error text styling */
/*.error-text {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}*/

/* DxComboBox specific styling to ensure proper width */
/*::deep .dx-comboBox {
    width: 100% !important;
    min-width: 250px;
}

::deep .dx-texteditor {
    width: 100% !important;
}

::deep .dx-form-layout-item {
    width: 100%;
}*/

/* Responsive Breakpoints */

/* Mobile (<768px) */
/*@media (max-width: 767px) {
    .component-container {
        padding: 0.5rem;
        gap: 0.75rem;
        min-height: 100vh;
        height: auto;
    }

    .controls-section {
        flex-direction: column;
        gap: 1rem;
        padding: 0.75rem;
    }

    .form-controls-group {
        flex: 1 1 auto;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .action-controls-group {
        width: 100%;
    }

    .tracking-controls {
        width: 100%;
        justify-content: space-between;
    }

    .map-container {
        min-height: 300px;
        border-radius: 0.375rem;
    }

    .export-text {
        display: none;
    }

    .export-button {
        padding: 0.5rem;
    }*/

    /* Ensure DxComboBox is full width on mobile */
    /*::deep .dx-comboBox {
        min-width: 100% !important;
    }
}*/

/* Tablet (768px–1200px) */
/*@media (min-width: 768px) and (max-width: 1200px) {
    .component-container {
        padding: 0.75rem;
        gap: 0.875rem;
    }

    .controls-section {
        padding: 0.875rem;
        gap: 1.25rem;
    }

    .form-controls-group {
        flex: 1 1 350px;
        min-width: 350px;
    }

    .map-container {
        min-height: 500px;
    }

    .tracking-controls {
        gap: 0.75rem;
    }
}*/

/* Desktop (>1200px) */
/*@media (min-width: 1201px) {
    .component-container {
        padding: 1rem;
        gap: 1rem;
    }

    .controls-section {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }

    .form-controls-group {
        flex: 1 1 400px;
        min-width: 400px;
    }

    .map-container {
        min-height: 500px;
    }
}*/

/* Ensure proper scrolling on mobile */
/*@media (max-width: 767px) {
    .component-container {
        overflow-y: auto;
    }
}*/

/* Print styles */
/*@media print {
    .controls-section {
        display: none;
    }

    .map-container {
        height: 80vh !important;
        border: none !important;
        box-shadow: none !important;
    }
}*/

.component-container[b-0wz8e2n85w] {
    padding: 20px;
}

.map-container[b-0wz8e2n85w] {
    height: 600px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.content-area[b-0wz8e2n85w] {
    margin-top: 20px;
}

.error-text[b-0wz8e2n85w] {
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 5px;
}

.connection-status[b-0wz8e2n85w] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
}

.status-indicator[b-0wz8e2n85w] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-connected[b-0wz8e2n85w] {
    background-color: #28a745;
}

.status-disconnected[b-0wz8e2n85w] {
    background-color: #dc3545;
}

.vehicle-info[b-0wz8e2n85w] {
    margin-top: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tracking-indicator[b-0wz8e2n85w] {
    color: #dc3545;
    font-weight: bold;
    animation: pulse-b-0wz8e2n85w 2s infinite;
}

@keyframes pulse-b-0wz8e2n85w {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.form-check-input:disabled[b-0wz8e2n85w] {
    opacity: 0.5;
}

.dx-button:disabled[b-0wz8e2n85w] {
    opacity: 0.6;
}

/* Landscape Tablet (1024-1366px) */
@media (min-width: 992px) and (max-width: 1366px) {
    .map-container[b-0wz8e2n85w] {
        min-height: 400px;
    }
}
/* /Pages/Mapping/Session-Map.razor.rz.scp.css */
/* Base container with responsive layout - adapted from Divisional Map */
.component-container[b-pxa5grkutk] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 60px);
    min-height: 500px;
    width: 100%;
    gap: 0.75rem;
    padding: 1rem;
    box-sizing: border-box;
    overflow: hidden;
}

/* Controls section positioned at top with proper spacing */
.controls-section[b-pxa5grkutk] {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: space-between;

}

/* Form controls group for vehicle details */


/* Action controls group for buttons and switches */
.action-controls-group[b-pxa5grkutk] {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

/* Main content area that expands dynamically */
.content-area[b-pxa5grkutk] {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Enhanced map container with responsive sizing */
.map-container[b-pxa5grkutk] {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Ensure OpenLayers canvas fills container */
[b-pxa5grkutk] .ol-viewport {
    width: 100% !important;
    height: 100% !important;
    will-change: contents;
}

[b-pxa5grkutk] .ol-viewport canvas {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Tracking controls with flexible layout */
.tracking-controls[b-pxa5grkutk] {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Export button styling */
.export-button[b-pxa5grkutk] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .export-button:hover[b-pxa5grkutk] {
        background: #1d4ed8;
    }

.export-icon[b-pxa5grkutk] {
    font-size: 1rem;
}

.export-text[b-pxa5grkutk] {
    font-size: 0.875rem;
    font-weight: 500;
}

/* DevExpress component styling adjustments */
[b-pxa5grkutk] .dx-texteditor {
    width: 100% !important;
}

[b-pxa5grkutk] .dx-form-layout-item {
    width: 100%;
}

/* Mobile compact info strip */
.mobile-strip[b-pxa5grkutk] {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile-strip:active[b-pxa5grkutk] {
    background: #e9ecef;
}

.mobile-strip-info[b-pxa5grkutk] {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e40af;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

/* Mobile expandable vehicle details panel */
.mobile-details-panel[b-pxa5grkutk] {
    flex: 0 0 auto;
    min-height: 0;
    max-height: 45vh;
    overflow-y: auto;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem;
    -webkit-overflow-scrolling: touch;
}

/* Responsive Breakpoints */

/* Mobile (<768px) */
@media (max-width: 767px) {
    .component-container[b-pxa5grkutk] {
        padding: 0.5rem;
        gap: 0.5rem;
        height: calc(100vh - 60px);
        min-height: 400px;
    }

    .controls-section[b-pxa5grkutk] {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.5rem;
    }

    .form-controls-group[b-pxa5grkutk] {
        flex: 1 1 auto;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .action-controls-group[b-pxa5grkutk] {
        width: 100%;
    }

    .tracking-controls[b-pxa5grkutk] {
        width: 100%;
        justify-content: space-between;
    }

    .map-container[b-pxa5grkutk] {
        min-height: 250px;
        border-radius: 0.375rem;
    }

    .export-text[b-pxa5grkutk] {
        display: none;
    }

    .export-button[b-pxa5grkutk] {
        padding: 0.5rem;
    }
}

/* Tablet - target range for responsive refactor (992px–1366px) */
@media (min-width: 992px) and (max-width: 1366px) {
    .map-container[b-pxa5grkutk] {
        min-height: 400px;
    }
}

/* Tablet (768px–1200px) */
@media (min-width: 768px) and (max-width: 1200px) {
    .component-container[b-pxa5grkutk] {
        padding: 0.75rem;
        gap: 0.875rem;
    }

    .controls-section[b-pxa5grkutk] {
        padding: 0.875rem;
        gap: 1.25rem;
    }

    .form-controls-group[b-pxa5grkutk] {
        flex: 1 1 350px;
        min-width: 350px;
    }

    .map-container[b-pxa5grkutk] {
        min-height: 500px;
    }

    .tracking-controls[b-pxa5grkutk] {
        gap: 0.75rem;
    }
}

/* Desktop (>1200px) */
@media (min-width: 1201px) {
    .component-container[b-pxa5grkutk] {
        padding: 1rem;
        gap: 1rem;
    }

    .controls-section[b-pxa5grkutk] {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }

    .form-controls-group[b-pxa5grkutk] {
        flex: 1 1 400px;
        min-width: 400px;
    }

    .map-container[b-pxa5grkutk] {
        min-height: 500px;
    }
}

/* Lowest density phones (320px–400px) */
@media (max-width: 400px) {
    .component-container[b-pxa5grkutk] {
        height: calc(100vh - 56px);
        min-height: 360px;
    }

    .map-container[b-pxa5grkutk] {
        min-height: 200px;
    }
}

/* Print styles */
@media print {
    .controls-section[b-pxa5grkutk] {
        display: none;
    }

    .map-container[b-pxa5grkutk] {
        height: 80vh !important;
        border: none !important;
        box-shadow: none !important;
    }
}
/* /Pages/Mapping/Vehicle_Map.razor.rz.scp.css */
/* ============================================
   PAGE CONTAINER
   ============================================ */
#page-container[b-i5qw8icxgy] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 120px);
    min-height: 600px;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
    gap: 0.75rem;
    overflow: hidden;
}

/* ============================================
   TRACKING FORM CONTAINER
   ============================================ */
.tracking-form-container[b-i5qw8icxgy] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px 24px;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.form-controls-row[b-i5qw8icxgy] {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: nowrap;
}

.form-control-group[b-i5qw8icxgy] {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.reg-group[b-i5qw8icxgy] {
    flex: 0 1 340px;
    min-width: 220px;
}

.date-group[b-i5qw8icxgy] {
    flex: 0 1 260px;
    min-width: 200px;
}

.hint-group[b-i5qw8icxgy] {
    flex-shrink: 1;
    justify-content: flex-end;
    padding-bottom: 2px;
}

.date-hint[b-i5qw8icxgy] {
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.confirm-icon[b-i5qw8icxgy] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    background-color: #22c55e;
    color: white;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: bold;
    margin: 0 4px;
}

.buttons-group[b-i5qw8icxgy] {
    flex-direction: row;
    gap: 10px;
    align-items: flex-end;
}

.form-control-label[b-i5qw8icxgy] {
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
    display: block;
    white-space: nowrap;
}

.form-control-input[b-i5qw8icxgy] {
    width: 100%;
}

.track-btn[b-i5qw8icxgy],
.otp-btn[b-i5qw8icxgy] {
    white-space: nowrap;
    min-width: 140px;
}

.error-text[b-i5qw8icxgy] {
    color: #dc2626;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 2px;
}

/* ============================================
   MAP CONTAINER - Responsive
   ============================================ */
.map-container[b-i5qw8icxgy] {
    width: 100%;
    height: 100%;
    min-height: 700px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

    /* Ensure OpenLayers canvas fills container */
    .map-container .ol-viewport[b-i5qw8icxgy] {
        width: 100% !important;
        height: 100% !important;
    }

/* ============================================
   GRID CONTAINER
   ============================================ */
.grid-container[b-i5qw8icxgy] {
    height: 100%;
    min-height: 400px;
    overflow: auto;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    background: white;
}

/* ============================================
   VIEW CONTAINERS
   ============================================ */
.map-view[b-i5qw8icxgy],
.grid-view[b-i5qw8icxgy] {
    width: 100%;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.content-area[b-i5qw8icxgy] {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ============================================
   VIEW TOGGLE
   ============================================ */
.view-toggle-container[b-i5qw8icxgy] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.toggle-buttons[b-i5qw8icxgy],
.export-buttons[b-i5qw8icxgy] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.hidden[b-i5qw8icxgy] {
    display: none !important;
}

.error-text[b-i5qw8icxgy] {
    color: #dc2626;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 2px;
}

/* ============================================
   ALERTS
   ============================================ */
.alert[b-i5qw8icxgy] {
    padding: 12px 16px;
    margin: 0;
    border: 1px solid transparent;
    border-radius: 6px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.alert-info[b-i5qw8icxgy] {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

.alert-warning[b-i5qw8icxgy] {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

/* ============================================
   BUTTONS
   ============================================ */
.dxbl-btn[b-i5qw8icxgy] {
    transition: all 0.2s ease-in-out;
}

    .dxbl-btn:hover:not(:disabled)[b-i5qw8icxgy] {
        transform: translateY(-1px);
    }

    .dxbl-btn:disabled[b-i5qw8icxgy] {
        opacity: 0.6;
        cursor: not-allowed;
    }

/* ============================================
   SPINNER
   ============================================ */
.spinner-border-sm[b-i5qw8icxgy] {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* ============================================
   OPENLAYERS CONTROLS - Override defaults
   ============================================ */
[b-i5qw8icxgy] .ol-control {
    position: absolute;
}

[b-i5qw8icxgy] .ol-zoom {
    top: 10px;
    right: 10px;
    left: auto;
}

[b-i5qw8icxgy] .ol-full-screen {
    top: 80px;
    right: 10px;
}

[b-i5qw8icxgy] .ol-attribution {
    bottom: 5px;
    right: 5px;
}

/* ============================================
   DATEEDIT CALENDAR FOOTER BUTTONS
   Global styling for all DateEdit popups
   ============================================ */

/* Calendar footer container */
[b-i5qw8icxgy] .dxbl-calendar-footer,
[b-i5qw8icxgy] .dxbl-dropdown-dialog-footer {
    display: flex !important;
    gap: 8px !important;
    padding: 10px 12px !important;
    border-top: 1px solid #e5e7eb !important;
    background-color: #f9fafb !important;
    justify-content: flex-end !important;
}

    /* Base button styling in calendar footer */
    [b-i5qw8icxgy] .dxbl-calendar-footer .dxbl-btn,
    [b-i5qw8icxgy] .dxbl-dropdown-dialog-footer .dxbl-btn {
        min-width: 70px !important;
        padding: 6px 16px !important;
        font-weight: 500 !important;
        font-size: 0.875rem !important;
        border-radius: 6px !important;
        transition: all 0.2s ease !important;
        text-decoration: none !important;
    }

        /* OK/Confirm button - GREEN */
        [b-i5qw8icxgy] .dxbl-calendar-footer .dxbl-btn:first-child,
        [b-i5qw8icxgy] .dxbl-dropdown-dialog-footer .dxbl-btn:first-child,
        [b-i5qw8icxgy] .dxbl-calendar-footer .dxbl-btn-success,
        [b-i5qw8icxgy] .dxbl-calendar-footer .dxbl-btn-primary {
            background-color: #22c55e !important;
            border: 1px solid #22c55e !important;
            color: white !important;
        }

            [b-i5qw8icxgy] .dxbl-calendar-footer .dxbl-btn:first-child:hover,
            [b-i5qw8icxgy] .dxbl-dropdown-dialog-footer .dxbl-btn:first-child:hover,
            [b-i5qw8icxgy] .dxbl-calendar-footer .dxbl-btn-success:hover,
            [b-i5qw8icxgy] .dxbl-calendar-footer .dxbl-btn-primary:hover {
                background-color: #16a34a !important;
                border-color: #16a34a !important;
                transform: translateY(-1px) !important;
                box-shadow: 0 2px 6px rgba(34, 197, 94, 0.4) !important;
            }

        /* Cancel/Close button - RED */
        [b-i5qw8icxgy] .dxbl-calendar-footer .dxbl-btn:last-child:not(:first-child),
        [b-i5qw8icxgy] .dxbl-dropdown-dialog-footer .dxbl-btn:last-child:not(:first-child),
        [b-i5qw8icxgy] .dxbl-calendar-footer .dxbl-btn-secondary,
        [b-i5qw8icxgy] .dxbl-calendar-footer .dxbl-btn-danger {
            background-color: #ef4444 !important;
            border: 1px solid #ef4444 !important;
            color: white !important;
        }

            [b-i5qw8icxgy] .dxbl-calendar-footer .dxbl-btn:last-child:not(:first-child):hover,
            [b-i5qw8icxgy] .dxbl-dropdown-dialog-footer .dxbl-btn:last-child:not(:first-child):hover,
            [b-i5qw8icxgy] .dxbl-calendar-footer .dxbl-btn-secondary:hover,
            [b-i5qw8icxgy] .dxbl-calendar-footer .dxbl-btn-danger:hover {
                background-color: #dc2626 !important;
                border-color: #dc2626 !important;
                transform: translateY(-1px) !important;
                box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4) !important;
            }

        /* When there's only one button, keep it green */
        [b-i5qw8icxgy] .dxbl-calendar-footer .dxbl-btn:only-child,
        [b-i5qw8icxgy] .dxbl-dropdown-dialog-footer .dxbl-btn:only-child {
            background-color: #22c55e !important;
            border-color: #22c55e !important;
            color: white !important;
        }

    /* Link-style buttons override */
    [b-i5qw8icxgy] .dxbl-calendar-footer .dxbl-btn-link,
    [b-i5qw8icxgy] .dxbl-dropdown-dialog-footer .dxbl-btn-link {
        background-color: transparent !important;
        border: 1px solid transparent !important;
    }

        [b-i5qw8icxgy] .dxbl-calendar-footer .dxbl-btn-link:first-child {
            background-color: #22c55e !important;
            border-color: #22c55e !important;
            color: white !important;
        }

        [b-i5qw8icxgy] .dxbl-calendar-footer .dxbl-btn-link:last-child:not(:first-child) {
            background-color: #ef4444 !important;
            border-color: #ef4444 !important;
            color: white !important;
        }

/* ============================================
   RESPONSIVE - Large Screens
   ============================================ */
@media (min-width: 1400px) {
    #page-container[b-i5qw8icxgy] {
        height: calc(100vh - 100px);
    }

    .map-container[b-i5qw8icxgy] {
        min-height: 600px;
    }
}

/* ============================================
   RESPONSIVE - Desktop
   ============================================ */
@media (min-width: 1200px) and (max-width: 1399px) {
    #page-container[b-i5qw8icxgy] {
        height: calc(100vh - 110px);
    }

    .map-container[b-i5qw8icxgy] {
        min-height: 500px;
    }
}

/* ============================================
   RESPONSIVE - Landscape Tablet (1024-1366px)
   ============================================ */
@media (min-width: 992px) and (max-width: 1366px) {
    #page-container[b-i5qw8icxgy] {
        padding: 0.75rem;
        gap: 0.5rem;
        height: calc(100vh - 110px);
    }

    .map-container[b-i5qw8icxgy] {
        min-height: 400px;
    }

    .view-toggle-container[b-i5qw8icxgy] {
        padding: 0.5rem 0.75rem;
    }

    .track-btn[b-i5qw8icxgy],
    .otp-btn[b-i5qw8icxgy] {
        min-width: 120px;
    }
}

/* ============================================
   RESPONSIVE - Tablet
   ============================================ */
@media (max-width: 991px) {
    #page-container[b-i5qw8icxgy] {
        padding: 0.75rem;
        gap: 0.5rem;
        height: calc(100vh - 130px);
    }

    .tracking-form-container[b-i5qw8icxgy] {
        padding: 16px;
    }

    .form-controls-row[b-i5qw8icxgy] {
        flex-wrap: wrap;
        gap: 16px;
    }

    .reg-group[b-i5qw8icxgy] {
        flex: 1 1 280px;
    }

    .date-group[b-i5qw8icxgy] {
        flex: 0 1 220px;
    }

    .hint-group[b-i5qw8icxgy] {
        display: none;
    }

    .buttons-group[b-i5qw8icxgy] {
        width: 100%;
    }

    .track-btn[b-i5qw8icxgy],
    .otp-btn[b-i5qw8icxgy] {
        flex: 1;
    }

    .map-container[b-i5qw8icxgy] {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    #page-container[b-i5qw8icxgy] {
        padding: 0.5rem;
        height: calc(100vh - 140px);
        min-height: 500px;
    }

    .tracking-form-container[b-i5qw8icxgy] {
        padding: 14px;
    }

    .form-controls-row[b-i5qw8icxgy] {
        flex-wrap: wrap;
        gap: 14px;
    }

    .reg-group[b-i5qw8icxgy],
    .date-group[b-i5qw8icxgy] {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .hint-group[b-i5qw8icxgy] {
        display: none;
    }

    .buttons-group[b-i5qw8icxgy] {
        flex-direction: row;
        width: 100%;
    }

    .track-btn[b-i5qw8icxgy],
    .otp-btn[b-i5qw8icxgy] {
        flex: 1;
        min-width: 0;
        width: auto;
    }

    .view-toggle-container[b-i5qw8icxgy] {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .toggle-buttons[b-i5qw8icxgy],
    .export-buttons[b-i5qw8icxgy] {
        justify-content: center;
        width: 100%;
    }

    .map-container[b-i5qw8icxgy] {
        min-height: 350px;
    }
}

/* ============================================
   RESPONSIVE - Mobile
   ============================================ */
@media (max-width: 576px) {
    #page-container[b-i5qw8icxgy] {
        padding: 0.5rem;
        gap: 0.5rem;
        height: calc(100vh - 100px);
        min-height: 450px;
    }

    .tracking-form-container[b-i5qw8icxgy] {
        padding: 12px;
        border-radius: 8px;
    }

    .form-controls-row[b-i5qw8icxgy] {
        gap: 12px;
    }

    .buttons-group[b-i5qw8icxgy] {
        flex-direction: column;
        gap: 8px;
    }

    .track-btn[b-i5qw8icxgy],
    .otp-btn[b-i5qw8icxgy] {
        width: 100%;
        min-width: 100%;
    }

    .map-container[b-i5qw8icxgy] {
        min-height: 300px;
    }

    .grid-container[b-i5qw8icxgy] {
        min-height: 300px;
        padding: 0.5rem;
    }

    .toggle-buttons[b-i5qw8icxgy] {
        flex-direction: column;
        width: 100%;
    }

        .toggle-buttons .dxbl-btn[b-i5qw8icxgy],
        .export-buttons .dxbl-btn[b-i5qw8icxgy] {
            width: 100%;
            justify-content: center;
        }

    .view-toggle-container[b-i5qw8icxgy] {
        padding: 0.5rem;
    }
}

@media (max-width: 400px) {
    .map-container[b-i5qw8icxgy] {
        min-height: 250px;
    }

    .grid-container[b-i5qw8icxgy] {
        min-height: 250px;
    }
}

/* ============================================
   LOADING PANEL
   ============================================ */
.dxbl-loading-panel-content[b-i5qw8icxgy] {
    border-radius: 8px;
}

/* ============================================
   MATERIAL ICONS
   ============================================ */
.material-symbols-outlined[b-i5qw8icxgy] {
    vertical-align: middle;
    font-size: 1.1rem;
}

/* ============================================
   GRID TOOLBAR
   ============================================ */
.dxbl-grid-toolbar[b-i5qw8icxgy] {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 0.5rem;
}

/* ============================================
   MAP PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Enable GPU acceleration for map container */
.map-container[b-i5qw8icxgy] {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

/* Optimize OpenLayers viewport rendering */
[b-i5qw8icxgy] .ol-viewport {
    will-change: contents;
    contain: strict;
}

    /* Optimize canvas rendering */
    [b-i5qw8icxgy] .ol-viewport canvas {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

/* Smooth animations for overlays */
[b-i5qw8icxgy] .ol-overlay-container {
    will-change: transform;
    transform: translateZ(0);
}

/* Reduce repaints on controls */
[b-i5qw8icxgy] .ol-control {
    contain: layout style;
}

/* ============================================
   CSS-BASED MARKER ANIMATIONS
   For Safari compatibility and better perf
   ============================================ */

/* Pulsating effect using CSS */
@keyframes pulse-ring-b-i5qw8icxgy {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Bounce effect using CSS transforms (no coordinate changes) */
@keyframes bounce-marker-b-i5qw8icxgy {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Applied via JS by adding class to overlay element */
[b-i5qw8icxgy] .marker-pulsating {
    animation: pulse-ring-b-i5qw8icxgy 1.5s ease-in-out infinite;
}

[b-i5qw8icxgy] .marker-bouncing {
    animation: bounce-marker-b-i5qw8icxgy 0.8s ease-in-out infinite;
}

/* ============================================
   REDUCED MOTION PREFERENCE
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    [b-i5qw8icxgy] .marker-pulsating,
    [b-i5qw8icxgy] .marker-bouncing,
    [b-i5qw8icxgy] .ol-overlay-container {
        animation: none !important;
        transition: none !important;
    }

    .map-container[b-i5qw8icxgy] {
        will-change: auto;
    }
}
/* /Pages/Monitoring/Panic-Monitor.razor.rz.scp.css */
/* Main container */
.panic-monitor-container[b-p78fytb2up] {
    padding: 1.5rem;
    min-height: 100vh;
    background-color: #f8f9fa;
}

/* Page header */
.page-header[b-p78fytb2up] {
    margin-bottom: 1.5rem;
}

.page-title[b-p78fytb2up] {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Vehicle card styling */
.vehicle-card[b-p78fytb2up] {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.vehicle-card:hover[b-p78fytb2up] {
    transform: translateY(-4px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.ignition-status[b-p78fytb2up] {
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
}

.ignition-on[b-p78fytb2up] {
    background-color: #d4edda;
    color: #155724;
}

.ignition-off[b-p78fytb2up] {
    background-color: #f8d7da;
    color: #721c24;
}
/* Panic active card styling */
.vehicle-card.panic-active[b-p78fytb2up] {
    border: 3px solid #dc3545 !important;
    animation: pulse-border-b-p78fytb2up 2s infinite;
}

@keyframes pulse-border-b-p78fytb2up {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

/* Card header gradient for panic */
.vehicle-card.panic-active .card-header[b-p78fytb2up] {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
}

/* Status badges */
.badge[b-p78fytb2up] {
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
}

/* Empty state */
.empty-state[b-p78fytb2up] {
    padding: 3rem;
}

.empty-state i[b-p78fytb2up] {
    opacity: 0.6;
}

/* Filter section styling */
.form-label.fw-semibold.small[b-p78fytb2up] {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Card truncation for device ID */
.text-truncate[b-p78fytb2up] {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Auto-refresh indicator */
.form-check-input:checked[b-p78fytb2up] {
    background-color: #28a745;
    border-color: #28a745;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .panic-monitor-container[b-p78fytb2up] {
        padding: 1rem;
    }

    .page-title[b-p78fytb2up] {
        font-size: 1.5rem;
    }

    .page-header .d-flex.gap-3[b-p78fytb2up] {
        flex-direction: column;
        gap: 0.75rem !important;
    }

    .col-md-5.text-end[b-p78fytb2up] {
        text-align: left !important;
    }

    .d-flex.justify-content-end[b-p78fytb2up] {
        justify-content: flex-start !important;
        flex-wrap: wrap;
    }
}

/* Loading spinner animation */
.spinner-border[b-p78fytb2up] {
    width: 3rem;
    height: 3rem;
}

/* Card body info rows */
.card-body .row.g-2 > div[b-p78fytb2up] {
    min-height: 2.5rem;
}

/* Font monospace for device IDs */
.font-monospace[b-p78fytb2up] {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.8rem;
}

/* Hover effect for cards without panic */
.vehicle-card:not(.panic-active):hover[b-p78fytb2up] {
    border-color: #0d6efd !important;
}

/* Confirmation popup styling */
[b-p78fytb2up] .dxbs-popup-footer {
    border-top: 1px solid #dee2e6;
}

/* SMS Popup - Mobile Responsive */
@media (max-width: 767px) {
    .sms-popup-columns[b-p78fytb2up] {
        flex-direction: column;
    }
}
/* /Pages/Overview.razor.rz.scp.css */
/* ============================================
   DASHBOARD CONTAINER
   ============================================ */
.dashboard-container[b-waph5mnvv1] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   DASHBOARD HEADER
   ============================================ */
.dashboard-header[b-waph5mnvv1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-left[b-waph5mnvv1] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.dashboard-title[b-waph5mnvv1] {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.header-subtitle[b-waph5mnvv1] {
    font-size: 0.85rem;
    color: #64748b;
}

.header-actions[b-waph5mnvv1] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* ============================================
   FILTER PANEL
   ============================================ */
.filter-panel[b-waph5mnvv1] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

/* ============================================
   ALERTS
   ============================================ */
.alert[b-waph5mnvv1] {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}

.alert-danger[b-waph5mnvv1] {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ============================================
   KPI CARDS
   ============================================ */
.kpi-section[b-waph5mnvv1] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.kpi-card[b-waph5mnvv1] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kpi-card:hover[b-waph5mnvv1] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.kpi-accent[b-waph5mnvv1] {
    width: 4px;
    flex-shrink: 0;
}

.accent-blue[b-waph5mnvv1] { background: #3b82f6; }
.accent-green[b-waph5mnvv1] { background: #22c55e; }
.accent-orange[b-waph5mnvv1] { background: #f59e0b; }
.accent-purple[b-waph5mnvv1] { background: #8b5cf6; }

.kpi-body[b-waph5mnvv1] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    flex: 1;
}

.kpi-icon-wrap[b-waph5mnvv1] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.bg-blue-light[b-waph5mnvv1] { background: #eff6ff; color: #3b82f6; }
.bg-green-light[b-waph5mnvv1] { background: #f0fdf4; color: #22c55e; }
.bg-orange-light[b-waph5mnvv1] { background: #fffbeb; color: #f59e0b; }
.bg-purple-light[b-waph5mnvv1] { background: #f5f3ff; color: #8b5cf6; }

.kpi-info[b-waph5mnvv1] {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.kpi-value[b-waph5mnvv1] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.kpi-label[b-waph5mnvv1] {
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.kpi-subtitle[b-waph5mnvv1] {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.15rem;
}

/* ============================================
   CHARTS SECTION
   ============================================ */
.charts-section[b-waph5mnvv1] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.chart-card[b-waph5mnvv1] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.chart-header[b-waph5mnvv1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
}

.chart-header h3[b-waph5mnvv1] {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
}

.chart-period[b-waph5mnvv1] {
    font-size: 0.75rem;
    color: #94a3b8;
    background: #f8fafc;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.chart-body[b-waph5mnvv1] {
    padding: 1.25rem;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chart-empty[b-waph5mnvv1] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* ============================================
   BAR CHART (Division)
   ============================================ */
.bar-chart-row[b-waph5mnvv1] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.bar-label[b-waph5mnvv1] {
    width: 100px;
    font-size: 0.8rem;
    color: #475569;
    font-weight: 500;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}

.bar-track[b-waph5mnvv1] {
    flex: 1;
    height: 24px;
    background: #f1f5f9;
    border-radius: 6px;
    overflow: hidden;
}

.bar-fill[b-waph5mnvv1] {
    height: 100%;
    border-radius: 6px;
    transition: width 0.6s ease;
    min-width: 4px;
}

.bar-blue[b-waph5mnvv1] { background: linear-gradient(90deg, #60a5fa, #3b82f6); }

.bar-value[b-waph5mnvv1] {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1e293b;
    width: 40px;
    text-align: right;
    flex-shrink: 0;
}

/* ============================================
   DONUT CHART (Status)
   ============================================ */
.donut-chart-container[b-waph5mnvv1] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-height: 200px;
}

.donut-visual[b-waph5mnvv1] {
    flex-shrink: 0;
}

.donut-ring[b-waph5mnvv1] {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.donut-center[b-waph5mnvv1] {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.donut-total[b-waph5mnvv1] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.donut-total-label[b-waph5mnvv1] {
    font-size: 0.65rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.donut-stats[b-waph5mnvv1] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.donut-stat-row[b-waph5mnvv1] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot[b-waph5mnvv1] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-moving[b-waph5mnvv1] { background: #22c55e; }
.dot-idle[b-waph5mnvv1] { background: #f59e0b; }
.dot-stopped[b-waph5mnvv1] { background: #6366f1; }
.dot-offline[b-waph5mnvv1] { background: #94a3b8; }

.stat-label[b-waph5mnvv1] {
    font-size: 0.8rem;
    color: #475569;
    flex: 1;
}

.stat-value[b-waph5mnvv1] {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    width: 32px;
    text-align: right;
}

.stat-pct[b-waph5mnvv1] {
    font-size: 0.75rem;
    color: #94a3b8;
    width: 45px;
    text-align: right;
}

/* ============================================
   TREND CHART (Compliance)
   ============================================ */
.trend-chart[b-waph5mnvv1] {
    display: flex;
    gap: 0.5rem;
    height: 220px;
}

.trend-y-axis[b-waph5mnvv1] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 0.25rem 24px 0;
    font-size: 0.65rem;
    color: #94a3b8;
    flex-shrink: 0;
}

.trend-bars[b-waph5mnvv1] {
    display: flex;
    flex: 1;
    gap: 0.5rem;
    align-items: flex-end;
}

.trend-bar-group[b-waph5mnvv1] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    height: 100%;
}

.trend-bar-track[b-waph5mnvv1] {
    flex: 1;
    width: 100%;
    max-width: 40px;
    background: #f1f5f9;
    border-radius: 6px 6px 0 0;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.trend-bar-fill[b-waph5mnvv1] {
    width: 100%;
    border-radius: 6px 6px 0 0;
    transition: height 0.6s ease;
    min-height: 4px;
}

.trend-bar-green[b-waph5mnvv1] { background: linear-gradient(180deg, #4ade80, #22c55e); }
.trend-bar-orange[b-waph5mnvv1] { background: linear-gradient(180deg, #fbbf24, #f59e0b); }
.trend-bar-red[b-waph5mnvv1] { background: linear-gradient(180deg, #f87171, #ef4444); }

.trend-bar-label[b-waph5mnvv1] {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 500;
}

.trend-bar-value[b-waph5mnvv1] {
    font-size: 0.65rem;
    color: #94a3b8;
}

/* ============================================
   GRID SECTION
   ============================================ */
.grid-section[b-waph5mnvv1] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.section-header[b-waph5mnvv1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
}

.section-header h3[b-waph5mnvv1] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
}

.section-count[b-waph5mnvv1] {
    font-size: 0.8rem;
    color: #94a3b8;
    background: #f8fafc;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* Event type badges */
.event-badge[b-waph5mnvv1] {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-critical[b-waph5mnvv1] { background: #fef2f2; color: #dc2626; }
.badge-warning[b-waph5mnvv1] { background: #fffbeb; color: #d97706; }
.badge-caution[b-waph5mnvv1] { background: #fef3c7; color: #92400e; }
.badge-active[b-waph5mnvv1] { background: #f0fdf4; color: #16a34a; }
.badge-stopped[b-waph5mnvv1] { background: #eff6ff; color: #2563eb; }
.badge-system[b-waph5mnvv1] { background: #f1f5f9; color: #64748b; }
.badge-default[b-waph5mnvv1] { background: #f8fafc; color: #475569; }

/* Ignition badges */
.ignition-badge[b-waph5mnvv1] {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 500;
}

.ignition-on[b-waph5mnvv1] { color: #16a34a; }
.ignition-off[b-waph5mnvv1] { color: #dc2626; }

/* Empty state */
.empty-state[b-waph5mnvv1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

/* ============================================
   NAVIGATION CARDS
   ============================================ */
.nav-cards-section[b-waph5mnvv1] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.nav-card[b-waph5mnvv1] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.nav-card:not(.disabled):hover[b-waph5mnvv1] {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.nav-card.disabled[b-waph5mnvv1] {
    cursor: default;
    opacity: 0.65;
}

.nav-card-icon[b-waph5mnvv1] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.nav-card h4[b-waph5mnvv1] {
    margin: 0 0 0.35rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.nav-card p[b-waph5mnvv1] {
    margin: 0;
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.4;
}

.nav-card-arrow[b-waph5mnvv1] {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #cbd5e1;
    transition: color 0.2s, transform 0.2s;
}

.nav-card:not(.disabled):hover .nav-card-arrow[b-waph5mnvv1] {
    color: #3b82f6;
    transform: translateX(3px);
}

.nav-card-badge[b-waph5mnvv1] {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: #f1f5f9;
    color: #64748b;
}

/* ============================================
   RESPONSIVE - Tablet
   ============================================ */
@media (max-width: 1200px) {
    .kpi-section[b-waph5mnvv1] {
        grid-template-columns: repeat(2, 1fr);
    }

    .charts-section[b-waph5mnvv1] {
        grid-template-columns: 1fr 1fr;
    }

    .charts-section .chart-card:nth-child(3)[b-waph5mnvv1] {
        grid-column: 1 / -1;
    }

    .nav-cards-section[b-waph5mnvv1] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RESPONSIVE - Mobile
   ============================================ */
@media (max-width: 768px) {
    .dashboard-container[b-waph5mnvv1] {
        padding: 0.75rem;
        gap: 1rem;
    }

    .dashboard-header[b-waph5mnvv1] {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-actions[b-waph5mnvv1] {
        width: 100%;
        justify-content: flex-start;
    }

    .kpi-section[b-waph5mnvv1] {
        grid-template-columns: 1fr 1fr;
    }

    .kpi-value[b-waph5mnvv1] {
        font-size: 1.4rem;
    }

    .kpi-icon-wrap[b-waph5mnvv1] {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .charts-section[b-waph5mnvv1] {
        grid-template-columns: 1fr;
    }

    .donut-chart-container[b-waph5mnvv1] {
        flex-direction: column-reverse;
        align-items: center;
    }

    .donut-ring[b-waph5mnvv1] {
        width: 140px;
        height: 140px;
    }

    .donut-center[b-waph5mnvv1] {
        width: 75px;
        height: 75px;
    }

    .nav-cards-section[b-waph5mnvv1] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .kpi-section[b-waph5mnvv1] {
        grid-template-columns: 1fr;
    }

    .kpi-body[b-waph5mnvv1] {
        padding: 1rem;
    }

    .dashboard-title[b-waph5mnvv1] {
        font-size: 1.3rem;
    }

    .trend-chart[b-waph5mnvv1] {
        height: 180px;
    }
}

/* ============================================
   LOADING PANEL
   ============================================ */
[b-waph5mnvv1] .dxbl-loading-panel-content {
    border-radius: 8px;
}

/* ============================================
   GRID OVERRIDES
   ============================================ */
[b-waph5mnvv1] .activity-grid {
    border: none;
}

[b-waph5mnvv1] .activity-grid .dxbl-grid-header-row th {
    background: #f8fafc;
    font-weight: 600;
    font-size: 0.8rem;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp-b-waph5mnvv1 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kpi-card[b-waph5mnvv1],
.chart-card[b-waph5mnvv1],
.nav-card[b-waph5mnvv1],
.grid-section[b-waph5mnvv1] {
    animation: fadeInUp-b-waph5mnvv1 0.4s ease forwards;
}

.kpi-section .kpi-card:nth-child(1)[b-waph5mnvv1] { animation-delay: 0.05s; }
.kpi-section .kpi-card:nth-child(2)[b-waph5mnvv1] { animation-delay: 0.1s; }
.kpi-section .kpi-card:nth-child(3)[b-waph5mnvv1] { animation-delay: 0.15s; }
.kpi-section .kpi-card:nth-child(4)[b-waph5mnvv1] { animation-delay: 0.2s; }

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .kpi-card[b-waph5mnvv1],
    .chart-card[b-waph5mnvv1],
    .nav-card[b-waph5mnvv1],
    .grid-section[b-waph5mnvv1] {
        animation: none;
    }

    .kpi-card:hover[b-waph5mnvv1],
    .nav-card:not(.disabled):hover[b-waph5mnvv1] {
        transform: none;
    }

    .bar-fill[b-waph5mnvv1],
    .trend-bar-fill[b-waph5mnvv1] {
        transition: none;
    }
}
/* /Pages/Reports/Divisional-Report.razor.rz.scp.css */
/* Base container */

.component-container[b-78p4s7onun] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    gap: 1.5rem;
    padding: 1rem;
    box-sizing: border-box;
    width: 100%;
}
.dxflItem[b-78p4s7onun] {
    padding: 2px !important;
}

.dxflGroupBox[b-78p4s7onun] {
    padding: 8px !important;
}

/* Form section */
.form-section[b-78p4s7onun] {
    flex: 0 0 auto;
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Main content area */
.content-area[b-78p4s7onun] {
    flex: 1 1 auto;
    min-height: 300px;
    max-height: calc(100vh - 100px);
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: auto;
}

/* Error text styling */
.error-text[b-78p4s7onun] {
    color: #d32f2f;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Mobile breakpoint (<768px) */
@@media (max-width: 767.98px) {
    .component-container[b-78p4s7onun] {
        min-height: 80vh;
        max-height: 95vh;
        gap: 1rem;
        padding: 0.75rem;
    }

    .form-section[b-78p4s7onun] {
        padding: 1rem;
    }

    .content-area[b-78p4s7onun] {
        min-height: 250px;
        max-height: calc(100vh - 150px);
        padding: 0.75rem;
    }
    /* Stack radio group vertically on mobile */
    .form-section[b-78p4s7onun]  .dx-rg-horizontal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Landscape Tablet (1024-1366px) */
@@media (min-width: 992px) and (max-width: 1366px) {
    .component-container[b-78p4s7onun] {
        padding: 0.75rem;
    }

    .content-area[b-78p4s7onun] {
        max-height: calc(100vh - 160px);
    }
}

/* Tablet breakpoint (768px - 1200px) */
@@media (min-width: 768px) and (max-width: 1199.98px) {
    .component-container[b-78p4s7onun] {
        min-height: 75vh;
        max-height: 92vh;
        gap: 1.25rem;
        padding: 1rem;
    }

    .form-section[b-78p4s7onun] {
        padding: 1.25rem;
    }

    .content-area[b-78p4s7onun] {
        min-height: 280px;
        max-height: calc(100vh - 180px);
        padding: 1rem;
    }
}

/* Desktop breakpoint (>1200px) */
@@media (min-width: 1200px) {
    .component-container[b-78p4s7onun] {
        min-height: 70vh;
        max-height: 90vh;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .form-section[b-78p4s7onun] {
        padding: 1.5rem;
    }

    .content-area[b-78p4s7onun] {
        min-height: 300px;
        max-height: calc(100vh - 200px);
        padding: 1.25rem;
    }
}

/* Ensure form elements are responsive */
.form-section[b-78p4s7onun]  .dx-form-group-caption {
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-section[b-78p4s7onun]  .dx-texteditor {
    width: 100%;
}

.form-section[b-78p4s7onun]  .dx-button {
    width: 100%;
}

/* Tablet and desktop specific adjustments */
@@media (min-width: 768px) {
    .form-section[b-78p4s7onun]  .dx-button {
        width: auto;
        min-width: 120px;
    }
}
/* /Pages/Reports/Vehicle-Report.razor.rz.scp.css */
/* Base container */

.component-container[b-j7w5jb5p87] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    gap: 1.5rem;
    padding: 1rem;
    box-sizing: border-box;
    width: 100%;
}

/* Form section */
.form-section[b-j7w5jb5p87] {
    flex: 0 0 auto;
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Main content area */
.content-area[b-j7w5jb5p87] {
    flex: 1 1 auto;
    min-height: 300px;
    max-height: calc(100vh - 200px);
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: auto;
}

/* Error text styling */
.error-text[b-j7w5jb5p87] {
    color: #d32f2f;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Mobile breakpoint (<768px) */
@@media (max-width: 767.98px) {
    .component-container[b-j7w5jb5p87] {
        min-height: 80vh;
        max-height: 95vh;
        gap: 1rem;
        padding: 0.75rem;
    }

    .form-section[b-j7w5jb5p87] {
        padding: 1rem;
    }

    .content-area[b-j7w5jb5p87] {
        min-height: 250px;
        max-height: calc(100vh - 150px);
        padding: 0.75rem;
    }
    /* Stack radio group vertically on mobile */
    .form-section[b-j7w5jb5p87]  .dx-rg-horizontal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Landscape Tablet (1024-1366px) */
@@media (min-width: 992px) and (max-width: 1366px) {
    .component-container[b-j7w5jb5p87] {
        padding: 0.75rem;
    }

    .content-area[b-j7w5jb5p87] {
        max-height: calc(100vh - 160px);
    }
}

/* Tablet breakpoint (768px - 1200px) */
@@media (min-width: 768px) and (max-width: 1199.98px) {
    .component-container[b-j7w5jb5p87] {
        min-height: 75vh;
        max-height: 92vh;
        gap: 1.25rem;
        padding: 1rem;
    }

    .form-section[b-j7w5jb5p87] {
        padding: 1.25rem;
    }

    .content-area[b-j7w5jb5p87] {
        min-height: 280px;
        max-height: calc(100vh - 180px);
        padding: 1rem;
    }
}

/* Desktop breakpoint (>1200px) */
@@media (min-width: 1200px) {
    .component-container[b-j7w5jb5p87] {
        min-height: 70vh;
        max-height: 90vh;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .form-section[b-j7w5jb5p87] {
        padding: 1.5rem;
    }

    .content-area[b-j7w5jb5p87] {
        min-height: 300px;
        max-height: calc(100vh - 200px);
        padding: 1.25rem;
    }
}

/* Ensure form elements are responsive */
.form-section[b-j7w5jb5p87]  .dx-form-group-caption {
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-section[b-j7w5jb5p87]  .dx-texteditor {
    width: 100%;
}

.form-section[b-j7w5jb5p87]  .dx-button {
    width: 100%;
}

/* Tablet and desktop specific adjustments */
@@media (min-width: 768px) {
    .form-section[b-j7w5jb5p87]  .dx-button {
        width: auto;
        min-width: 120px;
    }
}
