/* /Components/Dashboard.razor.rz.scp.css */
.dashboard-header[b-gs6dfu741k] {
    margin-bottom: 30px;
    text-align: center;
}

.card[b-gs6dfu741k] {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
    height: 100%; /* Ensure cards in a row have equal height */
}

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

.card-body[b-gs6dfu741k] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title[b-gs6dfu741k] {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

    .card-title i[b-gs6dfu741k] {
        margin-right: 10px;
        font-size: 1.4rem;
        color: #6c757d; /* Default icon color */
    }

.card-text[b-gs6dfu741k] {
    font-size: 2.2rem;
    font-weight: 700;
    color: #aaa;
    line-height: 1;
}

.card-subtitle[b-gs6dfu741k] {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 5px;
}
/* Specific icon colors */
.card-total i[b-gs6dfu741k] {
    color: #0d6efd;
}
/* Blue */
.card-Scheduled i[b-gs6dfu741k] {
    color: #ffc107;
}
/* Yellow */
.card-in-progress i[b-gs6dfu741k] {
    color: #17a2b8;
}
/* Teal */
.card-completed i[b-gs6dfu741k] {
    color: #28a745;
}
/* Green */
.card-cancelled i[b-gs6dfu741k] {
    color: #dc3545;
}
/* Red */
.card-revenue i[b-gs6dfu741k] {
    color: #6f42c1;
}
/* Purple */
.card-cost i[b-gs6dfu741k] {
    color: #fd7e14;
}
/* Orange */
.card-profit i[b-gs6dfu741k] {
    color: #20c997;
}
/* Mint */
.card-vehicles i[b-gs6dfu741k] {
    color: #6610f2;
}
/* Indigo */
.card-customers i[b-gs6dfu741k] {
    color: #e83e8c;
}
/* Pink */
.card-rate i[b-gs6dfu741k] {
    color: #0dcaf0;
}
/* Cyan */
.card-average i[b-gs6dfu741k] {
    color: #6c757d;
}
/* Gray */

.section-title[b-gs6dfu741k] {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
    color: #495057;
}

/* Responsive adjustments for card text */
@media (max-width: 767.98px) {
    .card-text[b-gs6dfu741k] {
        font-size: 1.8rem;
    }

    .card-title[b-gs6dfu741k] {
        font-size: 1rem;
    }

        .card-title i[b-gs6dfu741k] {
            font-size: 1.2rem;
        }
}
/* /Components/LandingPage.razor.rz.scp.css */
.section-padding[b-es4byzrnu5] {
    padding: 80px 0;
}

.section-title[b-es4byzrnu5] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.feature-icon[b-es4byzrnu5] {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card[b-es4byzrnu5] {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
    height: 100%; /* Ensure cards in a row have equal height */
}

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

.card-body[b-es4byzrnu5] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title[b-es4byzrnu5] {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

    .card-title i[b-es4byzrnu5] {
        margin-right: 10px;
        font-size: 1.4rem;
    }

.card-text-dashboard[b-es4byzrnu5] { /* Renamed to avoid conflict */
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 767.98px) {
    .section-title[b-es4byzrnu5] {
        font-size: 2rem;
    }

    .card-text-dashboard[b-es4byzrnu5] {
        font-size: 1.8rem;
    }

    .card-title[b-es4byzrnu5] {
        font-size: 1rem;
    }

        .card-title i[b-es4byzrnu5] {
            font-size: 1.2rem;
        }
}
/* /Components/SettingsOffcanvas.razor.rz.scp.css */
.offcanvas-backdrop[b-iuuj0a18ks] {
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1040;
}

.offcanvas[b-iuuj0a18ks] {
    z-index: 1050;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}

.font-weight-bold[b-iuuj0a18ks] {
    font-weight: 600;
}
/* /Components/TemplatedDialog.razor.rz.scp.css */
.dialog-container[b-pv5k5z1qyi] {
    position: fixed; /* cover viewport reliably */
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex; /* activate flex centering */
    justify-content: center; /* center horizontally */
    align-items: center; /* center vertically */
    background-color: rgba(0,0,0,0.5);
    z-index: 2000;
    animation: dialog-container-entry-b-pv5k5z1qyi 0.2s;
}

@keyframes dialog-container-entry-b-pv5k5z1qyi {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.dialog[b-pv5k5z1qyi] {
    width: 900px;
    max-height: calc(100% - 3rem);
    box-shadow: 0 0 12px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    animation: dialog-entry-b-pv5k5z1qyi 0.4s cubic-bezier(0.075, 0.820, 0.165, 1.000);
    /* remove align-self, margin:auto, you don’t need them */
}

@keyframes dialog-entry-b-pv5k5z1qyi {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateX(0px) scale(1.0);
    }
}

.dialog-title[b-pv5k5z1qyi] {
    background-color: #444;
    color: #fff2cc;
    padding: 1.3rem 2rem;
}

    .dialog-title h2[b-pv5k5z1qyi] {
        color: white;
        font-size: 1.4rem;
        margin: 0;
        font-family: 'Bahnschrift', Arial, Helvetica, sans-serif;
        text-transform: uppercase;
        line-height: 1.3rem;
    }

.dialog-body[b-pv5k5z1qyi] {
    flex-grow: 1;
    padding: 0.5rem 3rem 1rem 0;
}

.dialog-buttons[b-pv5k5z1qyi] {
    height: 4rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    background-color: #eee;
    padding: 0 1rem;
}

.dialog-body > div[b-pv5k5z1qyi] {
    display: flex;
    margin-top: 1rem;
    align-items: center;
}

.dialog-body label[b-pv5k5z1qyi] {
    text-align: right;
    width: 200px;
    margin: 0 1.5rem;
}

.dialog-body input[b-pv5k5z1qyi], .dialog-body select[b-pv5k5z1qyi] {
    flex-grow: 1;
    width: unset;
}

.dialog-body .size-label[b-pv5k5z1qyi] {
    min-width: 110px;
    text-align: right;
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* Premium Dark Layout Container */
.app-wrapper[b-t0r9y98jhq] {
    background-color: #0b0c10;
    min-height: 100vh;
    color: #e2e8f0;
    overflow-x: hidden;
}

/* Header Container */
.app-header-outer[b-t0r9y98jhq] {
    background-color: #0b0c10;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.max-header-width[b-t0r9y98jhq] {
    max-width: 1440px;
    margin: 0 auto;
}

/* 3-Column Grid Layout for Perfect Centering on Desktop */
.app-header-card[b-t0r9y98jhq] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    background: linear-gradient(180deg, #131620 0%, #0f1118 100%);
    border: 1px solid #1f2330;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
    min-height: 68px;
}

/* Left Brand Section */
.header-left[b-t0r9y98jhq] {
    grid-column: 1;
}

.brand-link[b-t0r9y98jhq] {
    transition: opacity 0.2s ease;
}

.brand-link:hover[b-t0r9y98jhq] {
    opacity: 0.9;
}

.brand-name[b-t0r9y98jhq] {
    font-size: 1.35rem;
    letter-spacing: -0.2px;
}

.brand-red[b-t0r9y98jhq] {
    color: #ea3838 !important;
}

.brand-subtitle[b-t0r9y98jhq] {
    font-size: 0.62rem;
    color: #787f90;
    letter-spacing: 1.8px;
    font-weight: 600;
    margin-top: 2px;
}

.brand-divider[b-t0r9y98jhq] {
    height: 34px;
    width: 1px;
    background-color: #222634;
}

/* Center Navigation Section */
.header-center[b-t0r9y98jhq] {
    grid-column: 2;
    justify-self: center;
}

.nav-item-stacked[b-t0r9y98jhq] {
    color: #9da3b4;
    position: relative;
    padding: 6px 12px;
    width: 110px;
    text-align: center;
    transition: color 0.15s ease;
}

.nav-item-stacked .nav-icon[b-t0r9y98jhq] {
    font-size: 1.3rem;
    margin-bottom: 3px;
    transition: transform 0.15s ease;
}

.nav-item-stacked .nav-text[b-t0r9y98jhq] {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1px;
}

.nav-item-stacked:hover[b-t0r9y98jhq] {
    color: #ffffff;
}

.nav-item-stacked:hover .nav-icon[b-t0r9y98jhq] {
    transform: translateY(-1px);
}

/* Active NavLink State (Blazor applies .active automatically) */
[b-t0r9y98jhq] .nav-item-stacked.active {
    color: #ea3838 !important;
}

[b-t0r9y98jhq] .nav-item-stacked.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 2px;
    background-color: #ea3838;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(234, 56, 56, 0.45);
}

/* Right Panel Section */
.header-right[b-t0r9y98jhq] {
    grid-column: 3;
}

/* Profile Card */
.profile-card[b-t0r9y98jhq] {
    background-color: #171a24;
    border: 1px solid #242836;
    border-radius: 8px;
    min-height: 44px;
    padding-left: 12px;
    padding-right: 16px;
}

.avatar-circle[b-t0r9y98jhq] {
    width: 30px;
    height: 30px;
    background-color: #262a39;
    border-radius: 50%;
    font-size: 0.95rem;
}

.user-name[b-t0r9y98jhq] {
    font-size: 0.85rem;
    letter-spacing: -0.1px;
}

.extra-small[b-t0r9y98jhq] {
    font-size: 0.7rem;
    color: #787f90 !important;
}

/* Square Action Buttons (Settings & Logout) */
.header-icon-btn[b-t0r9y98jhq] {
    width: 42px;
    height: 42px;
    background-color: #171a24;
    border: 1px solid #242836;
    border-radius: 8px;
    color: #cbd5e1;
    font-size: 1.1rem;
    transition: all 0.15s ease;
    padding: 0;
}

.header-icon-btn:hover[b-t0r9y98jhq] {
    background-color: #1f2330;
    border-color: #2e3446;
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-logout:hover[b-t0r9y98jhq] {
    border-color: rgba(234, 56, 56, 0.4);
}

/* ====================================================== */
/* Responsive Mobile & Tablet Layout (< 992px)            */
/* ====================================================== */
@media (max-width: 991.98px) {
    .app-header-card[b-t0r9y98jhq] {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 6px 10px !important;
        min-height: auto;
        gap: 4px 0;
    }

    /* Row 1: Left Brand & Right Profile/Actions */
    .header-left[b-t0r9y98jhq] {
        order: 1;
    }

    .header-right[b-t0r9y98jhq] {
        order: 2;
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    /* Row 2: Navigation Menu spanning full width */
    .header-center[b-t0r9y98jhq] {
        order: 3;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center !important;
        gap: 8px !important;
        border-top: 1px solid #1f2330;
        padding-top: 4px;
        margin-top: 2px;
    }

    .brand-svg-icon[b-t0r9y98jhq] {
        width: 30px !important;
        height: 30px !important;
    }

    .brand-name[b-t0r9y98jhq] {
        font-size: 1.05rem;
    }

    .brand-subtitle[b-t0r9y98jhq] {
        font-size: 0.48rem;
        letter-spacing: 0.8px;
    }

    .brand-divider[b-t0r9y98jhq] {
        display: none !important;
    }

    .nav-item-stacked[b-t0r9y98jhq] {
        width: auto;
        min-width: 64px;
        padding: 2px 4px;
    }

    .nav-item-stacked .nav-icon[b-t0r9y98jhq] {
        font-size: 1rem;
        margin-bottom: 1px;
    }

    .nav-text[b-t0r9y98jhq] {
        font-size: 0.7rem;
    }

    [b-t0r9y98jhq] .nav-item-stacked.active::after {
        width: 24px;
        bottom: -4px;
    }

    .profile-card[b-t0r9y98jhq] {
        min-height: 32px;
        padding: 2px 6px;
    }

    .avatar-circle[b-t0r9y98jhq] {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }

    .user-name[b-t0r9y98jhq] {
        font-size: 0.72rem;
    }

    .extra-small[b-t0r9y98jhq] {
        font-size: 0.6rem;
    }

    .header-icon-btn[b-t0r9y98jhq] {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}
/* /Pages/DailySchedule/Components/AvailabilitySlotComponent.razor.rz.scp.css */
.booking-container[b-f5tv6gvtt9] {
    position: relative;
}

.booking-overlay[b-f5tv6gvtt9] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05); /* light overlay to show clickable area */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 10;
    pointer-events: none;
}

.booking-container:hover .booking-overlay[b-f5tv6gvtt9] {
    opacity: 1;
    pointer-events: auto;
}

.booking-container.unavailable[b-f5tv6gvtt9] {
    cursor: not-allowed;
}
/* /Pages/DailySchedule/Components/EditWorkOrderStateDialog.razor.rz.scp.css */
/* Dark Theme Progress Tracker Styles */
.progress-tracker[b-shukkahv1c] {
    position: relative;
    width: 100%;
}

/* Progress Lines */
.progress-line-background[b-shukkahv1c] {
    position: absolute;
    left: 16px; /* Half of circle width (32px) */
    right: 16px; /* Half of circle width (32px) */
    height: 3px;
    background: rgba(255, 255, 255, 0.2); /* Light gray for dark theme */
    border-radius: 2px;
    z-index: 1;
}

.progress-line-active[b-shukkahv1c] {
    position: absolute;
    left: 16px; /* Half of circle width (32px) */
    height: 3px;
    background: linear-gradient(90deg, #28a745, #20c997); /* Green gradient */
    border-radius: 2px;
    z-index: 2;
    transition: width 0.3s ease;
}

.progress-line-background[b-shukkahv1c],
.progress-line-active[b-shukkahv1c] {
    top: 50%;
    transform: translateY(-50%);
}

/* Step Wrapper */
.step-wrapper[b-shukkahv1c] {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 8px;
    border-radius: 8px;
}

    .step-wrapper:hover:not(.step-disabled)[b-shukkahv1c] {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    .step-wrapper.step-disabled[b-shukkahv1c] {
        cursor: not-allowed;
        opacity: 0.5;
    }

/* Step Circles */
.step-circle[b-shukkahv1c] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Completed Step */
.step-completed[b-shukkahv1c] {
    background: #28a745; /* Green background */
    color: white;
    border-color: #28a745;
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.2);
}

.step-current[b-shukkahv1c] {
    background: #28a745; /* Green background */
    border: 3px solid #28a745 !important; /* Green border */
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.3);
    animation: pulse-b-shukkahv1c 2s infinite;
}

.step-current-dot[b-shukkahv1c] {
    width: 12px;
    height: 12px;
    background: #1e7e34; /* darker green */
    border-radius: 50%;
}

/* Upcoming Step */
.step-upcoming[b-shukkahv1c] {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
    border: 2px solid rgba(255, 255, 255, 0.3);
}

    .step-upcoming:hover[b-shukkahv1c] {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
    }

.step-upcoming-dot[b-shukkahv1c] {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

/* Step Labels */
.step-label[b-shukkahv1c] {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    min-width: 60px;
    transition: all 0.2s ease;
}

.label-completed[b-shukkahv1c] {
    color: #28a745; /* Green text */
    font-weight: 600;
}

.label-current[b-shukkahv1c] {
    color: #28a745 !important;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(40, 167, 69, 0.5);
}

.label-upcoming[b-shukkahv1c] {
    color: rgba(255, 255, 255, 0.7); /* Light gray text */
}

.step-wrapper:hover:not(.step-disabled) .label-upcoming[b-shukkahv1c] {
    color: rgba(255, 255, 255, 0.9);
}

/* Disabled State */
.step-disabled .step-circle[b-shukkahv1c] {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
}

.step-disabled .step-label[b-shukkahv1c] {
    color: rgba(255, 255, 255, 0.3) !important;
}

/* Pulse Animation for Current Step */
@keyframes pulse-b-shukkahv1c {
    0% {
        box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.3);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(40, 167, 69, 0.1);
    }

    100% {
        box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .step-circle[b-shukkahv1c] {
        width: 28px;
        height: 28px;
    }

    .step-label[b-shukkahv1c] {
        font-size: 11px;
        min-width: 50px;
    }

    .step-wrapper[b-shukkahv1c] {
        padding: 6px;
    }
}
/* /Pages/DailySchedule/Pages/Schedules.razor.rz.scp.css */
.blur-effect[b-sm8kink6dh] {
    filter: blur(4px); /* Adjust the blur intensity as needed */
    pointer-events: none; /* Prevent user interaction while loading */
    opacity: 0.5; /* Optional: lower opacity for a better effect */
}
/* /Pages/RepairTasks/Pages/RepairTaskList.razor.rz.scp.css */
.task-card[b-ejd1znpm27] {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

    .task-card:hover[b-ejd1znpm27] {
        transform: translateY(-2px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    }

.parts-preview[b-ejd1znpm27] {
    max-height: 120px;
    overflow-y: auto;
}

.btn-check:checked + .btn-outline-secondary[b-ejd1znpm27] {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: var(--bs-white);
}

@media (max-width: 768px) {
    .task-card[b-ejd1znpm27] {
        margin-bottom: 1rem;
    }
}
/* /Pages/Vehicles/Pages/VehicleMakesList.razor.rz.scp.css */
.vehicle-make-name[b-bojoxl7eai],
.table tbody td[b-bojoxl7eai] {
    color: #ffffff !important;
}
