/* /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 */

        body[b-y5bfzo3kqe], html[b-y5bfzo3kqe] {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow: hidden; /* Prevents scrolling on the welcome screen */
        }
        /* 2. THE FIX: Aggressive Link Reset */
        /* This ensures the underline NEVER appears and the color stays white */
        a.main-wrapper[b-y5bfzo3kqe], 
        a.main-wrapper:link[b-y5bfzo3kqe], 
        a.main-wrapper:visited[b-y5bfzo3kqe], 
        a.main-wrapper:hover[b-y5bfzo3kqe], 
        a.main-wrapper:active[b-y5bfzo3kqe] {
            text-decoration: none !important; 
            color: white !important;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
        }
        /* 2. The Background Image with Fade/Overlay */
        .hero-bg[b-y5bfzo3kqe] {
            background-color: aliceblue;
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* 3. The Text Box with Animation */
        .fade-in-box[b-y5bfzo3kqe] {
            background: rgba(0, 34, 255, 0.721); /* Semi-transparent glass effect */
                    /* Modern blur effect */
            padding: 3rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgb(231, 98, 98);
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            
            /* Animation properties */
            opacity: 0;
            animation: fadeInTransition-b-y5bfzo3kqe 0.5s ease-in forwards;
        }
        .fade-in-box:hover[b-y5bfzo3kqe] {
            background: rgba(255, 255, 255, 0.359);
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.4);
        }

        h1[b-y5bfzo3kqe] {
            font-size: 3rem;
            margin-top: 250px;
            margin-bottom: 250px;
            margin-left: 400px;
            margin-right: 400px;
        }

        p[b-y5bfzo3kqe] {
            font-size: 1.2rem;
            font-weight: 300;
        }

        /* 4. The Keyframe for Fading In */
        @keyframes fadeInTransition-b-y5bfzo3kqe {
            from {
                opacity: 0;
                transform: translateY(20px); /* Subtle slide-up effect */
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
/* /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, #f5f7fa 0%, #c3cfe2 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;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-body[b-2aspz9r3p0] {
        padding: 1.5rem;
    }
    
    .btn-lg[b-2aspz9r3p0] {
        width: 100%;
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
}
/* /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;
}
