/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-c2hftgckaz] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-c2hftgckaz] {
    flex: 1;
}



.top-row[b-c2hftgckaz] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-c2hftgckaz]  a, .top-row[b-c2hftgckaz]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-c2hftgckaz]  a:hover, .top-row[b-c2hftgckaz]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-c2hftgckaz]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-c2hftgckaz] {
        justify-content: space-between;
    }

    .top-row[b-c2hftgckaz]  a, .top-row[b-c2hftgckaz]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-c2hftgckaz] {
        flex-direction: row;
    }

    .sidebar[b-c2hftgckaz] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-c2hftgckaz] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-c2hftgckaz]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-c2hftgckaz], article[b-c2hftgckaz] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Pages/Dashboard.razor.rz.scp.css */

   /* Container & Theme */
.dashboard-container[b-y5bfzo3kqe] {
    background-color: #ffffff; /* Deep Navy */
    color: #f1f5f9;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    padding: 2rem;
    min-height: 100vh;
}

/* Nav Styles */
.top-nav[b-y5bfzo3kqe] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.logo-area h1[b-y5bfzo3kqe] {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
}

.blue-text[b-y5bfzo3kqe] { color: #38bdf8; }
.logo-area small[b-y5bfzo3kqe] { font-size: 0.7rem; color: #64748b; display: block; }

.status-indicator[b-y5bfzo3kqe] {
    color: #38bdf8;
    font-size: 0.8rem;
    font-weight: bold;
    /*margin-right: 1rem;*/
    animation: pulse-b-y5bfzo3kqe 2s infinite;
}

/* KPI Cards */
.kpi-grid[b-y5bfzo3kqe] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card[b-y5bfzo3kqe] {
    background: rgba(30, 41, 59, 0.7);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.blue-border[b-y5bfzo3kqe] { border-left: 5px solid #38bdf8; }
.yellow-border[b-y5bfzo3kqe] { border-left: 5px solid #ffd700; }

.card label[b-y5bfzo3kqe] { font-size: 0.7rem; text-transform: uppercase; color: #94a3b8; }
.card .value[b-y5bfzo3kqe] { font-size: 2.2rem; font-weight: 800; margin: 0.5rem 0; }
.card .value span[b-y5bfzo3kqe] { font-size: 1rem; color: #475569; margin-left: 4px; }
.yellow-text[b-y5bfzo3kqe] { color: #ffd700; }

/* Main Layout */
.main-content[b-y5bfzo3kqe] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.map-view[b-y5bfzo3kqe] {
    background: #1e293b;
    border-radius: 1rem;
    height: 400px;
    position: relative;
    overflow: hidden;
    border: 1px solid #334155;
}

.map-placeholder[b-y5bfzo3kqe] {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(56,189,248,0.05) 0%, rgba(15,23,42,1) 100%);
}

.pulse-point[b-y5bfzo3kqe] {
    width: 12px;
    height: 12px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 15px #ffd700;
    animation: mapPulse-b-y5bfzo3kqe 1.5s infinite;
}

/* Sidebar & Buttons */
.inventory-sidebar[b-y5bfzo3kqe] {
    background: rgba(15, 23, 42, 0.8);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(56, 189, 248, 0.1);
}

.product-item[b-y5bfzo3kqe] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #334155;
}

.btn-blue[b-y5bfzo3kqe] { background: #38bdf8; color: #000; border: none; font-weight: bold; padding: 0.5rem 1rem; border-radius: 4px; cursor: pointer; }
.btn-yellow[b-y5bfzo3kqe] { background: #ffd700; color: #000; border: none; font-weight: bold; padding: 0.5rem 1rem; border-radius: 4px; cursor: pointer; }

/* Animations */
@keyframes mapPulse-b-y5bfzo3kqe {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

@keyframes pulse-b-y5bfzo3kqe {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
        
      
/* /Pages/Login.razor.rz.scp.css */
/* Container for the entire viewport */
.login-page-wrapper[b-od8dycea8g] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 100%, #ffffff 100%);
    padding: 1rem;
}

/* The Login Card */
.login-card[b-od8dycea8g] {
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Header Styling */
.login-header[b-od8dycea8g] {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h3[b-od8dycea8g] {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

/* Form Elements */
.form-floating[b-od8dycea8g] {
    margin-bottom: 1.25rem;
}

.form-control[b-od8dycea8g] {
    border-radius: 8px;
    border: 1px solid #ced4da;
    transition: all 0.2s ease-in-out;
}

.form-control:focus[b-od8dycea8g] {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
}

/* Custom Button */
.btn-primary-custom[b-od8dycea8g] {
    width: 100%;
    padding: 0.8rem;
    background-color: #0d6efd;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.1s, background-color 0.2s;
}

.btn-primary-custom:hover[b-od8dycea8g] {
    background-color: #0b5ed7;
    transform: translateY(-1px);
}

.btn-primary-custom:active[b-od8dycea8g] {
    transform: translateY(0);
}

/* Validation Messages (Blazor Specific) */
.validation-message[b-od8dycea8g] {
    font-size: 0.85rem;
    color: #dc3545;
    margin-top: 0.25rem;
}

/* Utility Links */
.footer-links[b-od8dycea8g] {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
}

.footer-links a[b-od8dycea8g] {
    color: #0d6efd;
    text-decoration: none;
}

.footer-links a:hover[b-od8dycea8g] {
    text-decoration: underline;
}
/* /Pages/LoginINV.razor.rz.scp.css */
/* Container for the entire viewport */
.login-page-wrapper[b-mtphnyh6of] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 1rem;
}

/* The Login Card */
.login-card[b-mtphnyh6of] {
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Header Styling */
.login-header[b-mtphnyh6of] {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h3[b-mtphnyh6of] {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

/* Form Elements */
.form-floating[b-mtphnyh6of] {
    margin-bottom: 1.25rem;
}

.form-control[b-mtphnyh6of] {
    border-radius: 8px;
    border: 1px solid #ced4da;
    transition: all 0.2s ease-in-out;
}

.form-control:focus[b-mtphnyh6of] {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
}

/* Custom Button */
.btn-primary-custom[b-mtphnyh6of] {
    width: 100%;
    padding: 0.8rem;
    background-color: #0d6efd;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.1s, background-color 0.2s;
}

.btn-primary-custom:hover[b-mtphnyh6of] {
    background-color: #0b5ed7;
    transform: translateY(-1px);
}

.btn-primary-custom:active[b-mtphnyh6of] {
    transform: translateY(0);
}

/* Validation Messages (Blazor Specific) */
.validation-message[b-mtphnyh6of] {
    font-size: 0.85rem;
    color: #dc3545;
    margin-top: 0.25rem;
}

/* Utility Links */
.footer-links[b-mtphnyh6of] {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
}

.footer-links a[b-mtphnyh6of] {
    color: #0d6efd;
    text-decoration: none;
}

.footer-links a:hover[b-mtphnyh6of] {
    text-decoration: underline;
}
/* /Pages/Orderservices.razor.rz.scp.css */
/* Container and Background */
.container[b-2aspz9r3p0] {
    max-width: 900px;
    animation: fadeIn-b-2aspz9r3p0 0.5s ease-in-out;
}

@keyframes fadeIn-b-2aspz9r3p0 {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Page Headers */
h1[b-2aspz9r3p0] {
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

p.text-center[b-2aspz9r3p0] {
    color: #6c757d;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* The Service Request Card */
.card[b-2aspz9r3p0] {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    overflow: hidden;
}

.card-body[b-2aspz9r3p0] {
    padding: 3rem;
}

/* Form Labels and Inputs */
.form-label[b-2aspz9r3p0] {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control[b-2aspz9r3p0], .form-select[b-2aspz9r3p0] {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease-in-out;
}

.form-control:focus[b-2aspz9r3p0], .form-select:focus[b-2aspz9r3p0] {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    outline: none;
}

/* Textarea specific */
textarea.form-control[b-2aspz9r3p0] {
    resize: none;
}

/* Checkbox Styling */
.form-check[b-2aspz9r3p0] {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.form-check-input[b-2aspz9r3p0] {
    cursor: pointer;
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.25em;
}

.form-check-label[b-2aspz9r3p0] {
    cursor: pointer;
    padding-left: 0.5rem;
    color: #4a4a4a;
}

/* Button Styling */
.btn-lg[b-2aspz9r3p0] {
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-primary[b-2aspz9r3p0] {
    background-color: #0d6efd;
    border: none;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.btn-primary:hover[b-2aspz9r3p0] {
    background-color: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.3);
}

.btn-outline-secondary[b-2aspz9r3p0] {
    border: 2px solid #dee2e6;
    color: #6c757d;
}

.btn-outline-secondary:hover[b-2aspz9r3p0] {
    background-color: #f8f9fa;
    color: #343a40;
    border-color: #ced4da;
}
#map[b-2aspz9r3p0]{
    height:400px
}
/* Responsive adjustments */
@media (max-width: 768px) {
    #map[b-2aspz9r3p0] {
    height: 250px;
  }
}
.mapboxgl-marker[b-2aspz9r3p0] {
    position: absolute;
    will-change: transform;
}
/* /Pages/Register.razor.rz.scp.css */
/* Container for the entire viewport */
.register-page-wrapper[b-wiir9zvnps] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem 1rem;
}

/* The Register Card - slightly wider than Login */
.register-card[b-wiir9zvnps] {
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeIn-b-wiir9zvnps 0.4s ease-out;
}

@keyframes fadeIn-b-wiir9zvnps {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header Styling */
.register-header[b-wiir9zvnps] {
    text-align: center;
    margin-bottom: 2rem;
}

.register-header h3[b-wiir9zvnps] {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

/* Form Elements */
.form-floating[b-wiir9zvnps] {
    margin-bottom: 1rem;
}

.form-control[b-wiir9zvnps] {
    border-radius: 8px;
    border: 1px solid #ced4da;
    transition: all 0.2s ease-in-out;
}

.form-control:focus[b-wiir9zvnps] {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
}

/* Checkbox Section */
.form-check[b-wiir9zvnps] {
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: #4a4a4a;
}

.form-check-input:checked[b-wiir9zvnps] {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Custom Button */
.btn-primary-custom[b-wiir9zvnps] {
    width: 100%;
    padding: 0.8rem;
    background-color: #0d6efd;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.1s, background-color 0.2s;
}

.btn-primary-custom:hover[b-wiir9zvnps] {
    background-color: #0b5ed7;
    transform: translateY(-1px);
}

/* Validation Messages */
.validation-message[b-wiir9zvnps] {
    font-size: 0.8rem;
    color: #dc3545;
    margin-top: 0.2rem;
}

.footer-links[b-wiir9zvnps] {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
}

.footer-links a[b-wiir9zvnps] {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}
/* /Pages/ServiceHistory.razor.rz.scp.css */
.customer-summary-ribbon[b-aflxgak7ey] {
    display: flex;
    gap: 2rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.summary-item[b-aflxgak7ey] {
    display: flex;
    flex-direction: column;
}

.summary-label[b-aflxgak7ey] {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6c757d;
    font-weight: 700;
}

.summary-value[b-aflxgak7ey] {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0d6efd;
}

/* History List specific to the Customer */
.order-id[b-aflxgak7ey] {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    color: #adb5bd;
}
