@import '_content/Blazored.Modal/Blazored.Modal.bundle.scp.css';
@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';
@import '_content/Blazorise.RichTextEdit/Blazorise.RichTextEdit.ujcws5bfym.bundle.scp.css';
@import '_content/BlazorMaterialWeb/BlazorMaterialWeb.0wfe60zfzo.bundle.scp.css';

/* /Components/Account/NotificationPreferencesComponent.razor.rz.scp.css */
/* ============================================================
   STAS Notification Preferences component
   Palette: teal #003951, accent #ED880E, slate #64748b, light bg #f8fafc
   ============================================================ */

/* ----- toolbar ----- */
.np-toolbar[b-hxzp0z7t55] {
    position: sticky;
    top: 0;
    /* z-index intentionally NOT set: a numeric z-index on a sticky element creates a
       new stacking context that clips the global language-picker dropdown (and other
       Blazorise dropdowns that open over this toolbar). If we need the toolbar to sit
       above sibling scroll content later, use z-index: 1 — still below Blazorise
       dropdown's default z-index (1000+). */
    background: white;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.np-toolbar-text[b-hxzp0z7t55] {
    flex: 1 1 auto;
    min-width: 200px;
}

.np-toolbar-actions[b-hxzp0z7t55] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

/* ----- auto-save status indicator ----- */
.np-save-status[b-hxzp0z7t55] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.np-save-status-saving[b-hxzp0z7t55] {
    background: rgba(0, 57, 81, 0.08);
    color: #003951;
}

.np-save-status-saved[b-hxzp0z7t55] {
    background: rgba(40, 167, 69, 0.1);
    color: #1e7c3a;
}

.np-save-status-failed[b-hxzp0z7t55] {
    background: rgba(220, 38, 38, 0.1);
    color: #b91c1c;
}

.np-save-spinner[b-hxzp0z7t55] {
    animation: np-spin-b-hxzp0z7t55 1s linear infinite;
}

@keyframes np-spin-b-hxzp0z7t55 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ----- admin banner ----- */
.np-admin-banner[b-hxzp0z7t55] {
    background: rgba(237, 136, 14, 0.1);
    border-left: 4px solid #ED880E;
    color: #6b3a05;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ----- empty state ----- */
.np-empty-state[b-hxzp0z7t55] {
    background: white;
    border-radius: 12px;
    padding: 3rem 1.5rem;
    text-align: center;
    color: #64748b;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.np-empty-icon[b-hxzp0z7t55] {
    font-size: 2.5rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    display: block;
}

/* ----- skeleton ----- */
.np-skeleton-list[b-hxzp0z7t55] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.np-skeleton-row[b-hxzp0z7t55] {
    height: 72px;
    border-radius: 12px;
    background: linear-gradient(90deg, #eef1f4 0%, #f8fafc 50%, #eef1f4 100%);
    background-size: 200% 100%;
    animation: np-skeleton-pulse-b-hxzp0z7t55 1.4s ease-in-out infinite;
}

@keyframes np-skeleton-pulse-b-hxzp0z7t55 {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ----- accordion / cards ----- */
.np-accordion[b-hxzp0z7t55] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.np-card[b-hxzp0z7t55] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.np-card.np-card-open[b-hxzp0z7t55] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.np-card-header[b-hxzp0z7t55] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: background 0.15s;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.np-card-header:hover[b-hxzp0z7t55] {
    background: #f8fafc;
}

.np-card-header-left[b-hxzp0z7t55] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1 1 240px;
    min-width: 0;
}

.np-toggle-icon[b-hxzp0z7t55] {
    color: #003951;
    font-size: 1rem;
    width: 1rem;
    text-align: center;
}

.np-card-title[b-hxzp0z7t55] {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.np-card-subtitle[b-hxzp0z7t55] {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.125rem;
}

.np-card-header-right[b-hxzp0z7t55] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

/* ----- channel chips ----- */
.np-chip[b-hxzp0z7t55] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    transition: transform 0.1s, box-shadow 0.15s;
    white-space: nowrap;
}

.np-chip:hover[b-hxzp0z7t55] {
    transform: translateY(-1px);
}

.np-chip-label[b-hxzp0z7t55] {
    font-weight: 500;
}

.np-chip-state[b-hxzp0z7t55] {
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.75rem;
}

/* Keyboard focus rings for chip + header (a11y). */
.np-card-header:focus-visible[b-hxzp0z7t55],
.np-chip:focus-visible[b-hxzp0z7t55] {
    outline: 2px solid #ED880E;
    outline-offset: 2px;
}

/* PUSH = orange (#ED880E) */
.np-chip-push.np-chip-on[b-hxzp0z7t55] {
    background: #ED880E;
    color: white;
    border-color: #ED880E;
}

.np-chip-push.np-chip-off[b-hxzp0z7t55] {
    background: transparent;
    color: #94a3b8;
    border-color: #cbd5e1;
}

.np-chip-push.np-chip-mix[b-hxzp0z7t55] {
    background: repeating-linear-gradient(45deg, rgba(237, 136, 14, 0.15) 0 6px, rgba(237, 136, 14, 0.05) 6px 12px);
    color: #ED880E;
    border-color: #ED880E;
}

/* IN-APP = teal (#003951) */
.np-chip-inapp.np-chip-on[b-hxzp0z7t55] {
    background: #003951;
    color: white;
    border-color: #003951;
}

.np-chip-inapp.np-chip-off[b-hxzp0z7t55] {
    background: transparent;
    color: #94a3b8;
    border-color: #cbd5e1;
}

.np-chip-inapp.np-chip-mix[b-hxzp0z7t55] {
    background: repeating-linear-gradient(45deg, rgba(0, 57, 81, 0.15) 0 6px, rgba(0, 57, 81, 0.05) 6px 12px);
    color: #003951;
    border-color: #003951;
}

/* EMAIL = slate (#64748b) */
.np-chip-email.np-chip-on[b-hxzp0z7t55] {
    background: #64748b;
    color: white;
    border-color: #64748b;
}

.np-chip-email.np-chip-off[b-hxzp0z7t55] {
    background: transparent;
    color: #94a3b8;
    border-color: #cbd5e1;
}

.np-chip-email.np-chip-mix[b-hxzp0z7t55] {
    background: repeating-linear-gradient(45deg, rgba(100, 116, 139, 0.15) 0 6px, rgba(100, 116, 139, 0.05) 6px 12px);
    color: #64748b;
    border-color: #64748b;
}

/* ----- card body / per-type rows ----- */
.np-card-body[b-hxzp0z7t55] {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 0.75rem 1.25rem 1rem;
}

.np-row[b-hxzp0z7t55] {
    display: grid;
    grid-template-columns: minmax(0, 2fr) repeat(2, minmax(80px, 1fr));
    gap: 0.5rem;
    align-items: center;
    padding: 0.75rem 0;
    border-top: 1px solid #eef2f6;
}

.np-row:first-child[b-hxzp0z7t55] {
    border-top: none;
}

.np-row-head[b-hxzp0z7t55] {
    border-top: none;
    padding-top: 0.25rem;
    padding-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #64748b;
    text-align: center;
}

.np-row-head .np-row-label[b-hxzp0z7t55] {
    text-align: left;
}

/* Event title — the primary label for the row. */
.np-row-label-title[b-hxzp0z7t55] {
    color: #1e293b;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Event description — subtle helper text under the title explaining what the event is. */
.np-row-label-description[b-hxzp0z7t55] {
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 0.15rem;
}

.np-row-channel[b-hxzp0z7t55] {
    display: flex;
    justify-content: center;
}

/* Placeholder in the Push column for events that are in-app-only (never push). */
.np-row-channel-na[b-hxzp0z7t55] {
    color: #cbd5e1;
    font-weight: 500;
    user-select: none;
    cursor: help;
}

/* ----- Blazorise Switch overrides (deep) ----- */
:deep(.np-row-channel .form-switch input.form-check-input:checked)[b-hxzp0z7t55] {
    background-color: #003951;
    border-color: #003951;
}

/* ----- reset confirmation modal ----- */
.np-custom-modal .modal-dialog[b-hxzp0z7t55] {
    max-width: 460px !important;
    width: 460px !important;
}

.np-custom-modal-content[b-hxzp0z7t55] {
    border: none !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.np-modal-container[b-hxzp0z7t55] {
    display: flex;
    flex-direction: column;
    background: #f8fafc;
    margin: -1rem;
    width: calc(100% + 2rem);
}

.np-modal-header[b-hxzp0z7t55] {
    background: linear-gradient(135deg, #003951 0%, #005a7a 100%);
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.np-modal-header-icon[b-hxzp0z7t55] {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.np-modal-close-btn[b-hxzp0z7t55] {
    color: white !important;
    opacity: 0.8;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    transition: all 0.2s;
    background: transparent !important;
}

.np-modal-close-btn:hover[b-hxzp0z7t55] {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1) !important;
}

.np-modal-body[b-hxzp0z7t55] {
    background: white;
    padding: 1.25rem 1.5rem;
    color: #334155;
    font-size: 0.95rem;
}

.np-modal-footer[b-hxzp0z7t55] {
    padding: 0.875rem 1.25rem;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 0.625rem;
    flex-shrink: 0;
}

/* ----- responsive ----- */
@media (max-width: 768px) {
    .np-card-header[b-hxzp0z7t55] {
        flex-direction: column;
        align-items: flex-start;
    }

    .np-card-header-right[b-hxzp0z7t55] {
        width: 100%;
    }

    .np-row[b-hxzp0z7t55] {
        grid-template-columns: minmax(0, 1fr) repeat(3, minmax(60px, 1fr));
        font-size: 0.8rem;
    }
}
/* /Components/Account/OnboardingHeaderAndFooter.razor.rz.scp.css */
/* Footer */
.footer-area[b-5fvpkgjehg] {
    width: 100%;
}

.footer-copyright[b-5fvpkgjehg] {
    background-color: hsl(216, 45%, 98%);
}

    .footer-copyright p[b-5fvpkgjehg] {
        text-align: center;
        font-style: normal;
        font-weight: 400;
        font-size: 1.2rem;
        line-height: 1.2rem;
        color: #003951;
        margin: 0;
    }

        .footer-copyright p a[b-5fvpkgjehg] {
            color: #ED880E;
        }

    .footer-copyright a:hover[b-5fvpkgjehg] {
        color: #77769C;
    }

/* Footer Social Networks */
.footer-social[b-5fvpkgjehg] {
    display: flex;
    justify-content: center;
    margin: 1.5em 0;
}

    .footer-social a[b-5fvpkgjehg] {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 2.25em;
        height: 2.25em;
        border: 1px solid #003951;
        border-radius: 50%;
        color: #003951;
        transition: .3s all;
        margin: 0 0.625em;
    }

        .footer-social a:hover[b-5fvpkgjehg] {
            background: #003951;
            color: #fff;
            border-color: #003951;
            text-decoration: none;
        }
/* /Components/AI/AiPayAsYouGoBanner.razor.rz.scp.css */
.ai-pyg-banner[b-ftizymru4f] {
    display: flex;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    margin: 0 0 1rem 0;
    background: linear-gradient(135deg, rgba(0, 57, 81, 0.04), rgba(237, 136, 14, 0.04));
    border-left: 4px solid #ED880E;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.ai-pyg-banner-icon[b-ftizymru4f] {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #ED880E;
    line-height: 1.2;
    padding-top: 0.1rem;
}

.ai-pyg-banner-body[b-ftizymru4f] {
    flex: 1;
}

.ai-pyg-banner-title[b-ftizymru4f] {
    font-weight: 600;
    color: #003951;
    margin-bottom: 0.25rem;
}

.ai-pyg-banner-text[b-ftizymru4f] {
    color: #475569;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.ai-pyg-banner-pricing[b-ftizymru4f] {
    background: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    border: 1px solid rgba(0, 57, 81, 0.1);
    color: #003951;
    font-family: ui-monospace, "SF Mono", Consolas, monospace;
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.ai-pyg-banner-pricing strong[b-ftizymru4f] {
    color: #003951;
}

.ai-pyg-banner-link[b-ftizymru4f] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #003951;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.8125rem;
}

.ai-pyg-banner-link:hover[b-ftizymru4f] {
    text-decoration: underline;
}
/* /Components/Gps/GpsMapComponent.razor.rz.scp.css */
.infoPaneRowLabel[b-92vzrv5r8s] {
    color: #ED880E; /* STAS accent (was off-brand brown #a15d27) */
    font-weight: bold;
    font-size: 11px;
}

.infoPaneRowData[b-92vzrv5r8s] {
    font-weight: bold;
    font-size: 11px;
}

.infoPaneTitle[b-92vzrv5r8s] {
    font-size: 15px;
}

.infoPane[b-92vzrv5r8s] {
    background-color: white;
    border: 1px solid black;
    border-radius: 10px;
    font-size: 13px;
    text-align: left;
    margin-left: -25px;
    padding: 5px;
}

.carIcon[b-92vzrv5r8s] {
    height: 24px;
    width: 50px;
    float: left;
}

.gpsMarkerContainer[b-92vzrv5r8s] {
    position: relative;
}

.map-legend[b-92vzrv5r8s] {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: white;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    font-size: 12px;
    z-index: 1000;
}

.map-legend h4[b-92vzrv5r8s] {
    margin: 0 0 10px;
    font-size: 14px;
}

.map-legend ul[b-92vzrv5r8s] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.map-legend li[b-92vzrv5r8s] {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 14px;
}

.map-legend .legend-padding[b-92vzrv5r8s] {
    margin-right: 10px;
}
/* /Components/Gps/GpsMapWithStatisticsComponent.razor.rz.scp.css */
.gps-container[b-jgfyhov9l4] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    height: 500px;
}

.gps-map-card[b-jgfyhov9l4] {
    flex: 2;
    min-width: 400px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gps-details-card[b-jgfyhov9l4] {
    flex: 1;
    min-width: 320px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gps-details-card[b-jgfyhov9l4]  .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.gps-cards-grid[b-jgfyhov9l4] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.gps-card[b-jgfyhov9l4] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #ED880E;
}

.gps-card-address[b-jgfyhov9l4] {
    border-left: 3px solid #ED880E;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gps-card-icon[b-jgfyhov9l4] {
    color: #ED880E;
    font-size: 1rem;
    margin-top: 2px;
    min-width: 18px;
}

.gps-card-label[b-jgfyhov9l4] {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.25rem;
}

.gps-card-value[b-jgfyhov9l4] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #003951;
}

@media (max-width: 992px) {
    .gps-container[b-jgfyhov9l4] {
        height: auto;
    }

    .gps-map-card[b-jgfyhov9l4] {
        height: 400px;
        flex: 1 1 100%;
    }

    .gps-details-card[b-jgfyhov9l4] {
        height: auto;
        flex: 1 1 100%;
    }
}
/* /Components/Gps/RouteInspector.razor.rz.scp.css */
/* Container */
.route-inspector[b-bo4bpxvj90] {
    background: var(--stas-bg-surface);
    border-left: 1px solid var(--stas-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

/* Header */
.route-inspector-header[b-bo4bpxvj90] {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--stas-border);
    background: linear-gradient(135deg, var(--stas-primary) 0%, var(--stas-primary-hover) 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
}

/* Empty-state header uses muted gray gradient */
.route-inspector-header.is-empty[b-bo4bpxvj90] {
    background: linear-gradient(135deg, var(--stas-text-secondary) 0%, var(--stas-text-muted) 100%);
}

.route-inspector-header .header-icon-box[b-bo4bpxvj90] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.route-inspector-header .back-btn[b-bo4bpxvj90] {
    background: rgba(255, 255, 255, 0.15);
    border: 0;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color var(--stas-motion-fast);
}

.route-inspector-header .back-btn:hover[b-bo4bpxvj90] {
    background: rgba(255, 255, 255, 0.28);
}

.route-inspector-header .back-btn:focus-visible[b-bo4bpxvj90] {
    outline: 2px solid var(--stas-accent);
    outline-offset: 2px;
}

.route-inspector-header .veh-meta[b-bo4bpxvj90] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.route-inspector-header .veh-name[b-bo4bpxvj90] {
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.route-inspector-header .veh-plate[b-bo4bpxvj90] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.78);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Status badge */
.route-inspector-header .veh-status[b-bo4bpxvj90] {
    margin-left: auto;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.veh-status.status-active[b-bo4bpxvj90]   { background: var(--stas-success); }
.veh-status.status-stale[b-bo4bpxvj90]    { background: var(--stas-warning); color: var(--stas-text-primary); }
.veh-status.status-inactive[b-bo4bpxvj90] { background: var(--stas-danger); }

/* Body */
.route-inspector-body[b-bo4bpxvj90] {
    flex: 1;
    overflow-y: auto;
    padding: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    background: var(--stas-bg-page);
}

.route-inspector-body.inspector-body-centered[b-bo4bpxvj90] {
    justify-content: center;
}

/* Section card */
.inspector-section[b-bo4bpxvj90] {
    background: var(--stas-bg-surface);
    border: 1px solid var(--stas-border);
    border-radius: 8px;
    overflow: hidden;
}

.inspector-section-header[b-bo4bpxvj90] {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--stas-border);
    background: var(--stas-bg-muted);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--stas-text-secondary);
}

/* Day row */
.day-row[b-bo4bpxvj90] {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--stas-border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    transition: background-color var(--stas-motion-fast);
    background: transparent;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    font-family: inherit;
    text-align: left;
    width: 100%;
}

.day-row:last-child[b-bo4bpxvj90] {
    border-bottom: 0;
}

.day-row:hover[b-bo4bpxvj90] {
    background: var(--stas-primary-soft);
}

.day-row.is-expanded[b-bo4bpxvj90] {
    background: var(--stas-accent-soft);
}

.day-row:focus-visible[b-bo4bpxvj90] {
    outline: none;
    box-shadow: inset 0 0 0 2px var(--stas-accent);
}

.day-row .chevron[b-bo4bpxvj90] {
    color: var(--stas-text-secondary);
    transition: transform var(--stas-motion-fast);
    flex-shrink: 0;
}

.day-row.is-expanded .chevron[b-bo4bpxvj90] {
    transform: rotate(90deg);
    color: var(--stas-accent);
}

.day-row .day-meta[b-bo4bpxvj90] {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex: 1;
    min-width: 0;
}

.day-row .day-date[b-bo4bpxvj90] {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--stas-text-primary);
}

.day-row .day-stats[b-bo4bpxvj90] {
    font-size: 0.72rem;
    color: var(--stas-text-secondary);
    font-variant-numeric: tabular-nums;
}

.day-row .deviating-badge[b-bo4bpxvj90] {
    color: var(--stas-warning);
    font-weight: 600;
}

.day-row .day-fuel[b-bo4bpxvj90] {
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
    color: var(--stas-text-primary);
    font-weight: 600;
    flex-shrink: 0;
    white-space: nowrap;
}

.day-row .day-fuel-sep[b-bo4bpxvj90] {
    color: var(--stas-border-strong);
}

@media (prefers-reduced-motion: reduce) {
    .day-row[b-bo4bpxvj90],
    .day-row .chevron[b-bo4bpxvj90] {
        transition: none;
    }
}

/* Route list (shown under expanded day) */
.route-list[b-bo4bpxvj90] {
    background: var(--stas-bg-muted);
    padding: 0.4rem 0;
}

.route-item[b-bo4bpxvj90] {
    padding: 0.4rem 0.875rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 0.78rem;
    transition: background-color var(--stas-motion-fast);
    background: transparent;
    border: 0;
    width: 100%;
    text-align: left;
    font-family: inherit;
    color: var(--stas-text-primary);
}

.route-item:hover[b-bo4bpxvj90] {
    background: var(--stas-bg-surface);
}

.route-item:focus-visible[b-bo4bpxvj90] {
    outline: none;
    box-shadow: inset 0 0 0 2px var(--stas-accent);
}

.route-item.is-active[b-bo4bpxvj90] {
    background: var(--stas-bg-surface);
    border-left: 3px solid var(--stas-accent);
    padding-left: calc(0.875rem - 3px);
}

.route-item .route-time[b-bo4bpxvj90] {
    color: var(--stas-text-secondary);
    font-variant-numeric: tabular-nums;
}

.route-item .route-arrow[b-bo4bpxvj90] {
    margin: 0 0.2rem;
    color: var(--stas-border-strong);
}

.route-item .route-dist[b-bo4bpxvj90] {
    font-weight: 600;
    color: var(--stas-text-primary);
    font-variant-numeric: tabular-nums;
}

/* Route detail */
.route-detail-grid[b-bo4bpxvj90] {
    padding: 0.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    font-size: 0.78rem;
}

.rd-cell[b-bo4bpxvj90] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.rd-label[b-bo4bpxvj90] {
    color: var(--stas-text-secondary);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.rd-value[b-bo4bpxvj90] {
    color: var(--stas-text-primary);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.route-detail-hint[b-bo4bpxvj90] {
    padding: 0 0.75rem 0.75rem;
    margin: 0;
    font-size: 0.72rem;
    color: var(--stas-text-secondary);
}
/* /Components/KpiCard.razor.rz.scp.css */
.kpi-card[b-9anxsads1w] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.875rem;
    background: var(--stas-bg-surface);
    border: 1px solid var(--stas-border);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: border-color var(--stas-motion-fast), box-shadow var(--stas-motion-fast);
}

.kpi-card:hover[b-9anxsads1w] {
    border-color: var(--stas-accent);
}

.kpi-icon-box[b-9anxsads1w] {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1rem;
}

.kpi-icon-box.kpi-primary[b-9anxsads1w] { background: var(--stas-primary); }
.kpi-icon-box.kpi-accent[b-9anxsads1w]  { background: var(--stas-accent); }
.kpi-icon-box.kpi-success[b-9anxsads1w] { background: var(--stas-success); }
.kpi-icon-box.kpi-warning[b-9anxsads1w] { background: var(--stas-warning); color: var(--stas-text-primary); }
.kpi-icon-box.kpi-danger[b-9anxsads1w]  { background: var(--stas-danger); }

.kpi-meta[b-9anxsads1w] {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.kpi-value[b-9anxsads1w] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--stas-text-primary);
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kpi-label[b-9anxsads1w] {
    font-size: 0.72rem;
    color: var(--stas-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kpi-trend[b-9anxsads1w] {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--stas-success);
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    font-weight: 600;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}

.kpi-trend.is-down[b-9anxsads1w] {
    color: var(--stas-danger);
}
/* /Components/LiveFreshnessIndicator.razor.rz.scp.css */
.live-indicator[b-8nkabmd9nj] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.65rem 0.4rem 0.55rem;
    border-radius: 999px;
    background: var(--stas-bg-muted);
    border: 1px solid var(--stas-border);
    font-size: 0.82rem;
    color: var(--stas-text-secondary);
    height: 36px;
    line-height: 1;
}

.live-dot[b-8nkabmd9nj] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--stas-success);
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
    animation: live-pulse-b-8nkabmd9nj 2.2s ease-in-out infinite;
}

.live-indicator.is-paused .live-dot[b-8nkabmd9nj] {
    background: var(--stas-text-secondary);
    animation: none;
    box-shadow: none;
}

.live-sep[b-8nkabmd9nj] {
    color: var(--stas-border-strong);
    margin: 0 0.15rem;
}

.live-age[b-8nkabmd9nj] {
    color: var(--stas-text-primary);
    font-variant-numeric: tabular-nums;
}

.live-toggle[b-8nkabmd9nj] {
    background: transparent;
    border: 0;
    color: var(--stas-text-secondary);
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 0.2rem;
    padding: 0;
    transition: background-color var(--stas-motion-fast), color var(--stas-motion-fast);
}

.live-toggle:hover[b-8nkabmd9nj] {
    background: var(--stas-primary-soft);
    color: var(--stas-primary);
}

.live-toggle:focus-visible[b-8nkabmd9nj] {
    outline: 2px solid var(--stas-accent);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(237, 136, 14, 0.2);
}

@keyframes live-pulse-b-8nkabmd9nj {
    0%, 100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5); }
    50%      { box-shadow: 0 0 0 7px rgba(40, 167, 69, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .live-indicator.is-live .live-dot[b-8nkabmd9nj] {
        animation: none;
    }
}
/* /Components/Map/MapOverviewComponent.razor.rz.scp.css */
.stas-map-root[b-9hv9n0tscg] {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: #dde4ea;
}

.stas-map-canvas[b-9hv9n0tscg] {
    position: absolute;
    inset: 0;
}

.stas-map-loading[b-9hv9n0tscg],
.stas-map-error[b-9hv9n0tscg] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    z-index: 3;
    background: rgba(0, 57, 81, 0.85);
    color: #fff;
    font-size: 1rem;
}

.stas-map-error[b-9hv9n0tscg] {
    background: rgba(220, 38, 38, 0.92);
}

.stas-map-error i[b-9hv9n0tscg] {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* KPI HUD — top-left overlay */
.stas-map-hud[b-9hv9n0tscg] {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.hud-stat[b-9hv9n0tscg] {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 57, 81, 0.15);
    border-radius: 10px;
    padding: 10px 14px;
    min-width: 92px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hud-label[b-9hv9n0tscg] {
    font-size: 0.72rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hud-value[b-9hv9n0tscg] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003951;
    line-height: 1.1;
}

.hud-sub[b-9hv9n0tscg] {
    font-size: 0.72rem;
    color: #9ca3af;
}

.hud-danger .hud-value[b-9hv9n0tscg] {
    color: #dc2626;
}

/* Ungeocoded sites banner — bottom-center nudge */
.stas-map-banner[b-9hv9n0tscg] {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff7ed;
    color: #9a3412;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.85rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.stas-map-banner i[b-9hv9n0tscg] {
    color: #ED880E;
}

/* Detail side panel */
.stas-map-detail[b-9hv9n0tscg] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    max-width: 92vw;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    z-index: 4;
    animation: stas-map-slide-in-b-9hv9n0tscg 220ms ease-out;
}

@keyframes stas-map-slide-in-b-9hv9n0tscg {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .stas-map-detail[b-9hv9n0tscg] { animation: none; }
}

.detail-header[b-9hv9n0tscg] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #003951 0%, #00556d 100%);
    color: #fff;
}

.detail-header-workorder[b-9hv9n0tscg] { background: linear-gradient(135deg, #ED880E 0%, #f59e0b 100%); }
.detail-header-worker[b-9hv9n0tscg] { background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%); }
.detail-header-asset[b-9hv9n0tscg] { background: linear-gradient(135deg, #4b5563 0%, #6b7280 100%); }

.detail-header-icon[b-9hv9n0tscg] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.detail-header-text[b-9hv9n0tscg] {
    flex: 1;
    min-width: 0;
}

.detail-kind[b-9hv9n0tscg] {
    font-size: 0.7rem;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-title[b-9hv9n0tscg] {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.detail-close[b-9hv9n0tscg] {
    background: transparent;
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 120ms ease;
}

.detail-close:hover[b-9hv9n0tscg],
.detail-close:focus-visible[b-9hv9n0tscg] {
    background: rgba(255, 255, 255, 0.2);
    outline: none;
}

.detail-body[b-9hv9n0tscg] {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.detail-loading[b-9hv9n0tscg] {
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
}

.detail-section[b-9hv9n0tscg] {
    padding: 14px 18px 4px;
    border-bottom: 1px solid #eef2f5;
}

.detail-section:last-child[b-9hv9n0tscg] {
    border-bottom: none;
}

.detail-section h5[b-9hv9n0tscg] {
    font-size: 0.72rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.detail-fields[b-9hv9n0tscg] {
    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 4px 12px;
    margin: 0 0 12px 0;
}

.detail-fields dt[b-9hv9n0tscg] {
    color: #6b7280;
    font-weight: 400;
    font-size: 0.875rem;
}

.detail-fields dd[b-9hv9n0tscg] {
    margin: 0;
    color: #111827;
    font-size: 0.875rem;
    overflow-wrap: anywhere;
}

.detail-list[b-9hv9n0tscg] {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.detail-list li[b-9hv9n0tscg] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-top: 1px solid #f3f4f6;
    font-size: 0.875rem;
    color: #111827;
}

.detail-list li:first-child[b-9hv9n0tscg] {
    border-top: none;
}

.detail-list li i[b-9hv9n0tscg] {
    color: #003951;
    width: 16px;
    text-align: center;
}

.detail-list-meta[b-9hv9n0tscg] {
    margin-left: auto;
    color: #6b7280;
    font-size: 0.8rem;
}

.detail-list li.detail-overdue i[b-9hv9n0tscg],
.detail-list li.detail-overdue .detail-list-meta[b-9hv9n0tscg] {
    color: #dc2626;
}

/* Two-line list item for items with a subtitle (work orders, defects, documents) */
.detail-list-main[b-9hv9n0tscg] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.detail-list-sub[b-9hv9n0tscg] {
    color: #6b7280;
    font-size: 0.75rem;
}

.detail-empty[b-9hv9n0tscg] {
    padding: 40px 24px;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Filter panel — top-left, below the KPI HUD */
.stas-map-filter[b-9hv9n0tscg] {
    position: absolute;
    top: 96px;
    left: 16px;
    z-index: 2;
}

.filter-toggle[b-9hv9n0tscg] {
    background: #fff;
    border: 1px solid rgba(0, 57, 81, 0.15);
    border-radius: 10px;
    padding: 8px 14px;
    color: #003951;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 120ms ease;
}

.filter-toggle:hover[b-9hv9n0tscg],
.filter-toggle:focus-visible[b-9hv9n0tscg] {
    background: #f8fafc;
    outline: none;
}

.filter-toggle.open[b-9hv9n0tscg] {
    background: #003951;
    color: #fff;
    border-color: #003951;
}

.filter-panel[b-9hv9n0tscg] {
    margin-top: 6px;
    background: #fff;
    border: 1px solid rgba(0, 57, 81, 0.15);
    border-radius: 10px;
    padding: 14px 16px;
    min-width: 240px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.filter-section[b-9hv9n0tscg] {
    padding: 6px 0;
}

.filter-section + .filter-section[b-9hv9n0tscg] {
    border-top: 1px solid #eef2f5;
    margin-top: 4px;
    padding-top: 10px;
}

.filter-section h6[b-9hv9n0tscg] {
    font-size: 0.68rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 6px 0;
    font-weight: 700;
}

.filter-chk[b-9hv9n0tscg] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 0.88rem;
    color: #111827;
    cursor: pointer;
}

.filter-chk input[type="checkbox"][b-9hv9n0tscg] {
    cursor: pointer;
    accent-color: #003951;
}

.swatch[b-9hv9n0tscg] {
    display: inline-block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.swatch-site[b-9hv9n0tscg] { background: #003951; }
.swatch-workorder[b-9hv9n0tscg] { background: #ED880E; }
.swatch-worker[b-9hv9n0tscg] { background: #0ea5e9; }
.swatch-asset[b-9hv9n0tscg] { background: #4b5563; }

/* Tab bar in the detail panel */
.detail-tabs[b-9hv9n0tscg] {
    display: flex;
    overflow-x: auto;
    border-bottom: 1px solid #eef2f5;
    background: #fafbfc;
    scrollbar-width: thin;
}

.detail-tab[b-9hv9n0tscg] {
    flex: 0 0 auto;
    padding: 10px 14px;
    background: transparent;
    border: none;
    color: #6b7280;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color 120ms ease, border-color 120ms ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-tab:hover[b-9hv9n0tscg],
.detail-tab:focus-visible[b-9hv9n0tscg] {
    color: #003951;
    outline: none;
}

.detail-tab.active[b-9hv9n0tscg] {
    color: #003951;
    border-bottom-color: #ED880E;
    background: #fff;
    font-weight: 600;
}

.tab-count[b-9hv9n0tscg] {
    background: #eef2f5;
    color: #003951;
    border-radius: 10px;
    padding: 1px 7px;
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.4;
}

.detail-tab.active .tab-count[b-9hv9n0tscg] {
    background: #ED880E;
    color: #fff;
}

/* Diary tab — supervisor-style entries */
.detail-diary-list[b-9hv9n0tscg] {
    list-style: none;
    padding: 14px 18px;
    margin: 0;
}

.detail-diary-list li[b-9hv9n0tscg] {
    padding: 10px 0;
    border-top: 1px solid #f3f4f6;
}

.detail-diary-list li:first-child[b-9hv9n0tscg] { border-top: none; }

.diary-head[b-9hv9n0tscg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    font-size: 0.8rem;
}

.diary-date[b-9hv9n0tscg] {
    font-weight: 600;
    color: #003951;
}

.diary-author[b-9hv9n0tscg] {
    color: #6b7280;
}

.diary-desc[b-9hv9n0tscg] {
    margin: 4px 0 6px 0;
    font-size: 0.85rem;
    color: #111827;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.diary-remark[b-9hv9n0tscg] {
    margin: 4px 0 0 0;
    padding: 8px 12px;
    background: #fff7ed;
    border-left: 3px solid #ED880E;
    border-radius: 0 6px 6px 0;
    color: #9a3412;
    font-size: 0.85rem;
    font-style: italic;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.diary-remark i[b-9hv9n0tscg] {
    color: #ED880E;
    margin-top: 3px;
    flex-shrink: 0;
}

.diary-remark cite[b-9hv9n0tscg] {
    display: block;
    font-style: normal;
    font-size: 0.75rem;
    color: #9a3412;
    opacity: 0.8;
    margin-top: 4px;
}

/* Photos grid */
.detail-photo-grid[b-9hv9n0tscg] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 8px;
}

.detail-photo-grid a[b-9hv9n0tscg] {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
}

.detail-photo-grid img[b-9hv9n0tscg] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 160ms ease;
}

.detail-photo-grid a:hover img[b-9hv9n0tscg] {
    transform: scale(1.06);
}
/* /Components/ProfileImage.razor.rz.scp.css */
.rounder-profile-image[b-3dlkbmlp3z] {
    height: 2.5rem;
    width: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid lightgray;
    flex-shrink: 0;
}

.rounder-profile-image-small[b-3dlkbmlp3z] {
    height: 1.2rem;
    width: 1.2rem;
    min-width: 1.2rem;
}

.rounder-profile-image-medium[b-3dlkbmlp3z] {
    height: 3rem;
    width: 3rem;
}

.rounder-profile-image-medium-2[b-3dlkbmlp3z] {
    height: 5rem;
    width: 5rem;
}

.rounder-profile-image-large[b-3dlkbmlp3z] {
    height: 8rem;
    width: 8rem;
}

.rounder-profile-image-xlarge[b-3dlkbmlp3z] {
    height: 16rem;
    width: 16rem;
}
/* /Components/Subscription/PaymentOutcomeComponent.razor.rz.scp.css */
.payment[b-gvep8te9dz] {
    border: 1px solid #f2f2f2;
    height: 280px;
    border-radius: 20px;
    background: #fff;
}

.payment_header[b-gvep8te9dz] {
    padding: 20px;
    border-radius: 20px 20px 0px 0px;
}

.check[b-gvep8te9dz] {
    margin: 0px auto;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #fff;
    text-align: center;
}

    .check i[b-gvep8te9dz] {
        vertical-align: middle;
        line-height: 50px;
        font-size: 30px;
    }

.content[b-gvep8te9dz] {
    text-align: center;
}

    .content h1[b-gvep8te9dz] {
        font-size: 25px;
        padding-top: 25px;
    }

    .content a[b-gvep8te9dz] {
        width: 200px;
        height: 35px;
        color: #fff;
        border-radius: 30px;
        padding: 5px 10px;
        background: #000;
        transition: all ease-in-out 0.3s;
    }

        .content a:hover[b-gvep8te9dz] {
            text-decoration: none;
            background: rgba(255,102,0,1);
        }

small[b-gvep8te9dz] {
    color: #D3D3D3;
}
/* /Components/Utility/ModalLoader.razor.rz.scp.css */
.modal-loader[b-mr93ikv760] {
    position: relative;
    margin: auto;
    z-index: 99;
    width: 5em;
    height: 5em;
    border: 0.75em solid lightgray;
    border-radius: 50%;
    border-top-color: #003951; /* primary color */
    animation: spin-b-mr93ikv760 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin-b-mr93ikv760 {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

p[b-mr93ikv760] {
    text-align: center;
    margin: 1em 0 0;
    color: #66666C;
}
/* /Components/Utility/PictureLoader.razor.rz.scp.css */
.picture-loader[b-vb09mnh7lu] {
    position: relative;
    margin: auto;
    z-index: 10000;
    width: 2em;
    height: 2em;
    border: 0.5em solid lightgray;
    border-radius: 50%;
    border-top-color: #003951; /* primary color */
    animation: spin-b-vb09mnh7lu 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin-b-vb09mnh7lu {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}
/* /Components/Utility/StasRadioGroup.razor.rz.scp.css */
section[b-x0bspl7kfb] {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 2rem;
}

    section > div[b-x0bspl7kfb] {
        flex: 1;
    }

input[type="radio"][b-x0bspl7kfb] {
    display: none;
}

    input[type="radio"]:not(:disabled) ~ label[b-x0bspl7kfb] {
        cursor: pointer;
    }

    input[type="radio"]:disabled ~ label[b-x0bspl7kfb] {
        color: hsla(150, 5%, 75%, 1);
        border-color: hsla(150, 5%, 75%, 1);
        box-shadow: none;
        cursor: not-allowed;
    }

        input[type="radio"]:disabled ~ label img[b-x0bspl7kfb] {
            opacity: 0.5;
        }

label[b-x0bspl7kfb] {
    height: 100%;
    display: block;
    background: white;
    border: 2px solid hsla(150, 75%, 50%, 1);
    border-radius: 20px;
    font-weight: bold;
    padding-top: 2rem;
    margin: 0.5rem;
    text-align: center;
    box-shadow: 0px 3px 10px -2px hsla(150, 5%, 65%, 0.5);
    position: relative;
}

img[b-x0bspl7kfb] {
    width: 35%;
}

.checked-label[b-x0bspl7kfb] {
    border: 3px solid #ED880E;
    box-shadow: 0px 0px 20px #ED880E;
}

    .checked-label[b-x0bspl7kfb]::after {
        color: hsla(215, 5%, 25%, 1);
        font-family: FontAwesome;
        border: 2px solid #ED880E;
        content: "\f00c";
        font-size: 24px;
        position: absolute;
        top: -25px;
        right: 0;
        transform: translateX(-50%);
        height: 40px;
        width: 40px;
        line-height: 37px;
        text-align: center;
        border-radius: 50%;
        background: white;
        box-shadow: 0px 2px 5px -2px hsla(0, 0%, 0%, 0.25);
    }

@media only screen and (max-width: 1400px) {
    section > div[b-x0bspl7kfb] {
        flex: 1;
        padding: 1rem;
    }
}

@media only screen and (max-width: 700px) {
    section[b-x0bspl7kfb] {
        flex-direction: column;
    }

        section > div[b-x0bspl7kfb] {
            flex: 1;
            padding: 0;
        }

    label[b-x0bspl7kfb] {
        padding: 1rem;
    }

    img[b-x0bspl7kfb] {
        width: 15%;
    }
}
/* /Components/VirtualizeComponent.razor.rz.scp.css */
#sticky[b-gifrwo5wzs] {
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding-top: 0px;
    margin-top: 0px;
    padding-bottom: 15px;
}

#adjusted[b-gifrwo5wzs] {
    padding: 5px;
    margin: 5px;
    width: 100%;
    padding-bottom: 15px;
    padding-top: 0px;
    margin-top: 0px;
}
/* /Components/VirtualizeComponentMultiplePick.razor.rz.scp.css */
#sticky[b-mtaogyqzwr] {
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding-top: 0px;
    margin-top: 0px;
    padding-bottom: 15px;
}

#adjusted[b-mtaogyqzwr] {
    padding: 5px;
    margin: 5px;
    width: 100%;
    padding-bottom: 15px;
    padding-top: 0px;
    margin-top: 0px;
}
/* /Components/WorkDiaries/WorkDiaryDataGrid.razor.rz.scp.css */
/* Container styling */
.workdiary-datagrid-container[b-znrkngrt8q] {
    width: 100%;
}

/* Toolbar styling */
.workdiary-toolbar[b-znrkngrt8q] {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.workdiary-filter-item[b-znrkngrt8q] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Select styling */
[b-znrkngrt8q] .workdiary-select {
    min-width: 200px;
    border-radius: 6px;
}

/* Tabs styling override */
[b-znrkngrt8q] .nav-pills {
    gap: 0.5rem;
    margin-bottom: 0;
}

[b-znrkngrt8q] .nav-pills .nav-link {
    color: #003951 !important;
    border: 1px solid #003951 !important;
    background: transparent !important;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.15s ease;
}

[b-znrkngrt8q] .nav-pills .nav-link:hover {
    background: rgba(0, 57, 81, 0.1) !important;
}

[b-znrkngrt8q] .nav-pills .nav-link.active {
    background: #003951 !important;
    color: white !important;
}

/* DataGrid styling */
[b-znrkngrt8q] .workdiary-grid {
    font-size: 0.875rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #dee2e6;
}

[b-znrkngrt8q] .workdiary-grid .table {
    margin-bottom: 0;
}

[b-znrkngrt8q] .workdiary-grid .table th {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
    padding: 0.75rem;
}

[b-znrkngrt8q] .workdiary-grid .table td {
    vertical-align: middle;
    padding: 0.6rem 0.75rem;
    border-color: #e9ecef;
}

[b-znrkngrt8q] .workdiary-grid .table tbody tr:hover {
    background-color: rgba(237, 136, 14, 0.05);
}

/* Badge count styling */
[b-znrkngrt8q] .badge-count {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 0.65rem;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Flex vertical center */
[b-znrkngrt8q] .flex-vertical-center {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Pager styling */
[b-znrkngrt8q] .workdiary-grid .pagination {
    margin-top: 1rem;
    gap: 0.25rem;
}

[b-znrkngrt8q] .workdiary-grid .page-link {
    border-radius: 4px;
    border-color: #dee2e6;
    color: #003951;
}

[b-znrkngrt8q] .workdiary-grid .page-item.active .page-link {
    background-color: #003951;
    border-color: #003951;
}

/* Button styling in grid */
[b-znrkngrt8q] .workdiary-grid .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* Print area */
#print-div[b-znrkngrt8q] {
    width: 100%;
}

@media print {
    .workdiary-toolbar[b-znrkngrt8q] {
        display: none !important;
    }

    [b-znrkngrt8q] .nav-pills {
        display: none !important;
    }

    [b-znrkngrt8q] .d-print-none {
        display: none !important;
    }
}
/* /Components/WorkDiaries/WorkDiarySerbiaTemplate.razor.rz.scp.css */

.work-diary-container[b-ewzm74ep9d] {
    max-width: 1013px;
    padding: 1em;
    margin: auto;
    font-size: 14px;
}

.outside-border[b-ewzm74ep9d] {
    border: 2px solid black;
}
/* /Components/WorkDiaries/WorkDiaryTemplate.razor.rz.scp.css */
.work-diary-container[b-gpliyjc54y] {
    max-width: 1013px;
    padding: 1em;
    margin: auto;
    font-size: 14px;
}

.row-width[b-gpliyjc54y] {
    width: 980px;
}

.custom-border[b-gpliyjc54y] {
    border: 1px solid black;
    border-bottom: 0;
}

.custom-border-right[b-gpliyjc54y] {
    border-right: 1px solid black;
}

.custom-border-top[b-gpliyjc54y] {
    border-top: 1px solid black !important;
}

.custom-border-bottom[b-gpliyjc54y] {
    border-bottom: 1px solid black;
}

.custom-border-left[b-gpliyjc54y] {
    border-left: 1px solid black;
}

p[b-gpliyjc54y] {
    margin: 10px 0 0 5px;
}

.worker-machine-wrapper[b-gpliyjc54y] {
    display: flex;
}

    .worker-machine-wrapper div[b-gpliyjc54y] {
        border-right: 1px solid black;
        height: 169px;
        width: 25.221px;
        transform: rotate(180deg);
    }

    .worker-machine-wrapper p[b-gpliyjc54y] {
        font-size: 10.5px;
        writing-mode: vertical-lr;
    }

.numbers[b-gpliyjc54y] {
    font-size: 12px;
    border: 1px solid black;
    border-top: 0;
    height: 30px;
}

    .numbers div[b-gpliyjc54y] {
        border-right: 1px solid black;
        width: 25.2px;
        text-align: center;
    }

    .numbers span[b-gpliyjc54y] {
        position: relative;
        top: 20%;
    }

.signature[b-gpliyjc54y] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
}

.description[b-gpliyjc54y] {
    word-break: break-all;
    white-space: pre-line;
}

.numbers div:nth-child(-n+17)[b-gpliyjc54y] {
    width: 25px;
}

.wd-date[b-gpliyjc54y] {
    height: 100px;
    line-height: 75px;
}
/* /Components/WorkOrders/WorkOrderTemplateComponent.razor.rz.scp.css */
.work-order-container[b-gybzrq72qr] {
    border: 1px solid #eee;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    padding: 1em;
    margin: auto auto auto 10px;
}

.work-order-container p[b-gybzrq72qr] {
    margin-bottom: 0.2rem;
}

.title[b-gybzrq72qr] {
    text-align: center;
}

.company-wrapper[b-gybzrq72qr] {
    width: 100%;
    display: -webkit-box;
}

.company-wrapper > div[b-gybzrq72qr] {
    -webkit-box-flex: 1;
}

.company-info[b-gybzrq72qr] {
    width: auto;
}

.company-info p[b-gybzrq72qr] {
    margin: 3px;
}

.company-logo[b-gybzrq72qr] {
    width: auto;
    display: inline-block;
}

#logo-icon[b-gybzrq72qr] {
    width: 80px;
}

.d-flex[b-gybzrq72qr] {
    display: -webkit-box;
}

.d-flex > div[b-gybzrq72qr] {
    -webkit-box-flex: 1;
}

.d-flex > div:last-child[b-gybzrq72qr] {
    margin-right: 0;
}

span[b-gybzrq72qr] {
    background-color: lightgray;
}

main[b-gybzrq72qr], header[b-gybzrq72qr] {
    padding: 1em 2em 0 2em;
}

.ml-auto[b-gybzrq72qr] {
    margin-left: auto;
}

.w-50[b-gybzrq72qr] {
    width: 50%;
}

.w-100[b-gybzrq72qr] {
    width: 100%;
}

.m-auto[b-gybzrq72qr] {
    margin: auto;
}

.m-0[b-gybzrq72qr] {
    margin: 0;
}


.signature[b-gybzrq72qr] {
    width: 175px;
    margin-left: 30px;
}

.work-description[b-gybzrq72qr] {
    width: 100%;
    border: 1px solid black;
    min-height: 10em;
    height: fit-content;
    margin-bottom: 2em;
    word-break: break-all;
    white-space: pre-line;
}

.label-paragraph[b-gybzrq72qr] {
    background-color: lightgray;
    margin: 0;
    padding: 0.4em 0;
    text-align: center;
}

#remark[b-gybzrq72qr] {
    min-height: 6.5em;
}

.info-paragraph[b-gybzrq72qr] {
    padding: 0 5px;
}
/* /Modals/Account/InvitationEmailModal.razor.rz.scp.css */
.emails-wrapper[b-rv3qngeku1] {
    width: 75%;
    border: 1px dashed;
}

.email[b-rv3qngeku1] {
    border: 1px solid #ED880E;
    border-radius: 10px;
    padding: 0.2em;
    margin: 0.2em;
    line-height: 2;
}

.recipients-container[b-rv3qngeku1] {
    display: flex;
    min-height: 5em;
    padding: 0.1em;
}
/* /Modals/Utility/ChatModal.razor.rz.scp.css */
#scrollable-div[b-sfbbg4mhys] {
    overflow-y: scroll;
}

.chat-container[b-sfbbg4mhys] {
    font-size: 15px;
    width: 100%;
    word-break: break-all;
}

.green[b-sfbbg4mhys] {
    background-color: #58b666;
}

.orange[b-sfbbg4mhys] {
    background-color: #ff725d;
}

.blue[b-sfbbg4mhys] {
    background-color: #6fbced;
    margin-right: 0;
    margin-left: 7px;
}

#chat[b-sfbbg4mhys] {
    padding-left: 0;
    margin: 0;
    list-style-type: none;
    height: 535px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    text-align: left;
}

    #chat li[b-sfbbg4mhys] {
        padding: 10px 30px;
    }

    #chat h2[b-sfbbg4mhys],
    #chat h3[b-sfbbg4mhys] {
        display: inline-block;
        font-size: 13px;
        font-weight: normal;
    }

    #chat h3[b-sfbbg4mhys] {
        color: #bbb;
    }

    #chat .entete[b-sfbbg4mhys] {
        margin-bottom: 5px;
    }

    #chat .message[b-sfbbg4mhys] {
        padding: 20px;
        color: #fff;
        line-height: 25px;
        max-width: 90%;
        display: inline-block;
        border-radius: 5px;
    }

    #chat .me[b-sfbbg4mhys] {
        text-align: right;
    }

        #chat .me .message[b-sfbbg4mhys] {
            background-color: #58b666;
        }

    #chat .worker-1 .message[b-sfbbg4mhys] {
        background-color: #6fbced;
    }

    #chat .worker-2 .message[b-sfbbg4mhys] {
        background-color: #ff725d;
    }

    #chat .worker-3 .message[b-sfbbg4mhys] {
        background-color: #800080;
    }

.start-conversation[b-sfbbg4mhys] {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
/* /Modals/Workers/EditWorkerModal.razor.rz.scp.css */
.edit-worker-modal[b-3yqew0weuq] {
    display: flex;
    flex-direction: column;
    max-height: 92vh;
    background: #f8fafc;
    overflow: hidden;
}

/* Gradient Header */
.modal-header-gradient[b-3yqew0weuq] {
    background: linear-gradient(135deg, #003951 0%, #005a7a 100%);
    padding: 0.75rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.modal-header-icon-box[b-3yqew0weuq] {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.header-actions[b-3yqew0weuq] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

[b-3yqew0weuq] .text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}

/* Content Area */
.modal-content-scroll[b-3yqew0weuq] {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem;
}

/* 2-Column Layout: equal width */
.modal-columns-layout[b-3yqew0weuq] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    align-items: stretch;
}

@media (max-width: 768px) {
    .modal-columns-layout[b-3yqew0weuq] {
        grid-template-columns: 1fr;
    }
}

/* ═══ Column 1: Profile Card + Personal Data ═══ */
.modal-col-profile[b-3yqew0weuq] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.profile-card-section[b-3yqew0weuq] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 1rem 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.profile-avatar-wrapper[b-3yqew0weuq] {
    display: flex;
    justify-content: center;
    margin-bottom: 0.15rem;
}

[b-3yqew0weuq] .profile-avatar-img {
    width: 90px !important;
    height: 90px !important;
    min-width: 90px !important;
    min-height: 90px !important;
    border: 3px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

[b-3yqew0weuq] .profile-avatar-wrapper .initials-avatar {
    width: 90px !important;
    height: 90px !important;
    font-size: 2rem !important;
}

.profile-card-name[b-3yqew0weuq] {
    font-weight: 700;
    font-size: 1rem;
    color: #1e293b;
    text-align: center;
    line-height: 1.3;
}

.profile-card-badges[b-3yqew0weuq] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem;
}

.profile-card-status[b-3yqew0weuq] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #475569;
}

.status-dot[b-3yqew0weuq] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.profile-card-upload[b-3yqew0weuq] {
    width: 100%;
    margin-top: 0.25rem;
}

[b-3yqew0weuq] .profile-card-upload .drop-zone {
    padding: 0.5rem !important;
    min-height: unset !important;
}

.profile-card-info[b-3yqew0weuq] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.info-row[b-3yqew0weuq] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: #475569;
}

[b-3yqew0weuq] .info-icon {
    color: #003951;
    font-size: 0.8rem;
    width: 16px;
    flex-shrink: 0;
    text-align: center;
}

.info-text[b-3yqew0weuq] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Personal data 2-column grid */
.personal-fields-grid[b-3yqew0weuq] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem 0.6rem;
}

/* ═══ Column 2: Editable Fields ═══ */
.modal-col-fields[b-3yqew0weuq] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Section Cards (shared by col 1 and col 2) */
.section-card[b-3yqew0weuq] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.section-card-header[b-3yqew0weuq] {
    padding: 0.45rem 0.75rem;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 600;
    color: #003951;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.section-card-body[b-3yqew0weuq] {
    padding: 0.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Field rows & icons */
.field-row[b-3yqew0weuq] {
    display: flex;
    gap: 0.6rem;
}

[b-3yqew0weuq] .field-icon {
    color: #64748b;
    font-size: 0.7rem;
    margin-right: 0.15rem;
}

/* Compact field labels & inputs for all columns */
[b-3yqew0weuq] .modal-col-profile .field-label,
[b-3yqew0weuq] .modal-col-fields .field-label {
    font-size: 0.72rem;
    margin-bottom: 0.1rem;
}

[b-3yqew0weuq] .modal-col-profile .form-control,
[b-3yqew0weuq] .modal-col-profile .custom-select,
[b-3yqew0weuq] .modal-col-fields .form-control,
[b-3yqew0weuq] .modal-col-fields .custom-select {
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
    min-height: unset;
    height: auto;
}

/* Termination */
.termination-section[b-3yqew0weuq] {
    border-top: 2px solid #fecaca;
    padding-top: 0.6rem;
    margin-top: 0.2rem;
}

/* /Modals/Workers/PhoneVerificationModal.razor.rz.scp.css */
.phone-verification-modal[b-hxwhxn64ob] {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    min-width: 480px;
    max-width: 560px;
}

.modal-header-bar[b-hxwhxn64ob] {
    background: linear-gradient(135deg, #003951 0%, #005177 100%);
    padding: 16px 24px;
    color: #ffffff;
}

.modal-header-bar h3[b-hxwhxn64ob] {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.modal-body[b-hxwhxn64ob] {
    padding: 24px;
}

.description[b-hxwhxn64ob] {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.tab-row[b-hxwhxn64ob] {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 12px;
}

.tab-pill[b-hxwhxn64ob] {
    background: transparent;
    border: 1px solid #003951;
    color: #003951;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.15s;
}

.tab-pill:hover:not(:disabled)[b-hxwhxn64ob] {
    background: #f0f7fa;
}

.tab-pill.active[b-hxwhxn64ob] {
    background: #003951;
    color: #ffffff;
}

.tab-pill:disabled[b-hxwhxn64ob] {
    opacity: 0.4;
    cursor: not-allowed;
}

.tab-content[b-hxwhxn64ob] {
    margin: 16px 0 24px 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

.action-row[b-hxwhxn64ob] {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 16px;
}

.pending-header[b-hxwhxn64ob] {
    margin: 0 0 8px 0;
    color: #003951;
    font-size: 16px;
    font-weight: 600;
}

.pending-description[b-hxwhxn64ob] {
    margin: 0 0 16px 0;
    font-size: 13px;
    color: #6b7280;
}

.qr-container[b-hxwhxn64ob] {
    display: flex;
    justify-content: center;
    padding: 16px;
    background: #f9fafb;
    border-radius: 6px;
    margin-bottom: 16px;
}

.copy-link-row[b-hxwhxn64ob] {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.copy-link-row input[b-hxwhxn64ob] {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 12px;
    background: #f9fafb;
}

.email-sent-confirm[b-hxwhxn64ob] {
    margin: 0 0 16px 0;
    padding: 12px;
    background: #f0f7fa;
    border-left: 3px solid #ED880E;
    font-size: 13px;
    color: #374151;
}
/* /Pages/Account/Login.razor.rz.scp.css */
/* Login */
.center-middle-text[b-qv8zdgawfz] {
    display: flex;
    justify-content: space-between;
}

.center-middle-text label[b-qv8zdgawfz] {
    display: flex;
    margin: 0;
}

.center-middle-text label input[b-qv8zdgawfz] {
    margin-right: 0.25em;
}
/* /Pages/AI/AiAssistant.razor.rz.scp.css */
/* ═══ LAYOUT ═══ */
.ai-assistant-container[b-37cpltup11] {
    display: flex;
    height: calc(100vh - 60px);
    background: #f4f6f8;
    overflow: hidden;
}

/* ═══ SIDEBAR ═══ */
.ai-sidebar[b-37cpltup11] {
    background: #003951;
    color: white;
    display: flex;
    flex-direction: column;
    transition: width 0.25s ease;
    overflow: hidden;
}

.ai-sidebar.open[b-37cpltup11] {
    width: 260px;
    min-width: 260px;
}

.ai-sidebar.collapsed[b-37cpltup11] {
    width: 0;
    min-width: 0;
}

.ai-sidebar-header[b-37cpltup11] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-sidebar-title[b-37cpltup11] {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.ai-sidebar-toggle[b-37cpltup11] {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    padding: 4px;
}

.ai-sidebar-toggle:hover[b-37cpltup11] {
    opacity: 1;
}

.ai-sidebar-content[b-37cpltup11] {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
}

.ai-new-chat-btn[b-37cpltup11] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    margin-bottom: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
    color: rgba(255, 255, 255, 0.8);
}

.ai-new-chat-btn:hover[b-37cpltup11] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.ai-conv-item[b-37cpltup11] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 2px;
}

.ai-conv-item:hover[b-37cpltup11] {
    background: rgba(255, 255, 255, 0.08);
}

.ai-conv-item.active[b-37cpltup11] {
    background: rgba(255, 255, 255, 0.15);
}

.ai-conv-info[b-37cpltup11] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
}

.ai-conv-item .ai-conv-title[b-37cpltup11] {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ai-conv-item .ai-conv-meta[b-37cpltup11] {
    font-size: 11px;
    opacity: 0.5;
    margin-top: 2px;
}

/* ═══ CHAT PANEL ═══ */
.ai-chat-panel[b-37cpltup11] {
    width: 700px;
    min-width: 500px;
    display: flex;
    flex-direction: column;
    background: white;
}

/* ═══ CHAT HEADER ═══ */
.ai-chat-header[b-37cpltup11] {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    background: white;
    gap: 10px;
}

.ai-sidebar-toggle-mini[b-37cpltup11] {
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    color: #003951;
    transition: background 0.2s;
}

.ai-sidebar-toggle-mini:hover[b-37cpltup11] {
    background: #f0f0f0;
}

.ai-page-title[b-37cpltup11] {
    font-size: 15px;
    font-weight: 600;
    color: #003951;
}

/* ═══ REPORT TOP BAR (model + cost) ═══ */
.ai-report-topbar[b-37cpltup11] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid #e5e7eb;
    background: white;
}

.ai-report-topbar-left[b-37cpltup11] {
    flex-shrink: 0;
}

.ai-report-topbar-right[b-37cpltup11] {
    flex-shrink: 0;
}

.ai-model-select[b-37cpltup11] {
    appearance: none;
    background: #f4f6f8;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 6px 32px 6px 12px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.ai-model-select:focus[b-37cpltup11] {
    border-color: #003951;
}

.ai-cost-indicator[b-37cpltup11] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 12px;
}

.ai-cost-amount[b-37cpltup11] {
    font-weight: 600;
    color: #003951;
    font-size: 14px;
}

.ai-cost-label[b-37cpltup11] {
    color: #9ca3af;
    font-size: 11px;
}

.ai-cost-indicator.warning .ai-cost-amount[b-37cpltup11] {
    color: #dc2626;
}

/* ═══ CHAT AREA ═══ */
.ai-chat-area[b-37cpltup11] {
    flex: 1;
    overflow-y: auto;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Welcome / Empty state */
.ai-welcome[b-37cpltup11] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.ai-welcome-icon[b-37cpltup11] {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #003951, #00526e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
}

.ai-welcome h2[b-37cpltup11] {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px;
}

.ai-welcome-sub[b-37cpltup11] {
    font-size: 14px;
    color: #9ca3af;
    margin: 0 0 28px;
}

.ai-suggestions-grid[b-37cpltup11] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
}

.ai-suggestion[b-37cpltup11] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #4b5563;
    transition: all 0.2s;
    text-align: left;
}

.ai-suggestion:hover[b-37cpltup11] {
    border-color: #003951;
    background: #f0f7fa;
    color: #003951;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 57, 81, 0.08);
}

.ai-suggestion :deep(i)[b-37cpltup11],
.ai-suggestion :deep(svg)[b-37cpltup11] {
    color: #ED880E;
    font-size: 18px;
    flex-shrink: 0;
}

/* Messages */
.ai-msg[b-37cpltup11] {
    display: flex;
    gap: 12px;
    max-width: 85%;
}

.ai-msg.user[b-37cpltup11] {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.ai-msg.assistant[b-37cpltup11] {
    align-self: flex-start;
}

.ai-msg-avatar[b-37cpltup11] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #003951, #00526e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ai-msg-content[b-37cpltup11] {
    display: flex;
    flex-direction: column;
}

.ai-msg-bubble[b-37cpltup11] {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.ai-msg.user .ai-msg-bubble[b-37cpltup11] {
    background: #003951;
    color: white;
    border-bottom-right-radius: 4px;
}

.ai-msg.assistant .ai-msg-bubble[b-37cpltup11] {
    background: #f4f6f8;
    color: #1e293b;
    border-bottom-left-radius: 4px;
}

.ai-msg-meta[b-37cpltup11] {
    display: flex;
    gap: 6px;
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
    padding: 0 4px;
}

/* Typing indicator */
.ai-typing[b-37cpltup11] {
    display: flex;
    gap: 5px;
    padding: 14px 18px !important;
}

.ai-typing .dot[b-37cpltup11] {
    width: 8px;
    height: 8px;
    background: #9ca3af;
    border-radius: 50%;
    animation: ai-bounce-b-37cpltup11 1.4s ease-in-out infinite;
}

.ai-typing .dot:nth-child(2)[b-37cpltup11] { animation-delay: 0.2s; }
.ai-typing .dot:nth-child(3)[b-37cpltup11] { animation-delay: 0.4s; }

@keyframes ai-bounce-b-37cpltup11 {
    0%, 80%, 100% { transform: scale(0.5); opacity: 0.3; }
    40% { transform: scale(1); opacity: 1; }
}

/* ═══ INPUT BAR ═══ */
.ai-input-bar[b-37cpltup11] {
    padding: 16px 20px;
    border-top: 1px solid #e5e7eb;
    background: white;
}

.ai-input-wrapper[b-37cpltup11] {
    display: flex;
    align-items: center;
    background: #f4f6f8;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 4px 4px 4px 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ai-input-wrapper:focus-within[b-37cpltup11] {
    border-color: #003951;
    box-shadow: 0 0 0 3px rgba(0, 57, 81, 0.08);
}

.ai-input-wrapper :deep(input)[b-37cpltup11] {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 8px 0 !important;
    font-size: 14px;
    flex: 1;
}

.ai-send-btn[b-37cpltup11] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: #003951;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.ai-send-btn:hover:not(.disabled)[b-37cpltup11] {
    background: #00526e;
}

.ai-send-btn.disabled[b-37cpltup11] {
    opacity: 0.4;
    cursor: not-allowed;
}

.ai-input-hint[b-37cpltup11] {
    display: flex;
    gap: 6px;
    font-size: 11px;
    color: #9ca3af;
    margin-top: 6px;
    padding: 0 4px;
}

/* ═══ REPORT PANEL ═══ */
.ai-report-panel[b-37cpltup11] {
    flex: 1;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #e5e7eb;
    background: white;
}

.ai-report-toolbar[b-37cpltup11] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 1px solid #e5e7eb;
    background: #fafbfc;
}

.ai-report-nav[b-37cpltup11] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-report-counter[b-37cpltup11] {
    font-size: 12px;
    color: #6b7280;
    min-width: 40px;
    text-align: center;
}

.ai-report-title[b-37cpltup11] {
    font-weight: 600;
    color: #003951;
    font-size: 14px;
}

.ai-report-actions[b-37cpltup11] {
    display: flex;
    gap: 6px;
}

.ai-report-frame[b-37cpltup11] {
    flex: 1;
    border: none;
    width: 100%;
}

.ai-empty-report[b-37cpltup11] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #9ca3af;
    padding: 40px;
}

.ai-empty-icon[b-37cpltup11] {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #f4f6f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #003951;
    opacity: 0.3;
}

.ai-empty-report p[b-37cpltup11] {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

.ai-empty-hint[b-37cpltup11] {
    font-size: 12px;
    color: #9ca3af;
}

/* ====== Cap-reached banner ====== */
.ai-cap-banner[b-37cpltup11] {
    background: linear-gradient(135deg, rgba(237,136,14,0.12), rgba(237,136,14,0.04));
    border-top: 1px solid rgba(237,136,14,0.35);
    border-bottom: 1px solid rgba(237,136,14,0.35);
    padding: 10px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.ai-cap-banner-left[b-37cpltup11] { display: flex; align-items: center; gap: 12px; min-width: 0; }
.ai-cap-banner-icon[b-37cpltup11] {
    width: 36px; height: 36px; border-radius: 8px;
    background: #ED880E; color: white;
    display: flex; align-items: center; justify-content: center; font-size: 15px;
    flex-shrink: 0;
}
.ai-cap-banner-title[b-37cpltup11] { font-weight: 700; color: #9a5a03; font-size: 0.92rem; }
.ai-cap-banner-sub[b-37cpltup11]   { font-size: 0.78rem; color: #78350f; margin-top: 1px; }
.ai-cap-banner-btn[b-37cpltup11] {
    background: #003951; color: white; border: none;
    padding: 8px 14px; border-radius: 8px; cursor: pointer;
    font-weight: 600; font-size: 0.82rem;
    display: inline-flex; align-items: center; gap: 6px;
    transition: background 0.15s;
    flex-shrink: 0;
}
.ai-cap-banner-btn:hover[b-37cpltup11] { background: #00526e; }

/* Budget Manager nav link in the chat header (CompanyOwner only) */
.ai-nav-link[b-37cpltup11] {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #003951;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(0, 57, 81, 0.06);
    transition: background 0.15s, color 0.15s;
}
.ai-nav-link:hover[b-37cpltup11] {
    background: rgba(237, 136, 14, 0.12);
    color: #ED880E;
}
.ai-nav-link i[b-37cpltup11] { font-size: 13px; }
/* /Pages/Companies/Edit.razor.rz.scp.css */
.custom-select[b-ywvkacp3ii] {
    width: 50% !important;
}
/* /Pages/Companies/Subscription.razor.rz.scp.css */
[b-rk1bw8qpo3] .nav-pills .nav-link {
    color: #003951 !important;
    border: 1px solid #003951 !important;
    background: transparent !important;
}

[b-rk1bw8qpo3] .nav-pills .nav-link.active {
    background: #003951 !important;
    color: white !important;
}
/* /Pages/Companies/SubscriptionTabs/AiUsageTab.razor.rz.scp.css */
.aiub-progress.is-success[b-jq7ojpm85e]  .progress-bar { background-color: #28a745; }
.aiub-progress.is-warning[b-jq7ojpm85e]  .progress-bar { background-color: #ED880E; }
.aiub-progress.is-danger[b-jq7ojpm85e]  .progress-bar { background-color: #dc2626; }
.aiub-progress[b-jq7ojpm85e]  .progress-bar { transition: width 0.4s ease; }
/* /Pages/Dashboard/Index.razor.rz.scp.css */
/* /Pages/Gps/Index.razor.rz.scp.css */
/* ====================================================================
   GPS Tracking page (Option B-1): map-first with collapsible inspector.
   Tokens come from imported-style.css (--stas-* / --z-* / --stas-motion-*).
   ==================================================================== */

/* Page frame
   100dvh = dynamic viewport height (handles mobile browser chrome shrinking).
   The 95px offset accounts for the master layout's fixed header (LoginDisplay)
   which carries the page title + subtitle + padding (~75-85px) plus a small
   safety margin so the page never overflows and triggers a body scrollbar. */
.gps-page[b-ak52yyrm62] {
    display: flex;
    flex-direction: column;
    height: calc(100dvh - 95px);
    max-height: calc(100dvh - 95px);
    background: var(--stas-bg-page);
    /* overflow: visible lets the static flatpickr calendar inside the action bar
       drop below the bar without being clipped. Body-level scrolling is contained
       by .gps-body's own overflow rules below. */
    overflow: visible;
}

/* ===================== ACTION BAR (filters + KPIs + actions in one row) =====================
   Replaces the previous separate page-header / filter-row / KPI-row stack.
   Page title + subtitle now live in the master layout header (LoginDisplay)
   so the GPS page reclaims that vertical real estate.                                          */
.gps-action-bar[b-ak52yyrm62] {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    padding: 0.625rem 1rem;
    background: var(--stas-bg-surface);
    border-bottom: 1px solid var(--stas-border);
    flex-shrink: 0;
    /* Allow the static-mode date picker calendar to overflow below the bar
       (drops onto the map, not clipped at the bottom of the action bar). */
    overflow: visible;
    position: relative;
    z-index: 5;
}

.gps-action-bar .filter-dates[b-ak52yyrm62] {
    display: flex;
    gap: 0.625rem;
    align-items: end;
    flex-shrink: 0;
    /* Each Field is a positioning anchor for its static flatpickr calendar so
       the dropdown attaches directly under its input instead of being treated
       as a body-portal at the bottom of the page. */
}

/* Static-mode flatpickr calendar: positioned absolutely inside the Field wrapper
   directly below the input. The original (default, body-appended) mode mis-positioned
   the calendar at the bottom of the viewport on this page because the .gps-page
   container uses `height: calc(100dvh - 95px)` + `overflow: hidden`, which confused
   flatpickr's auto-position math.
   Each date Field acts as the positioning anchor (position: relative + overflow: visible). */
.gps-action-bar .filter-dates[b-ak52yyrm62]  .field {
    position: relative;
    overflow: visible;
}

.gps-action-bar .filter-dates[b-ak52yyrm62]  .flatpickr-calendar {
    top: calc(100% + 4px) !important;
    left: 0 !important;
    z-index: 10060;
    box-shadow: 0 6px 24px rgba(0, 57, 81, 0.18);
}

/* Strip Blazorise/Bootstrap's default 1rem bottom margin on <Field>/<form-group>,
   otherwise the field box extends ~16px below the visible input and the
   sibling Apply button (no such margin) appears to sit lower than the inputs. */
.gps-action-bar .filter-dates[b-ak52yyrm62]  .field,
.gps-action-bar .filter-dates[b-ak52yyrm62]  .form-group {
    margin-bottom: 0;
}

.gps-action-bar .filter-dates[b-ak52yyrm62]  label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--stas-primary);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Compact pickers so the dates section stays narrow */
.gps-action-bar .filter-dates[b-ak52yyrm62]  .form-control {
    height: 36px;
    padding: 0.3rem 0.5rem;
    font-size: 0.85rem;
    width: 140px;
}

.gps-action-bar .filter-apply-btn[b-ak52yyrm62] {
    height: 36px;
    align-self: end;
    white-space: nowrap;
    padding: 0.25rem 0.875rem;
    font-size: 0.82rem;
    font-weight: 500;
    min-width: 64px;
}

/* KPI grid takes the available space between dates and actions */
.gps-action-bar .filter-kpis[b-ak52yyrm62] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
    align-items: center;
}

.gps-action-bar .filter-actions[b-ak52yyrm62] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-shrink: 0;
}

/* Refresh button: outlined primary, sized to match the live indicator pill (36px tall).
   Was Color.Light + Outline, which renders as white border on white background and is
   nearly invisible — this gives a clear teal border + label that contrasts with the page. */
.gps-action-bar .gps-refresh-btn[b-ak52yyrm62] {
    height: 36px;
    padding: 0 0.85rem;
    font-size: 0.82rem;
    font-weight: 500;
    border-width: 1px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    white-space: nowrap;
}

.gps-action-bar .gps-refresh-btn[disabled][b-ak52yyrm62] {
    opacity: 0.55;
}

/* ===================== BODY: sidebar | map | inspector ===================== */
.gps-body[b-ak52yyrm62] {
    display: grid;
    grid-template-columns: 280px 1fr 380px;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

/* ===================== SIDEBAR ===================== */
.gps-sidebar[b-ak52yyrm62] {
    background: var(--stas-bg-surface);
    border-right: 1px solid var(--stas-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gps-sidebar-header[b-ak52yyrm62] {
    padding: 0.75rem 0.875rem 0.5rem;
    border-bottom: 1px solid var(--stas-border);
    flex-shrink: 0;
}

.gps-sidebar-header h3[b-ak52yyrm62] {
    margin: 0 0 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--stas-primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.gps-search-input[b-ak52yyrm62]  input {
    width: 100%;
    padding: 0.45rem 0.625rem 0.45rem 1.875rem;
    border: 1px solid var(--stas-border-strong);
    border-radius: 6px;
    font-size: 0.82rem;
    background: var(--stas-bg-surface) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='8'/><path d='m21 21-4.3-4.3'/></svg>") no-repeat 0.55rem center;
}

.gps-vehicle-list[b-ak52yyrm62] {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0.5rem 0.75rem;
    background: var(--stas-bg-page);
}

/* ----- Vehicle row (new button-based, accessibility-first) ----- */
.gps-vehicle-row[b-ak52yyrm62] {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0.625rem;
    gap: 0.625rem;
    border-radius: 6px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--stas-text-primary);
    cursor: pointer;
    text-align: left;
    transition: background-color var(--stas-motion-fast),
                border-color var(--stas-motion-fast),
                box-shadow var(--stas-motion-fast);
    margin-bottom: 0.125rem;
    font-family: inherit;
    font-size: inherit;
    position: relative;
}

.gps-vehicle-row:hover[b-ak52yyrm62] {
    background: var(--stas-primary-soft);
    border-color: var(--stas-border);
}

.gps-vehicle-row:focus-visible[b-ak52yyrm62] {
    outline: 2px solid var(--stas-accent);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(237, 136, 14, 0.2);
}

.gps-vehicle-row.is-selected[b-ak52yyrm62] {
    background: var(--stas-accent-soft);
    border-left: 4px solid var(--stas-accent);
    padding-left: calc(0.625rem - 3px);
}

.v-status-dot[b-ak52yyrm62] {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}

.v-status-dot.status-active[b-ak52yyrm62]   { background: var(--stas-success); }
.v-status-dot.status-stopped[b-ak52yyrm62]  { background: var(--stas-warning); }
.v-status-dot.status-inactive[b-ak52yyrm62] { background: var(--stas-danger); }
.v-status-dot.status-unknown[b-ak52yyrm62]  { background: var(--stas-text-muted); }

.v-icon[b-ak52yyrm62] {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
    background: var(--stas-bg-muted);
    border-radius: 4px;
}

.v-info[b-ak52yyrm62] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.v-name[b-ak52yyrm62] {
    font-weight: 600;
    font-size: 0.83rem;
    color: var(--stas-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.v-plate[b-ak52yyrm62] {
    font-size: 0.72rem;
    color: var(--stas-text-secondary);
    font-variant-numeric: tabular-nums;
}

.v-inactive-icon-wrap[b-ak52yyrm62] {
    display: inline-flex;
    align-items: center;
    cursor: help;
}

.v-inactive-icon[b-ak52yyrm62] {
    color: var(--stas-danger);
    flex-shrink: 0;
    font-size: 0.95rem;
}

/* Status dot also surfaces a tooltip on hover (status name) */
.v-status-dot[b-ak52yyrm62] {
    cursor: help;
}

@media (prefers-reduced-motion: reduce) {
    .gps-vehicle-row[b-ak52yyrm62] {
        transition: none;
    }
}

/* sr-only text for screen readers (status text, etc.) */
.visually-hidden[b-ak52yyrm62] {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ===================== MAP COLUMN ===================== */
.gps-map[b-ak52yyrm62] {
    position: relative;
    overflow: hidden;
    background: var(--stas-bg-muted);
    height: 100%;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1500px) {
    .gps-action-bar[b-ak52yyrm62] {
        flex-wrap: wrap;
    }
    .gps-action-bar .filter-kpis[b-ak52yyrm62] {
        flex: 1 1 100%;
        order: 3;
    }
    .gps-action-bar .filter-actions[b-ak52yyrm62] {
        margin-left: auto;
    }
    .gps-body[b-ak52yyrm62] {
        grid-template-columns: 260px 1fr 340px;
    }
}

@media (max-width: 1100px) {
    .gps-action-bar .filter-kpis[b-ak52yyrm62] {
        grid-template-columns: repeat(3, 1fr);
    }
    .gps-body[b-ak52yyrm62] {
        grid-template-columns: 240px 1fr;
    }
    /* Inspector becomes a stacked panel below body on tablet */
    .route-inspector[b-ak52yyrm62] {
        display: none;
    }
}

@media (max-width: 768px) {
    .gps-page[b-ak52yyrm62] {
        height: auto;
    }
    .gps-action-bar[b-ak52yyrm62] {
        flex-direction: column;
        align-items: stretch;
    }
    .gps-action-bar .filter-dates[b-ak52yyrm62] {
        flex-wrap: wrap;
    }
    .gps-action-bar .filter-kpis[b-ak52yyrm62] {
        grid-template-columns: repeat(2, 1fr);
    }
    .gps-body[b-ak52yyrm62] {
        grid-template-columns: 1fr;
    }
    .gps-sidebar[b-ak52yyrm62] {
        display: none;
    }
}
/* /Pages/Reports/Project360.razor.rz.scp.css */
/* Main container */
.project360-container[b-ckz75leeve] {
    max-width: 1600px;
    margin: 0 auto;
}

/* Ensure all direct children of container have same width */
.project360-container > *[b-ckz75leeve] {
    width: 100%;
    box-sizing: border-box;
}

/* Content area - ensure all children have same width */
.project360-content[b-ckz75leeve] {
    width: 100%;
}

.project360-content > *[b-ckz75leeve] {
    width: 100%;
    box-sizing: border-box;
}

/* Filter row */
.project360-filter-row[b-ckz75leeve] {
    align-items: center;
    gap: 0.75rem;
}

.project360-filter-row .project360-filter-inline[b-ckz75leeve] {
    align-items: center;
    gap: 0.5rem;
}

.project360-filter-row .project360-select-pair[b-ckz75leeve] {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem;
}

.project360-filter-row .project360-actions-inline[b-ckz75leeve] {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem;
}

.project360-filter-row .project360-quick-range-row[b-ckz75leeve] {
    flex-basis: 100%;
    margin-top: 0.5rem;
}

/* Card styling - matching dashboard style */
[b-ckz75leeve] .project360-card {
    border: solid 1px lightgray;
    border-radius: 11px;
    box-shadow: 1px 4px 5px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

[b-ckz75leeve] .project360-card:hover {
    border-color: #ED880E;
    box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.15);
}

/* Filter card special styling */
[b-ckz75leeve] .project360-filter-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Grid layouts */
.project360-secondary-grid[b-ckz75leeve],
.project360-chart-grid[b-ckz75leeve],
.project360-lower-grid[b-ckz75leeve],
.project360-kpi-grid[b-ckz75leeve] {
    width: 100%;
    box-sizing: border-box;
}

.project360-secondary-grid[b-ckz75leeve] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.project360-secondary-grid > *[b-ckz75leeve],
.project360-chart-grid > *[b-ckz75leeve],
.project360-lower-grid > *[b-ckz75leeve],
.project360-kpi-grid > *[b-ckz75leeve] {
    min-width: 0;
    box-sizing: border-box;
}

.project360-secondary-grid > *[b-ckz75leeve] {
    min-height: 280px;
}

.project360-chart-grid[b-ckz75leeve] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.project360-chart-grid > *[b-ckz75leeve] {
    min-height: 320px;
}

.project360-lower-grid[b-ckz75leeve] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.project360-lower-grid > *[b-ckz75leeve] {
    min-height: 300px;
}

/* Filter row elements */
.project360-filter-row[b-ckz75leeve]  .btn,
.project360-filter-row[b-ckz75leeve]  .picker-div,
.project360-filter-row[b-ckz75leeve]  .project360-select,
.project360-filter-row .project360-select[b-ckz75leeve] {
    min-height: 2.25rem;
    padding: 0.35rem 0.75rem;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
}

.project360-filter-row .btn-group[b-ckz75leeve],
.project360-filter-row .btn-group .btn[b-ckz75leeve] {
    align-items: center;
}

.project360-filter-row .btn-group .btn[b-ckz75leeve] {
    display: inline-flex;
}

.project360-filter-row .project360-select[b-ckz75leeve] {
    min-width: 190px;
}

.project360-filter-row .project360-select.narrow[b-ckz75leeve] {
    min-width: 140px;
}

/* Quick range buttons - FIXED visibility */
.project360-quick-range[b-ckz75leeve] {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.project360-quick-range[b-ckz75leeve]  .btn {
    min-height: 2.1rem;
    padding: 0.4rem 1rem;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 6px;
    transition: all 0.15s ease;
}

/* Unselected buttons - visible with border */
.project360-quick-range[b-ckz75leeve]  .btn-light,
.project360-quick-range[b-ckz75leeve]  .btn-outline-light {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    color: #495057;
}

.project360-quick-range[b-ckz75leeve]  .btn-light:hover,
.project360-quick-range[b-ckz75leeve]  .btn-outline-light:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
    color: #212529;
}

/* Selected buttons - primary color */
.project360-quick-range[b-ckz75leeve]  .btn-primary {
    background-color: #ED880E;
    border-color: #ED880E;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(237, 136, 14, 0.3);
}

.project360-quick-range[b-ckz75leeve]  .btn-primary:hover {
    background-color: #d67a0d;
    border-color: #d67a0d;
}

/* KPI Grid */
.project360-kpi-grid[b-ckz75leeve] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.project360-kpi-grid .kpi-card[b-ckz75leeve] {
    min-height: 180px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.project360-kpi-grid .kpi-card[b-ckz75leeve]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ED880E, #f5a623);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.project360-kpi-grid .kpi-card:hover[b-ckz75leeve]::before {
    opacity: 1;
}

.project360-kpi-grid .kpi-header[b-ckz75leeve] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.project360-kpi-grid .kpi-icon[b-ckz75leeve] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #f5f6f8 0%, #e9ecef 100%);
    border: 1px solid #e3e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.project360-kpi-grid .kpi-title[b-ckz75leeve] {
    font-weight: 600;
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.project360-kpi-grid .kpi-value[b-ckz75leeve] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.project360-kpi-grid .kpi-subtext[b-ckz75leeve] {
    color: #6c757d;
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Profit/Loss indicators */
.project360-kpi-grid .kpi-positive[b-ckz75leeve] {
    border-left: 4px solid #28a745;
}

.project360-kpi-grid .kpi-positive .kpi-value[b-ckz75leeve] {
    color: #28a745;
}

.project360-kpi-grid .kpi-negative[b-ckz75leeve] {
    border-left: 4px solid #dc3545;
}

.project360-kpi-grid .kpi-negative .kpi-value[b-ckz75leeve] {
    color: #dc3545;
}

/* Summary sections */
.summary-label[b-ckz75leeve] {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-bottom: 0.25rem;
}

.summary-value[b-ckz75leeve] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
}

.summary-subtext[b-ckz75leeve] {
    color: #6c757d;
    font-size: 0.8rem;
    margin-top: 0.75rem;
}

/* Chart wrapper */
.donut-wrapper[b-ckz75leeve] {
    flex: 1;
    min-width: 220px;
    padding: 0.5rem;
}

/* Notes list */
.notes-list[b-ckz75leeve] {
    max-height: 400px;
    overflow-y: auto;
}

.note-item[b-ckz75leeve] {
    padding: 0.75rem;
    transition: background-color 0.15s ease;
    border-radius: 6px;
}

.note-item:hover[b-ckz75leeve] {
    background-color: #f8f9fa;
}

/* Data Grid styling */
[b-ckz75leeve] .project360-grid {
    font-size: 0.875rem;
    border-radius: 8px;
    overflow: hidden;
}

[b-ckz75leeve] .project360-grid .table {
    margin-bottom: 0;
}

[b-ckz75leeve] .project360-grid .table th {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
    padding: 0.75rem;
}

[b-ckz75leeve] .project360-grid .table td {
    vertical-align: middle;
    padding: 0.6rem 0.75rem;
    border-color: #e9ecef;
}

[b-ckz75leeve] .project360-grid .table tbody tr:hover {
    background-color: #f8f9fa;
}

[b-ckz75leeve] .project360-grid .b-table-filter-row input {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* Cache badge */
.project360-cache-badge[b-ckz75leeve] {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

/* Header section */
.project360-header[b-ckz75leeve] {
    padding: 0.5rem 0;
}

.project360-status-tags[b-ckz75leeve]  .badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

/* Card headers */
[b-ckz75leeve] .project360-card .card-header {
    background: transparent;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 1.25rem;
}

[b-ckz75leeve] .project360-card .card-header h5 {
    margin: 0;
    font-weight: 600;
    color: #212529;
}

[b-ckz75leeve] .project360-card .card-body {
    padding: 1.25rem;
}

/* Summary items for Progress & Receivables cards */
.summary-items-container[b-ckz75leeve] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.summary-item[b-ckz75leeve] {
    display: inline-flex;
    align-items: center;
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

/* Workforce summary */
.workforce-summary > div[b-ckz75leeve] {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    min-width: 120px;
    text-align: center;
}

/* Empty state styling */
.project360-empty-state[b-ckz75leeve] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 200px;
    text-align: center;
    padding: 2rem;
}

.project360-empty-state .empty-icon[b-ckz75leeve] {
    font-size: 2.5rem;
    color: #adb5bd;
    margin-bottom: 1rem;
}

.project360-empty-state .text-muted[b-ckz75leeve] {
    margin: 0;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
    .project360-kpi-grid[b-ckz75leeve] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .project360-secondary-grid[b-ckz75leeve],
    .project360-chart-grid[b-ckz75leeve],
    .project360-lower-grid[b-ckz75leeve] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .project360-kpi-grid[b-ckz75leeve] {
        grid-template-columns: 1fr;
    }

    .donut-wrapper[b-ckz75leeve] {
        min-width: 100%;
    }

    .project360-quick-range[b-ckz75leeve] {
        flex-direction: column;
    }

    .project360-quick-range[b-ckz75leeve]  .btn {
        width: 100%;
        justify-content: center;
    }

    .workforce-summary[b-ckz75leeve] {
        flex-direction: column;
    }

    .workforce-summary > div[b-ckz75leeve] {
        width: 100%;
    }
}
/* /Pages/WorkDiaries/Index.razor.rz.scp.css */
/* WorkDiaries Index page - uses global report-pages.css classes */
/* All styling handled by .report-card, .report-container, .report-empty-state from global CSS */
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-vian5st86d] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-vian5st86d] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-vian5st86d] {
    font-size: 1.1rem;
}

.oi[b-vian5st86d] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-vian5st86d] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-vian5st86d] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-vian5st86d] {
        padding-bottom: 1rem;
    }

    .nav-item[b-vian5st86d]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

        .nav-item[b-vian5st86d]  a.active {
            background-color: rgba(255,255,255,0.25);
            color: white;
        }

        .nav-item[b-vian5st86d]  a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }

@media (min-width: 768px) {
    .navbar-toggler[b-vian5st86d] {
        display: none;
    }

    .collapse[b-vian5st86d] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
