/* HomesteadFraudReport.razor.css or append to wwwroot/css/app.css */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    color: #333;
}

.general-container {
    max-width: 75%;
    min-height: 650px !important;
    margin: auto;
    margin-top:-20px;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 30px;
    padding-top: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.GeneralHeader-Text1 {
    font-size: x-large !important;
    font-weight: bold !important;
    text-align: center;
}

.ComponentHeader-Text1 {
    font-size: larger !important;
    font-weight: bold !important;
    text-align: center;
}

.Header-Text1 {
    font-size: large !important;
    font-weight: bold !important;
}

.SmallRequiredMessage {
    font-size: 14px !important;
    /*font-weight: bold !important;*/
}

h4 {
    text-align: center;
    color: #444;
    margin-bottom: 30px;
}

p {
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Property Search Component Start*/

.PropertySearchMask {
    border: none !important;
    border-bottom: 1px solid #ccc !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    box-shadow: none !important;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    transition: border-color 0.5s ease-in-out;
    font-size: 1rem;
    color: #333;
}

.PropertySearchMask:focus-within {
    border-bottom: 1px solid #3f51b5 !important; /* dark blue */
    outline: none !important;
    box-shadow: none !important;
}

.searchcomponet-row {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* spacing between the textbox and button */
    width: 100%;
}

/* Optional: make input take remaining space */
.searchcomponet-row .PropertySearchMask {
    flex-grow: 1;
}

/* Optional: unify height and alignment of button */
.search-btn {
    padding: 0.4rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white !important;
    border-color: white !important;
    transition: transform 0.2s ease-in-out;
}

.search-btn svg {
    color: #003366; /* dark blue icon */
    transition: transform 0.2s ease-in-out, color 0.2s;
}

/* Scale the icon slightly on hover */
.search-btn:hover svg {
    transform: scale(1.2);
    color: #001a33; /* optionally darken the icon on hover */
}

/* Property Search by Folio End*/


.warning {
    font-weight: bold;
    color: #c00;
}

.form-section {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 20px;
    margin-top: 20px;
    background-color: #f9f9f9;
    width: 85% !important;
    min-height: 550px !important;
}

.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

    .form-row label {
        flex: 0 0 200px;
        margin-right: 10px;
        text-align: right;
    }

    .form-row input[type="text"],
    .form-row select {
        flex: 1;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .form-row.checkbox-group {
        display: block;
        margin-top: 20px;
    }

.checkbox-group label {
    display: flex;
    align-items: center;
    text-align: left;
    margin-bottom: 8px;
    flex: unset;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}

.textareaold {
    width: 100%;
    height: 120px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
    margin-top: 10px;
}

.char-count {
    text-align: right;
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

.contact-options {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 20px;
}

    .contact-options label {
        margin-right: 15px;
    }

    .contact-options input[type="radio"] {
        margin-right: 5px;
    }

.required-field {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #c00;
}

.submit-button-container {
    text-align: center;
    margin-top: 25px;
}

.submit-button {
    padding: 10px 30px;
    background-color: #e0e0e0;
    border: 1px solid #aaa;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.submit-button:hover {
    background-color: #d0d0d0;
}

.btn-TelerikCustom {
    background-color: #21618C !important;
    color: white !important;
    width: 160px !important;
    border-color: #1861ac !important;
    font-size: medium !important;
    border-radius: 5px; /* Optional: rounded corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3), 0px 1px 3px rgba(0, 0, 0, 0.08); /* Creates depth */
    transition: all 0.2s ease-in-out; /* Smooth transition for hover */
}

.btn-TelerikCustomLarge {
    background-color: #21618C !important;
    color: white !important;
    width: 250px !important;
    border-color: #1861ac !important;
    font-size: large !important;
    border-radius: 5px; /* Optional: rounded corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3), 0px 1px 3px rgba(0, 0, 0, 0.08); /* Creates depth */
    transition: all 0.2s ease-in-out; /* Smooth transition for hover */
}

/*Grid CSS start*/

.rounded-grid {
    border-radius: 5px;  
    overflow: hidden;  
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);  
    padding-left: 0px !important;
    padding-right: 0px !important;
    display: inline-block !important;
    width:85% !important;
    text-align:center !important;
}

    .rounded-grid .k-grid {
        width: auto !important;  
        table-layout: auto !important;

     }


.Grid-HeaderPropertySearch {
    font-weight: bold !important;
    border-inline: none !important;
}
/* Reduce overall row height */
.k-grid .k-table-row {
    height: 28px !important; /* adjust as needed */
}

/* Reduce cell padding */
.k-grid .k-table-td,
.k-grid .k-table-th {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
    font-size: 0.85rem; /* optional: smaller font also reduces row height */
}

.k-grid .k-checkbox {
    margin: 0 !important;
    transform: scale(0.9); /* shrink checkbox slightly if needed */
}

/* Reduce height of the filter row */
.k-grid .k-filter-row th {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    height: 32px !important; /* adjust as needed */
}

/* Reduce height of filter row inputs */
.k-grid .k-filter-row input,
.k-grid .k-filter-row .k-dropdown {
    height: 28px !important; /* make filter inputs smaller */
    font-size: 0.85rem; /* smaller text if needed */
    padding: 2px 6px;
}

/* Reduce footer row height */
.k-grid .k-grid-footer {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    min-height: 32px !important; /* adjust */
    font-size: 0.9rem;
}


/*Grid CSS End*/
Input-Textbox {
    height: 30px !important;
}


/*Stepper Start*/
.k-stepper .k-step-current .k-step-indicator {
    background-color: #E39E39 !important;
    border-color: #ffc107 !important;
}

.k-stepper .k-step-done .k-step-indicator {
    background-color: #198754 !important;
    border-color: #198754 !important;
}

.k-progressbar .k-selected {
    background-color: #198754 !important;
}

.receipt-step.k-step .k-step-indicator {
    background-color: #198754 !important;
    border-color: #198754 !important;
    color: white !important; /* make the check/icon readable */
}

/*Stepper End*/

.Reasons-InformationLabel {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #8C001A !important;
}

.Input-InformationLabel {
    font-size: 14px !important;
    font-weight: bold !important;
}

.InformationLabelLarger {
    font-size: 18px !important;
    font-weight: bold !important;
}

.InformationLabel {
    font-size: 16px !important;
    font-weight: bold !important;
}

.InformationLabelSmall {
    font-size: 12px !important;
    font-weight: bold !important;
}


/* Makes individual validation messages red */
.validation-message {
    color: red;
    font-size: 0.9rem; /* optional */
}

/* Makes the summary messages red */
.validation-summary ul {
    color: red;
    list-style-type: none; /* optional to remove bullets */
    padding-left: 0;
}

.PropertyDetailTextContent{
   /* margin-left: 1px !important;*/
}


/*.demo-notification .k-notification-container {
    position: fixed !important;
    transform: translate(-50%, 500%) !important;
}*/

/*.demo-notification .k-notification {
    position: relative !important;
    background-color: #b02a37 !important;
    color: white !important;
    width: 450px;
}*/

.custom-notification {
    display: flex;
    align-items: center; /* vertical center */
    justify-content: center; /* horizontal center */
    color: #58151c !important;
    background-color: #f8d7da !important;
    border-color: #58151c !important;
    padding: 12px 16px;
    border-radius: 6px;
    margin-top: 8px;
    width: 100%;
}


/* Upload button normal state */
.k-button-solid-primary {
    background-color: #21618C !important;
    color: white !important;
}
/* Hover state */
/*#myUpload .k-upload-selected:hover {
        background-color: #0056b3 !important;
        border-color: #0056b3 !important;
    }*/

/* Disabled state */
/*#myUpload .k-upload-selected:disabled {
        background-color: #cccccc !important;
        border-color: #cccccc !important;
        color: #666 !important;
    }*/

/*Loader*/
.loader-container {
    text-align: center;
    width: 150px;
    display: inline-table;
    padding-top: 10px;
}

/* Full-page dark overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4); /* dim background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000; /* make sure it's on top */
}

/* Spinner container */
.overlay-spinner {
    background: white; /* optional: white card behind spinner */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-TelerikEdit {
    /* background-color: lightgray !important;
    width: 25px !important;
    height: 25px !important;
    border-color: black !important;
    font-size: large !important;*/
    background-color: #cfe2ff !important;
    color: white;
    padding: 6px 8px !important;
    border-radius: 5px;
    float: right !important;
    height: 25px !important;
    width: 25px !important;
}

.card-body-review {
    /*min-height: 50px !important;*/
    padding-left: 4px !important;
    padding-right: 4px !important;
    padding-top: 10px !important;
    height: auto;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.), 0 1px 3px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s ease-in-out;
}





