/* /Pages/Dashboard.razor.rz.scp.css */
/* ===== Reset & Base ===== */
*[b-71hix21v7w] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html[b-71hix21v7w], body[b-71hix21v7w] {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    height: 100%;
    width: 100%;
}

/* ===== Container ===== */
.container[b-71hix21v7w] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 100%;
    padding: 1rem 2rem;
    box-sizing: border-box;
}

    /* ===== Header ===== */
    .container h3[b-71hix21v7w] {
        margin: 2rem 0 1rem;
        font-size: 1.75rem;
        font-weight: bold;
        color: #100c08;
    }

    .container .sentense h3[b-71hix21v7w] {
        margin-left: 3rem;
    }

    /* ===== Button ===== */
    .container button[b-71hix21v7w] {
        float: right;
        margin-right: 3rem;
        border: 3px solid dimgrey;
        background: transparent;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .container button:hover[b-71hix21v7w] {
            background: dimgrey;
            color: white;
        }

        .container button a[b-71hix21v7w] {
            text-decoration: none;
            color: inherit;
        }

/* ===== Grid & Cards ===== */
.container-new[b-71hix21v7w] {
    margin-top: 3rem;
}

.row[b-71hix21v7w] {
    margin: 1rem 2rem;
}

.grid[b-71hix21v7w] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.block[b-71hix21v7w] {
    border-radius: 8px;
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 2px 15px -3px rgba(0,0,0,0.07), 0 10px 20px -2px rgba(0,0,0,0.04);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .block:hover[b-71hix21v7w] {
        transform: translateY(-4px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    .block h2[b-71hix21v7w] {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .block h3[b-71hix21v7w] {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 0.25rem;
    }

    .block h5[b-71hix21v7w] {
        font-size: 1.4rem;
        font-weight: 200;
        margin-top: 0.25rem;
    }

.card-link[b-71hix21v7w] {
    color: forestgreen;
    text-decoration: none;
}

    .card-link:hover[b-71hix21v7w] {
        color: #0d872c;
    }

/* ===== Overlay ===== */
.overlay[b-71hix21v7w],
.overlay-dark[b-71hix21v7w] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
}

    .overlay.visible[b-71hix21v7w],
    .overlay-dark.visible[b-71hix21v7w] {
        display: flex;
    }

/* ===== Status Messages ===== */
.status-message[b-71hix21v7w] {
    border: 2px solid #197f2c;
    border-radius: 4px;
    margin-top: 40px;
    text-align: center;
    display: inline-block;
    padding: 0.5rem 1rem;
}

    .status-message span[b-71hix21v7w] {
        display: inline-block;
        vertical-align: middle;
        padding: 10px;
    }

    .status-message .status[b-71hix21v7w] {
        background-color: #197f2c;
        color: white;
        border-radius: 2px;
    }

    .status-message .filename[b-71hix21v7w] {
        color: #197f2c;
    }

    /* Error message */
    .status-message.error[b-71hix21v7w] {
        border-color: red;
    }

        .status-message.error .status[b-71hix21v7w] {
            background-color: red;
            color: white;
        }

        .status-message.error .filename[b-71hix21v7w] {
            color: red;
        }

    /* Processing message */
    .status-message.processing[b-71hix21v7w] {
        border-color: rgb(190,121,24);
    }

        .status-message.processing .status[b-71hix21v7w] {
            background-color: rgb(190,121,24);
            color: white;
        }

        .status-message.processing .filename[b-71hix21v7w] {
            color: rgb(190,121,24);
        }

.header-bar[b-71hix21v7w] {
    display: flex;
    justify-content: space-between; /* pushes h3 left, button right */
    align-items: center;
    margin-top: 2rem;
    margin-bottom: -2rem;
}

.my-files-btn[b-71hix21v7w] {
    border: 3px solid dimgrey;
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .my-files-btn:hover[b-71hix21v7w] {
        background: dimgrey;
        color: white;
    }

    .my-files-btn a[b-71hix21v7w] {
        text-decoration: none;
        color: inherit;
    }


/* ===== Responsive Breakpoints ===== */
@media (max-width: 1024px) {
    .grid[b-71hix21v7w] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid[b-71hix21v7w] {
        grid-template-columns: 1fr;
    }

    .container h3[b-71hix21v7w] {
        font-size: 1.5rem;
        text-align: center;
        margin: 1rem 0;
    }

    .container button[b-71hix21v7w] {
        float: none;
        display: block;
        margin: 1rem auto;
    }

    .status-message[b-71hix21v7w] {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .container h3[b-71hix21v7w] {
        font-size: 1.25rem;
    }

    .block h2[b-71hix21v7w] {
        font-size: 1.5rem;
    }

    .block h3[b-71hix21v7w] {
        font-size: 1.25rem;
    }

    .block h5[b-71hix21v7w] {
        font-size: 1rem;
    }
}


.status-inline[b-71hix21v7w] {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.overlay[b-71hix21v7w],
.overlay-dark[b-71hix21v7w] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 999;
    display: none;
    /* no centering here */
}

    .overlay.visible[b-71hix21v7w],
    .overlay-dark.visible[b-71hix21v7w] {
        display: block;
    }
.grid-margin-top[b-71hix21v7w] {
    margin-top: 30px;
}
/* /Pages/ErrorFiles.razor.rz.scp.css */
/* ==================== PAGE CONTAINER STRUCTURE ==================== */

.page-container[b-hyxiflthhd] {
    background-color: #f6f6f6;
    min-height: 100vh;
    padding: 2px 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.content-wrap[b-hyxiflthhd] {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    overflow: visible;
}

/* ==================== BREADCRUMB ==================== */

.aligned-breadcrumb[b-hyxiflthhd] {
    margin: 0 0 6px 0;
    padding: 10px 0;
    list-style: none;
    font-size: 15px;
    padding-left: 45px;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

    .aligned-breadcrumb li[b-hyxiflthhd] {
        display: inline;
        padding-right: 5px;
    }

        .aligned-breadcrumb li a[b-hyxiflthhd] {
            text-decoration: none;
            color: #D32F2F;
        }

        .aligned-breadcrumb li + li[b-hyxiflthhd]::before {
            content: ">";
            margin: 0 5px;
        }

/* ==================== HEADER BAR ==================== */

.header-bar[b-hyxiflthhd] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 15px;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    min-width: 0;
}

.header-left[b-hyxiflthhd] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
    overflow: hidden;
}

.header-text[b-hyxiflthhd] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
}

.header-icon[b-hyxiflthhd] {
    font-size: 36px;
    color: #002D62;
    margin-right: 10px;
    line-height: 1;
    font-weight: 300;
    flex-shrink: 0;
}

.header-title[b-hyxiflthhd] {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-subtitle[b-hyxiflthhd] {
    color: slategrey;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==================== BUTTONS ==================== */

.add-btn[b-hyxiflthhd],
.add-upa-btn[b-hyxiflthhd],
.add-file-btn[b-hyxiflthhd] {
    background-color: #1e7c1f;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

    .add-btn:hover[b-hyxiflthhd],
    .add-upa-btn:hover[b-hyxiflthhd],
    .add-file-btn:hover[b-hyxiflthhd] {
        background-color: #176b18;
    }

/* ==================== GRID CONTAINERS ==================== */

.main-grid[b-hyxiflthhd],
.upa-grid-container[b-hyxiflthhd],
.file-grid-container[b-hyxiflthhd] {
    width: 100%;
    border-radius: 10px;
    padding: 10px 0;
    box-sizing: border-box;
    margin-top: 20px;
    overflow: visible;
}

    .main-grid .k-grid[b-hyxiflthhd],
    .upa-grid-container .k-grid[b-hyxiflthhd],
    .file-grid-container .k-grid[b-hyxiflthhd] {
        width: 100% !important;
        border-radius: 10px;
        box-sizing: border-box;
        overflow: visible !important;
    }

.k-grid-container[b-hyxiflthhd] {
    overflow: visible !important;
}

.k-grid-header[b-hyxiflthhd],
.k-grid-header-wrap[b-hyxiflthhd] {
    overflow: visible !important;
}

.k-grid-content[b-hyxiflthhd],
.k-grid-content-locked[b-hyxiflthhd] {
    overflow-x: auto !important;
    max-width: 100%;
}

/* ==================== PAGINATION CONTROLS ==================== */

.pagination-controls[b-hyxiflthhd] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    width: 100%;
}

    .pagination-controls select[b-hyxiflthhd] {
        border: 1px solid dimgrey;
        border-radius: 5px;
        font-size: 14px;
        padding: 6px 8px;
        min-width: 60px;
    }

/* ==================== FORM & INPUT ELEMENTS ==================== */

.dropdown[b-hyxiflthhd] {
    width: 90px;
    padding: 5px;
}

.input-container[b-hyxiflthhd] {
    position: relative;
    display: inline-block;
}

input:focus[b-hyxiflthhd] {
    border-color: red;
    outline: none;
}

.tooltip[b-hyxiflthhd] {
    position: absolute;
    text-decoration-color: red;
    font-size: 14px;
    z-index: 1;
}

.input-container:hover .tooltip[b-hyxiflthhd] {
    display: block;
}

.input-container:hover[b-hyxiflthhd]:before {
    content: "80 characters limit reached";
    position: absolute;
    color: red;
    top: -15px;
    left: 10px;
}

input:valid ~ .tooltip[b-hyxiflthhd] {
    display: none;
}

/* ==================== CHECKBOX & VALIDATION ==================== */

.k-checkbox:checked[b-hyxiflthhd] {
    border-color: #63686D !important;
    background-color: forestgreen !important;
}

/* ==================== PAYMENT & DISPLAY STYLES ==================== */

.total-amount[b-hyxiflthhd] {
    margin-right: 30px;
    color: darkgreen;
    font-size: 16px;
    font-weight: 700;
}

.paymentSum[b-hyxiflthhd] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-amount[b-hyxiflthhd] {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.spa[b-hyxiflthhd] {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 14px;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* ==================== DESKTOP (1201px+) ==================== */

@media (min-width: 1201px) {
    .content-wrap[b-hyxiflthhd] {
        padding: 0 30px;
    }
}

/* ==================== TABLET (1200px down) ==================== */

@media (max-width: 1200px) {
    .content-wrap[b-hyxiflthhd] {
        padding: 0 20px;
    }

    .header-bar[b-hyxiflthhd] {
        gap: 10px;
    }

    .header-icon[b-hyxiflthhd] {
        font-size: 32px;
    }

    .header-title[b-hyxiflthhd] {
        font-size: 20px;
    }

    .header-subtitle[b-hyxiflthhd] {
        font-size: 14px;
    }

    .main-grid .k-grid[b-hyxiflthhd],
    .upa-grid-container .k-grid[b-hyxiflthhd],
    .file-grid-container .k-grid[b-hyxiflthhd] {
        font-size: 13px;
    }

    .k-column-title[b-hyxiflthhd] {
        font-size: 12px;
    }

    .table tr td[b-hyxiflthhd] {
        font-size: 13px;
        padding: 8px 10px;
    }
}

/* ==================== MOBILE (1024px down) ==================== */

@media (max-width: 1024px) {
    .content-wrap[b-hyxiflthhd] {
        padding: 0 15px;
    }

    .header-bar[b-hyxiflthhd] {
        gap: 8px;
    }

    .header-left[b-hyxiflthhd] {
        min-width: 150px;
    }

    .header-icon[b-hyxiflthhd] {
        font-size: 28px;
        margin-right: 8px;
    }

    .header-title[b-hyxiflthhd] {
        font-size: 18px;
    }

    .header-subtitle[b-hyxiflthhd] {
        font-size: 13px;
    }

    .main-grid .k-grid[b-hyxiflthhd],
    .upa-grid-container .k-grid[b-hyxiflthhd],
    .file-grid-container .k-grid[b-hyxiflthhd] {
        font-size: 12px;
    }

    .k-column-title[b-hyxiflthhd] {
        font-size: 11px;
    }

    .table tr td[b-hyxiflthhd] {
        font-size: 12px;
        padding: 8px 8px;
    }

    .table tr th[b-hyxiflthhd] {
        font-size: 11px;
    }
}

/* ==================== TABLET (768px down) ==================== */

@media (max-width: 768px) {
    .page-container[b-hyxiflthhd] {
        padding: 0;
    }

    .content-wrap[b-hyxiflthhd] {
        padding: 0 12px;
    }

    .aligned-breadcrumb[b-hyxiflthhd] {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .header-bar[b-hyxiflthhd] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 8px;
        margin-bottom: 12px;
        width: 100%;
    }

    .header-left[b-hyxiflthhd] {
        width: 100%;
        min-width: auto;
        gap: 8px;
    }

    .header-text[b-hyxiflthhd] {
        min-width: 0;
    }

    .header-icon[b-hyxiflthhd] {
        font-size: 24px;
        margin-right: 6px;
        flex-shrink: 0;
    }

    .header-title[b-hyxiflthhd] {
        font-size: 16px;
    }

    .header-subtitle[b-hyxiflthhd] {
        font-size: 12px;
    }

    .add-btn[b-hyxiflthhd],
    .add-upa-btn[b-hyxiflthhd],
    .add-file-btn[b-hyxiflthhd] {
        width: 100%;
        padding: 10px 12px;
        font-size: 12px;
    }

    .main-grid[b-hyxiflthhd] {
        margin-top: 15px;
    }

        .main-grid .k-grid[b-hyxiflthhd],
        .upa-grid-container .k-grid[b-hyxiflthhd],
        .file-grid-container .k-grid[b-hyxiflthhd] {
            font-size: 11px;
            height: auto !important;
            width: 100% !important;
        }

    .k-column-title[b-hyxiflthhd] {
        font-size: 10px;
    }

    .table tr td[b-hyxiflthhd] {
        font-size: 11px;
        padding: 6px 6px;
    }

    .table tr th[b-hyxiflthhd] {
        font-size: 10px;
        padding: 6px 6px;
    }

    .pagination-controls[b-hyxiflthhd] {
        gap: 6px;
        margin-top: 12px;
    }

        .pagination-controls select[b-hyxiflthhd] {
            font-size: 11px;
            padding: 5px 6px;
            min-width: 50px;
        }

    .total-amount[b-hyxiflthhd] {
        margin-right: 15px;
        font-size: 14px;
    }

    .dropdown[b-hyxiflthhd] {
        width: 70px;
    }
}

/* ==================== SMALL MOBILE (480px down) ==================== */

@media (max-width: 480px) {
    .content-wrap[b-hyxiflthhd] {
        padding: 0 8px;
    }

    .aligned-breadcrumb[b-hyxiflthhd] {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .header-bar[b-hyxiflthhd] {
        margin-top: 5px;
        margin-bottom: 8px;
        gap: 6px;
    }

    .header-left[b-hyxiflthhd] {
        gap: 6px;
    }

    .header-icon[b-hyxiflthhd] {
        font-size: 20px;
        margin-right: 4px;
    }

    .header-title[b-hyxiflthhd] {
        font-size: 14px;
    }

    .header-subtitle[b-hyxiflthhd] {
        font-size: 11px;
    }

    .add-btn[b-hyxiflthhd],
    .add-upa-btn[b-hyxiflthhd],
    .add-file-btn[b-hyxiflthhd] {
        padding: 6px 8px;
        font-size: 11px;
    }

    .main-grid .k-grid[b-hyxiflthhd],
    .upa-grid-container .k-grid[b-hyxiflthhd],
    .file-grid-container .k-grid[b-hyxiflthhd] {
        font-size: 10px;
    }

    .k-column-title[b-hyxiflthhd] {
        font-size: 9px;
        padding: 4px 2px;
    }

    .table tr td[b-hyxiflthhd] {
        font-size: 10px;
        padding: 4px 4px;
    }

    .table tr th[b-hyxiflthhd] {
        font-size: 9px;
        padding: 4px 4px;
    }

    .pagination-controls[b-hyxiflthhd] {
        gap: 4px;
        margin-top: 10px;
    }

        .pagination-controls select[b-hyxiflthhd] {
            font-size: 10px;
            padding: 4px 4px;
            min-width: 45px;
        }

    .total-amount[b-hyxiflthhd] {
        margin-right: 10px;
        font-size: 12px;
    }

    .dropdown[b-hyxiflthhd] {
        width: 60px;
    }

    .input-container:hover[b-hyxiflthhd]:before {
        top: -12px;
        left: 5px;
        font-size: 11px;
    }
}

/* ==================== EXTREME SMALL (320px) ==================== */

@media (max-width: 320px) {
    .content-wrap[b-hyxiflthhd] {
        padding: 0 4px;
    }

    .aligned-breadcrumb[b-hyxiflthhd] {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .header-icon[b-hyxiflthhd] {
        font-size: 16px;
        margin-right: 2px;
    }

    .header-title[b-hyxiflthhd] {
        font-size: 12px;
    }

    .header-subtitle[b-hyxiflthhd] {
        font-size: 10px;
    }

    .main-grid .k-grid[b-hyxiflthhd],
    .upa-grid-container .k-grid[b-hyxiflthhd],
    .file-grid-container .k-grid[b-hyxiflthhd] {
        font-size: 9px;
    }

    .k-column-title[b-hyxiflthhd] {
        font-size: 8px;
        padding: 2px 1px;
    }

    .table tr td[b-hyxiflthhd] {
        font-size: 9px;
        padding: 2px 2px;
    }

    .table tr th[b-hyxiflthhd] {
        font-size: 8px;
        padding: 2px 2px;
    }

    .add-btn[b-hyxiflthhd],
    .add-upa-btn[b-hyxiflthhd],
    .add-file-btn[b-hyxiflthhd] {
        padding: 4px 6px;
        font-size: 9px;
    }

    .pagination-controls select[b-hyxiflthhd] {
        font-size: 9px;
        padding: 2px 3px;
        min-width: 40px;
    }

    .total-amount[b-hyxiflthhd] {
        margin-right: 5px;
        font-size: 10px;
    }

    .dropdown[b-hyxiflthhd] {
        width: 50px;
        padding: 3px;
    }

    .input-container:hover[b-hyxiflthhd]:before {
        top: -10px;
        left: 2px;
        font-size: 9px;
    }
}
/* /Pages/ImportFiles.razor.rz.scp.css */
/* ========================================
   Responsive ImportFiles Page Styles
   ======================================== */

/* Base Container Styles */
.page-container[b-uzpincjg87] {
    background-color: #f6f6f6;
    min-height: 100vh;
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
.grid-wrapper[b-uzpincjg87] {
    max-width: 1430px;
}
.content-wrap[b-uzpincjg87] {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* General Row Styling */
.row[b-uzpincjg87] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

/* Breadcrumb Navigation */
.breadcrumb-row[b-uzpincjg87] {
    justify-content: flex-start;
    padding-left: 2rem; /* Adjust this value to move it closer to the center */
}

.aligned-breadcrumb[b-uzpincjg87] {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    gap: 0.5rem;
}

.aligned-breadcrumb li[b-uzpincjg87] {
    display: inline-block;
}

.aligned-breadcrumb li:not(:last-child)[b-uzpincjg87]::after {
    content: ">";
    margin-left: 0.5rem;
    color: green;
}

    .aligned-breadcrumb a[b-uzpincjg87] {
        color: green;
        text-decoration: none;
    }

.aligned-breadcrumb a:hover[b-uzpincjg87] {
    text-decoration: underline;
}

.main-grid[b-uzpincjg87],
.upa-grid-container[b-uzpincjg87],
.file-grid-container[b-uzpincjg87] {
    border-radius: 10px;
    padding: 10px 0;
    box-sizing: border-box;
    margin-top: 20px;
    overflow: visible;
}

    .main-grid .k-grid[b-uzpincjg87],
    .upa-grid-container .k-grid[b-uzpincjg87],
    .file-grid-container .k-grid[b-uzpincjg87] {
        border-radius: 10px;
        box-sizing: border-box;
        overflow: visible !important;
    }

.k-grid-container[b-uzpincjg87] {
    overflow: visible !important;
}

.k-grid-header[b-uzpincjg87],
.k-grid-header-wrap[b-uzpincjg87] {
    overflow: visible !important;
}

.k-grid-content[b-uzpincjg87],
.k-grid-content-locked[b-uzpincjg87] {
    overflow-x: auto !important;
    max-width: 100%;
}


/* Header Section */
.grid_alignment[b-uzpincjg87] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .grid_alignment[b-uzpincjg87] {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }
}

.grid_alignment h3[b-uzpincjg87] {
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0;
    white-space: nowrap;
    text-align: left;
    color: #111827;
}

@media (max-width: 767px) {
    .grid_alignment h3[b-uzpincjg87] {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .grid_alignment h3[b-uzpincjg87] {
        font-size: 1.75rem;
    }
}

.grid_alignment span[b-uzpincjg87] {
    font-weight: 700;
    color: #b91c1c;
    padding-top: 0.5rem;
    margin-left: auto;
    font-size: 0.875rem;
    text-align: right;
}

@media (max-width: 767px) {
    .grid_alignment span[b-uzpincjg87] {
        font-size: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .grid_alignment span[b-uzpincjg87] {
        font-size: 0.95rem;
    }
}

/* Second Row: Heading and Record Count */
.heading-row[b-uzpincjg87] {
    justify-content: space-between;
    padding: 0 2rem; /* Add padding to move both sides toward the center */
}

.heading-left[b-uzpincjg87] {
    display: flex;
    align-items: center;
    gap: 1rem;
   
}

.file-icon[b-uzpincjg87] {
    font-size: 2rem;
}

.heading-text[b-uzpincjg87] {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
}

.heading-right[b-uzpincjg87] {
    text-align: right;
    margin-right: -1rem; /* Adjust this value to move the record count closer to the center */
}

.record-count[b-uzpincjg87] {
    font-size: 0.875rem;
    font-weight: bold;
    color: #b91c1c;
}

/* Button Controls */
.flex.items-center.justify-between[b-uzpincjg87] {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

@media (max-width: 640px) {
    .flex.items-center.justify-between[b-uzpincjg87] {
        flex-direction: column;
        gap: 0.75rem;
    }
}

.btn[b-uzpincjg87] {
    border-radius: 0.375rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    transition: all 0.15s ease-in-out;
}

@media (min-width: 768px) {
    .btn[b-uzpincjg87] {
        padding: 0.5rem 1.5rem;
        font-size: 0.95rem;
    }
}

.btn-left[b-uzpincjg87] {
    background-color: forestgreen;
    color: white;
    border: 2px solid forestgreen;
    
}

.btn-left:hover[b-uzpincjg87] {
    background-color: #228B22;
}

.btn-center[b-uzpincjg87] {
    background-color: white;
    color: forestgreen;
    border: 2px solid forestgreen;
    margin: 0 auto; /* Center the middle button */
}

.btn-center:hover[b-uzpincjg87] {
    background-color: #f3f4f6;
}

.btn-right[b-uzpincjg87] {
    background-color: white;
    color: forestgreen;
    border: 2px solid forestgreen;
    margin-right: 1rem; /* Adjust this value to move the right button closer to the center */
}

.btn-right.disabled[b-uzpincjg87] {
    background-color: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
}

/* Upload Button */
label.cursor-pointer[b-uzpincjg87] {
    background-color: forestgreen;
    color: white;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-align: center;
    transition: all 0.15s ease-in-out;
    flex: 0 1 auto;
    font-size: 0.875rem;
    display: inline-block;
}

@media (min-width: 768px) {
    label.cursor-pointer[b-uzpincjg87] {
        padding: 0.5rem 1.5rem;
        font-size: 0.95rem;
    }
}

label.cursor-pointer:hover[b-uzpincjg87] {
    background-color: #228B22;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Upload Area */
.drag-drop-area[b-uzpincjg87] {
    border: 2px dashed forestgreen;
    background-color: #DAF2D0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
    margin-top: 1rem;
}

    .drag-drop-area:hover[b-uzpincjg87] {
        background-color: #C8E6C2 !important;
        border-color: #228B22;
    }

.upload-icon i[b-uzpincjg87] {
    font-size: 3rem;
    color: forestgreen;
}

@media (max-width: 640px) {
    .upload-icon i[b-uzpincjg87] {
        font-size: 2rem;
    }
}

.drag-drop-area p[b-uzpincjg87] {
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .drag-drop-area p[b-uzpincjg87] {
        font-size: 0.875rem;
    }
}

/* Telerik Grid Customization */
.table.table-striped[b-uzpincjg87] {
    width: 100%;
    overflow-x: auto;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .table.table-striped[b-uzpincjg87] {
        font-size: 0.95rem;
    }
    
}
@media (max-width: 768px) {
    .grid-wrapper[b-uzpincjg87] {
        padding: 0 1rem;
    }
}
/* Pagination Controls */
.justify-center.items-center.text-center[b-uzpincjg87] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
    flex-wrap: wrap;
}

@media (min-width: 640px) {
    .justify-center.items-center.text-center[b-uzpincjg87] {
        flex-direction: row;
        gap: 0.5rem;
    }
}

.justify-center.items-center.text-center a[b-uzpincjg87] {
    color: #708090;
    margin-right: 0.5rem;
}

.justify-center.items-center.text-center select[b-uzpincjg87] {
    border: 1px solid #696969;
    border-radius: 5px;
    font-size: 14px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

@media (max-width: 640px) {
    .justify-center.items-center.text-center select[b-uzpincjg87] {
        font-size: 16px;
        padding: 0.75rem 1rem;
    }
}

.justify-center.items-center.text-center select:focus[b-uzpincjg87] {
    outline: none;
    border-color: forestgreen;
    box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
}

/* Button Row */
/*.button-row {
    justify-content: space-between;
    padding: 0 2rem;
}*/
.button-row[b-uzpincjg87] {
    display: flex;
    justify-content: flex-start;
    padding-left: 2rem;
    margin-top: 10px;
    gap: 1rem;
}

/* Upload File Button */
.upload-btn[b-uzpincjg87] {
    background-color: forestgreen;
    color: white;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-align: center;
    transition: all 0.15s ease-in-out;
    font-size: 0.875rem;
    display: inline-block;
}

.upload-btn:hover[b-uzpincjg87] {
    background-color: #228B22;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.grid-full-width[b-uzpincjg87] {
    width: 100vw; 
    max-width: none !important;
    margin-left: calc(-50vw + 50%);
}

.file-grid-container[b-uzpincjg87] {
    width: 100%;
    overflow-x: auto;
    padding: 0 40px;
}

    .file-grid-container .k-grid[b-uzpincjg87] {
        min-width: 1600px;
        width: 100% !important;
        table-layout: fixed;
    }

.k-grid[b-uzpincjg87],
.k-grid-table[b-uzpincjg87] {
    flex-shrink: 0;
}

.grid-scroll-wrapper[b-uzpincjg87] {
    width: 100%;
    max-width: 100%;
    overflow-x: auto; 
}

.file-grid-container[b-uzpincjg87] {
    width: 100%;
}

    .file-grid-container .k-grid[b-uzpincjg87] {
        min-width: 1500px;
        width: 100% !important;
        flex-shrink: 0;
    }
/* /Pages/InProgressFiles.razor.rz.scp.css */
/* ==================== PAGE CONTAINER STRUCTURE ==================== */

.page-container[b-218jud4e0b] {
    background-color: #f6f6f6;
    min-height: 100vh;
    padding: 2px 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.content-wrap[b-218jud4e0b] {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    overflow: visible;
}


.grid-header-bar[b-218jud4e0b] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 10px;
    gap: 20px;
}

.grid-header-left[b-218jud4e0b] {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 250px;
    margin-left: 45px;
}

.header-icon[b-218jud4e0b] {
    font-size: 36px;
    color: #4d8df6;
    flex-shrink: 0;
}

.header-text[b-218jud4e0b] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-title[b-218jud4e0b] {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.header-subtitle[b-218jud4e0b] {
    font-size: 14px;
    font-weight: 400;
    color: slategrey;
    margin: 0;
}

.grid-header-right[b-218jud4e0b] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-right: 50px;
}

.radio-toggle[b-218jud4e0b] {
    display: flex;
    gap: 20px;
}

.radio-option[b-218jud4e0b] {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .radio-option label[b-218jud4e0b] {
        font-size: 14px;
        font-weight: 500;
        color: #333;
    }


/* ==================== BREADCRUMB ==================== */

.aligned-breadcrumb[b-218jud4e0b] {
    margin: 0 0 6px 0;
    padding: 10px 0;
    list-style: none;
    padding-left: 45px;
    font-size: 15px;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

    .aligned-breadcrumb li[b-218jud4e0b] {
        display: inline;
        padding-right: 5px;
    }

        .aligned-breadcrumb li a[b-218jud4e0b] {
            text-decoration: none;
            color: #D32F2F;
        }

        .aligned-breadcrumb li + li[b-218jud4e0b]::before {
            content: ">";
            margin: 0 5px;
        }

/* ==================== HEADER BAR ==================== */

.header-bar[b-218jud4e0b] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 15px;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    min-width: 0;
}

.header-left[b-218jud4e0b] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
    overflow: hidden;
}

.header-text[b-218jud4e0b] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
}

.header-icon[b-218jud4e0b] {
    font-size: 36px;
    color: #002D62;
    margin-right: 10px;
    line-height: 1;
    font-weight: 300;
    flex-shrink: 0;
}

.header-title[b-218jud4e0b] {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-subtitle[b-218jud4e0b] {
    color: slategrey;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==================== BUTTONS ==================== */

.add-btn[b-218jud4e0b],
.add-upa-btn[b-218jud4e0b],
.add-file-btn[b-218jud4e0b] {
    background-color: #1e7c1f;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

    .add-btn:hover[b-218jud4e0b],
    .add-upa-btn:hover[b-218jud4e0b],
    .add-file-btn:hover[b-218jud4e0b] {
        background-color: #176b18;
    }

/* ==================== GRID CONTAINERS ==================== */

.main-grid[b-218jud4e0b],
.upa-grid-container[b-218jud4e0b],
.file-grid-container[b-218jud4e0b] {
    width: 100%;
    border-radius: 10px;
    padding: 10px 0;
    box-sizing: border-box;
    margin-top: 20px;
    overflow: visible;
}

    .main-grid .k-grid[b-218jud4e0b],
    .upa-grid-container .k-grid[b-218jud4e0b],
    .file-grid-container .k-grid[b-218jud4e0b] {
        width: 100% !important;
        border-radius: 10px;
        box-sizing: border-box;
        overflow: visible !important;
    }

.k-grid-container[b-218jud4e0b] {
    overflow: visible !important;
}

.k-grid-header[b-218jud4e0b],
.k-grid-header-wrap[b-218jud4e0b] {
    overflow: visible !important;
}

.k-grid-content[b-218jud4e0b],
.k-grid-content-locked[b-218jud4e0b] {
    overflow-x: auto !important;
    max-width: 100%;
}

/* ==================== PAGINATION CONTROLS ==================== */

.pagination-controls[b-218jud4e0b] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    width: 100%;
}

    .pagination-controls select[b-218jud4e0b] {
        border: 1px solid dimgrey;
        border-radius: 5px;
        font-size: 14px;
        padding: 6px 8px;
        min-width: 60px;
    }

/* ==================== FORM & INPUT ELEMENTS ==================== */

.dropdown[b-218jud4e0b] {
    width: 90px;
    padding: 5px;
}

.input-container[b-218jud4e0b] {
    position: relative;
    display: inline-block;
}

input:focus[b-218jud4e0b] {
    border-color: red;
    outline: none;
}

.tooltip[b-218jud4e0b] {
    position: absolute;
    text-decoration-color: red;
    font-size: 14px;
    z-index: 1;
}

.input-container:hover .tooltip[b-218jud4e0b] {
    display: block;
}

.input-container:hover[b-218jud4e0b]:before {
    content: "80 characters limit reached";
    position: absolute;
    color: red;
    top: -15px;
    left: 10px;
}

input:valid ~ .tooltip[b-218jud4e0b] {
    display: none;
}

/* ==================== CHECKBOX & VALIDATION ==================== */

.k-checkbox:checked[b-218jud4e0b] {
    border-color: #63686D !important;
    background-color: forestgreen !important;
}

/* ==================== PAYMENT & DISPLAY STYLES ==================== */

.total-amount[b-218jud4e0b] {
    margin-right: 30px;
    color: darkgreen;
    font-size: 16px;
    font-weight: 700;
}

.paymentSum[b-218jud4e0b] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-amount[b-218jud4e0b] {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.spa[b-218jud4e0b] {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 14px;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* ==================== DESKTOP (1201px+) ==================== */

@media (min-width: 1201px) {
    .content-wrap[b-218jud4e0b] {
        padding: 0 30px;
    }
}

/* ==================== TABLET (1200px down) ==================== */

@media (max-width: 1200px) {
    .content-wrap[b-218jud4e0b] {
        padding: 0 20px;
    }

    .header-bar[b-218jud4e0b] {
        gap: 10px;
    }

    .header-icon[b-218jud4e0b] {
        font-size: 32px;
    }

    .header-title[b-218jud4e0b] {
        font-size: 20px;
    }

    .header-subtitle[b-218jud4e0b] {
        font-size: 14px;
    }

    .main-grid .k-grid[b-218jud4e0b],
    .upa-grid-container .k-grid[b-218jud4e0b],
    .file-grid-container .k-grid[b-218jud4e0b] {
        font-size: 13px;
    }

    .k-column-title[b-218jud4e0b] {
        font-size: 12px;
    }

    .table tr td[b-218jud4e0b] {
        font-size: 13px;
        padding: 8px 10px;
    }
}

/* ==================== MOBILE (1024px down) ==================== */

@media (max-width: 1024px) {
    .content-wrap[b-218jud4e0b] {
        padding: 0 15px;
    }

    .header-bar[b-218jud4e0b] {
        gap: 8px;
    }

    .header-left[b-218jud4e0b] {
        min-width: 150px;
    }

    .header-icon[b-218jud4e0b] {
        font-size: 28px;
        margin-right: 8px;
    }

    .header-title[b-218jud4e0b] {
        font-size: 18px;
    }

    .header-subtitle[b-218jud4e0b] {
        font-size: 13px;
    }

    .main-grid .k-grid[b-218jud4e0b],
    .upa-grid-container .k-grid[b-218jud4e0b],
    .file-grid-container .k-grid[b-218jud4e0b] {
        font-size: 12px;
    }

    .k-column-title[b-218jud4e0b] {
        font-size: 11px;
    }

    .table tr td[b-218jud4e0b] {
        font-size: 12px;
        padding: 8px 8px;
    }

    .table tr th[b-218jud4e0b] {
        font-size: 11px;
    }
}

/* ==================== TABLET (768px down) ==================== */

@media (max-width: 768px) {
    .page-container[b-218jud4e0b] {
        padding: 0;
    }

    .content-wrap[b-218jud4e0b] {
        padding: 0 12px;
    }

    .aligned-breadcrumb[b-218jud4e0b] {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .header-bar[b-218jud4e0b] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 8px;
        margin-bottom: 12px;
        width: 100%;
    }

    .header-left[b-218jud4e0b] {
        width: 100%;
        min-width: auto;
        gap: 8px;
    }

    .header-text[b-218jud4e0b] {
        min-width: 0;
    }

    .header-icon[b-218jud4e0b] {
        font-size: 24px;
        margin-right: 6px;
        flex-shrink: 0;
    }

    .header-title[b-218jud4e0b] {
        font-size: 16px;
    }

    .header-subtitle[b-218jud4e0b] {
        font-size: 12px;
    }

    .add-btn[b-218jud4e0b],
    .add-upa-btn[b-218jud4e0b],
    .add-file-btn[b-218jud4e0b] {
        width: 100%;
        padding: 10px 12px;
        font-size: 12px;
    }

    .main-grid[b-218jud4e0b] {
        margin-top: 15px;
    }

        .main-grid .k-grid[b-218jud4e0b],
        .upa-grid-container .k-grid[b-218jud4e0b],
        .file-grid-container .k-grid[b-218jud4e0b] {
            font-size: 11px;
            height: auto !important;
            width: 100% !important;
        }

    .k-column-title[b-218jud4e0b] {
        font-size: 10px;
    }

    .table tr td[b-218jud4e0b] {
        font-size: 11px;
        padding: 6px 6px;
    }

    .table tr th[b-218jud4e0b] {
        font-size: 10px;
        padding: 6px 6px;
    }

    .pagination-controls[b-218jud4e0b] {
        gap: 6px;
        margin-top: 12px;
    }

        .pagination-controls select[b-218jud4e0b] {
            font-size: 11px;
            padding: 5px 6px;
            min-width: 50px;
        }

    .total-amount[b-218jud4e0b] {
        margin-right: 15px;
        font-size: 14px;
    }

    .dropdown[b-218jud4e0b] {
        width: 70px;
    }
}

/* ==================== SMALL MOBILE (480px down) ==================== */

@media (max-width: 480px) {
    .content-wrap[b-218jud4e0b] {
        padding: 0 8px;
    }

    .aligned-breadcrumb[b-218jud4e0b] {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .header-bar[b-218jud4e0b] {
        margin-top: 5px;
        margin-bottom: 8px;
        gap: 6px;
    }

    .header-left[b-218jud4e0b] {
        gap: 6px;
    }

    .header-icon[b-218jud4e0b] {
        font-size: 20px;
        margin-right: 4px;
    }

    .header-title[b-218jud4e0b] {
        font-size: 14px;
    }

    .header-subtitle[b-218jud4e0b] {
        font-size: 11px;
    }

    .add-btn[b-218jud4e0b],
    .add-upa-btn[b-218jud4e0b],
    .add-file-btn[b-218jud4e0b] {
        padding: 6px 8px;
        font-size: 11px;
    }

    .main-grid .k-grid[b-218jud4e0b],
    .upa-grid-container .k-grid[b-218jud4e0b],
    .file-grid-container .k-grid[b-218jud4e0b] {
        font-size: 10px;
    }

    .k-column-title[b-218jud4e0b] {
        font-size: 9px;
        padding: 4px 2px;
    }

    .table tr td[b-218jud4e0b] {
        font-size: 10px;
        padding: 4px 4px;
    }

    .table tr th[b-218jud4e0b] {
        font-size: 9px;
        padding: 4px 4px;
    }

    .pagination-controls[b-218jud4e0b] {
        gap: 4px;
        margin-top: 10px;
    }

        .pagination-controls select[b-218jud4e0b] {
            font-size: 10px;
            padding: 4px 4px;
            min-width: 45px;
        }

    .total-amount[b-218jud4e0b] {
        margin-right: 10px;
        font-size: 12px;
    }

    .dropdown[b-218jud4e0b] {
        width: 60px;
    }

    .input-container:hover[b-218jud4e0b]:before {
        top: -12px;
        left: 5px;
        font-size: 11px;
    }
}

/* ==================== EXTREME SMALL (320px) ==================== */

@media (max-width: 320px) {
    .content-wrap[b-218jud4e0b] {
        padding: 0 4px;
    }

    .aligned-breadcrumb[b-218jud4e0b] {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .header-icon[b-218jud4e0b] {
        font-size: 16px;
        margin-right: 2px;
    }

    .header-title[b-218jud4e0b] {
        font-size: 12px;
    }

    .header-subtitle[b-218jud4e0b] {
        font-size: 10px;
    }

    .main-grid .k-grid[b-218jud4e0b],
    .upa-grid-container .k-grid[b-218jud4e0b],
    .file-grid-container .k-grid[b-218jud4e0b] {
        font-size: 9px;
    }

    .k-column-title[b-218jud4e0b] {
        font-size: 8px;
        padding: 2px 1px;
    }

    .table tr td[b-218jud4e0b] {
        font-size: 9px;
        padding: 2px 2px;
    }

    .table tr th[b-218jud4e0b] {
        font-size: 8px;
        padding: 2px 2px;
    }

    .add-btn[b-218jud4e0b],
    .add-upa-btn[b-218jud4e0b],
    .add-file-btn[b-218jud4e0b] {
        padding: 4px 6px;
        font-size: 9px;
    }

    .pagination-controls select[b-218jud4e0b] {
        font-size: 9px;
        padding: 2px 3px;
        min-width: 40px;
    }

    .total-amount[b-218jud4e0b] {
        margin-right: 5px;
        font-size: 10px;
    }

    .dropdown[b-218jud4e0b] {
        width: 50px;
        padding: 3px;
    }

    .input-container:hover[b-218jud4e0b]:before {
        top: -10px;
        left: 2px;
        font-size: 9px;
    }
}

@media (max-width: 768px) {
    .grid-header-bar[b-218jud4e0b] {
        flex-direction: column;
        align-items: flex-start;
    }

    .grid-header-right[b-218jud4e0b] {
        justify-content: flex-start;
    }

    .header-title[b-218jud4e0b] {
        font-size: 18px;
    }

    .header-subtitle[b-218jud4e0b] {
        font-size: 13px;
    }

    .radio-option label[b-218jud4e0b] {
        font-size: 13px;
    }
}
/* /Pages/InProgressGrid.razor.rz.scp.css */
/* ==================== PAGE CONTAINER STRUCTURE ==================== */

.page-container[b-lvrv9y9msn] {
    background-color: #f6f6f6;
    min-height: 100vh;
    padding: 2px 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.content-wrap[b-lvrv9y9msn] {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    overflow: visible;
}

/* ==================== BREADCRUMB ==================== */

.aligned-breadcrumb[b-lvrv9y9msn] {
    margin: 0 0 6px 0;
    padding: 10px 0;
    list-style: none;
    font-size: 15px;
    padding-left: 45px;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

    .aligned-breadcrumb li[b-lvrv9y9msn] {
        display: inline;
        padding-right: 5px;
    }

        .aligned-breadcrumb li a[b-lvrv9y9msn] {
            text-decoration: none;
            color: #D32F2F;
        }

        .aligned-breadcrumb li + li[b-lvrv9y9msn]::before {
            content: ">";
            margin: 0 5px;
        }

/* ==================== HEADER BAR ==================== */

.header-bar[b-lvrv9y9msn] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 15px;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    min-width: 0;
}

.header-left[b-lvrv9y9msn] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
    overflow: hidden;
}

.header-text[b-lvrv9y9msn] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
}

.header-icon[b-lvrv9y9msn] {
    font-size: 36px;
    color: #002D62;
    margin-right: 10px;
    line-height: 1;
    font-weight: 300;
    flex-shrink: 0;
}

.header-title[b-lvrv9y9msn] {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-subtitle[b-lvrv9y9msn] {
    color: slategrey;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==================== BUTTONS ==================== */

.add-btn[b-lvrv9y9msn],
.add-upa-btn[b-lvrv9y9msn],
.add-file-btn[b-lvrv9y9msn] {
    background-color: #1e7c1f;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

    .add-btn:hover[b-lvrv9y9msn],
    .add-upa-btn:hover[b-lvrv9y9msn],
    .add-file-btn:hover[b-lvrv9y9msn] {
        background-color: #176b18;
    }

/* ==================== GRID CONTAINERS ==================== */

.main-grid[b-lvrv9y9msn],
.upa-grid-container[b-lvrv9y9msn],
.file-grid-container[b-lvrv9y9msn] {
    width: 100%;
    border-radius: 10px;
    padding: 10px 0;
    box-sizing: border-box;
    margin-top: 20px;
    overflow: visible;
}

    .main-grid .k-grid[b-lvrv9y9msn],
    .upa-grid-container .k-grid[b-lvrv9y9msn],
    .file-grid-container .k-grid[b-lvrv9y9msn] {
        width: 100% !important;
        border-radius: 10px;
        box-sizing: border-box;
        overflow: visible !important;
    }

.k-grid-container[b-lvrv9y9msn] {
    overflow: visible !important;
}

.k-grid-header[b-lvrv9y9msn],
.k-grid-header-wrap[b-lvrv9y9msn] {
    overflow: visible !important;
}

.k-grid-content[b-lvrv9y9msn],
.k-grid-content-locked[b-lvrv9y9msn] {
    overflow-x: auto !important;
    max-width: 100%;
}

/* ==================== PAGINATION CONTROLS ==================== */

.pagination-controls[b-lvrv9y9msn] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    width: 100%;
}

    .pagination-controls select[b-lvrv9y9msn] {
        border: 1px solid dimgrey;
        border-radius: 5px;
        font-size: 14px;
        padding: 6px 8px;
        min-width: 60px;
    }

/* ==================== FORM & INPUT ELEMENTS ==================== */

.dropdown[b-lvrv9y9msn] {
    width: 90px;
    padding: 5px;
}

.input-container[b-lvrv9y9msn] {
    position: relative;
    display: inline-block;
}

input:focus[b-lvrv9y9msn] {
    border-color: red;
    outline: none;
}

.tooltip[b-lvrv9y9msn] {
    position: absolute;
    text-decoration-color: red;
    font-size: 14px;
    z-index: 1;
}

.input-container:hover .tooltip[b-lvrv9y9msn] {
    display: block;
}

.input-container:hover[b-lvrv9y9msn]:before {
    content: "80 characters limit reached";
    position: absolute;
    color: red;
    top: -15px;
    left: 10px;
}

input:valid ~ .tooltip[b-lvrv9y9msn] {
    display: none;
}

/* ==================== CHECKBOX & VALIDATION ==================== */

.k-checkbox:checked[b-lvrv9y9msn] {
    border-color: #63686D !important;
    background-color: forestgreen !important;
}

/* ==================== PAYMENT & DISPLAY STYLES ==================== */

.total-amount[b-lvrv9y9msn] {
    margin-right: 30px;
    color: darkgreen;
    font-size: 16px;
    font-weight: 700;
}

.paymentSum[b-lvrv9y9msn] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-amount[b-lvrv9y9msn] {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.spa[b-lvrv9y9msn] {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 14px;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* ==================== DESKTOP (1201px+) ==================== */

@media (min-width: 1201px) {
    .content-wrap[b-lvrv9y9msn] {
        padding: 0 30px;
    }
}

/* ==================== TABLET (1200px down) ==================== */

@media (max-width: 1200px) {
    .content-wrap[b-lvrv9y9msn] {
        padding: 0 20px;
    }

    .header-bar[b-lvrv9y9msn] {
        gap: 10px;
    }

    .header-icon[b-lvrv9y9msn] {
        font-size: 32px;
    }

    .header-title[b-lvrv9y9msn] {
        font-size: 20px;
    }

    .header-subtitle[b-lvrv9y9msn] {
        font-size: 14px;
    }

    .main-grid .k-grid[b-lvrv9y9msn],
    .upa-grid-container .k-grid[b-lvrv9y9msn],
    .file-grid-container .k-grid[b-lvrv9y9msn] {
        font-size: 13px;
    }

    .k-column-title[b-lvrv9y9msn] {
        font-size: 12px;
    }

    .table tr td[b-lvrv9y9msn] {
        font-size: 13px;
        padding: 8px 10px;
    }
}

/* ==================== MOBILE (1024px down) ==================== */

@media (max-width: 1024px) {
    .content-wrap[b-lvrv9y9msn] {
        padding: 0 15px;
    }

    .header-bar[b-lvrv9y9msn] {
        gap: 8px;
    }

    .header-left[b-lvrv9y9msn] {
        min-width: 150px;
    }

    .header-icon[b-lvrv9y9msn] {
        font-size: 28px;
        margin-right: 8px;
    }

    .header-title[b-lvrv9y9msn] {
        font-size: 18px;
    }

    .header-subtitle[b-lvrv9y9msn] {
        font-size: 13px;
    }

    .main-grid .k-grid[b-lvrv9y9msn],
    .upa-grid-container .k-grid[b-lvrv9y9msn],
    .file-grid-container .k-grid[b-lvrv9y9msn] {
        font-size: 12px;
    }

    .k-column-title[b-lvrv9y9msn] {
        font-size: 11px;
    }

    .table tr td[b-lvrv9y9msn] {
        font-size: 12px;
        padding: 8px 8px;
    }

    .table tr th[b-lvrv9y9msn] {
        font-size: 11px;
    }
}

/* ==================== TABLET (768px down) ==================== */

@media (max-width: 768px) {
    .page-container[b-lvrv9y9msn] {
        padding: 0;
    }

    .content-wrap[b-lvrv9y9msn] {
        padding: 0 12px;
    }

    .aligned-breadcrumb[b-lvrv9y9msn] {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .header-bar[b-lvrv9y9msn] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 8px;
        margin-bottom: 12px;
        width: 100%;
    }

    .header-left[b-lvrv9y9msn] {
        width: 100%;
        min-width: auto;
        gap: 8px;
    }

    .header-text[b-lvrv9y9msn] {
        min-width: 0;
    }

    .header-icon[b-lvrv9y9msn] {
        font-size: 24px;
        margin-right: 6px;
        flex-shrink: 0;
    }

    .header-title[b-lvrv9y9msn] {
        font-size: 16px;
    }

    .header-subtitle[b-lvrv9y9msn] {
        font-size: 12px;
    }

    .add-btn[b-lvrv9y9msn],
    .add-upa-btn[b-lvrv9y9msn],
    .add-file-btn[b-lvrv9y9msn] {
        width: 100%;
        padding: 10px 12px;
        font-size: 12px;
    }

    .main-grid[b-lvrv9y9msn] {
        margin-top: 15px;
    }

        .main-grid .k-grid[b-lvrv9y9msn],
        .upa-grid-container .k-grid[b-lvrv9y9msn],
        .file-grid-container .k-grid[b-lvrv9y9msn] {
            font-size: 11px;
            height: auto !important;
            width: 100% !important;
        }

    .k-column-title[b-lvrv9y9msn] {
        font-size: 10px;
    }

    .table tr td[b-lvrv9y9msn] {
        font-size: 11px;
        padding: 6px 6px;
    }

    .table tr th[b-lvrv9y9msn] {
        font-size: 10px;
        padding: 6px 6px;
    }

    .pagination-controls[b-lvrv9y9msn] {
        gap: 6px;
        margin-top: 12px;
    }

        .pagination-controls select[b-lvrv9y9msn] {
            font-size: 11px;
            padding: 5px 6px;
            min-width: 50px;
        }

    .total-amount[b-lvrv9y9msn] {
        margin-right: 15px;
        font-size: 14px;
    }

    .dropdown[b-lvrv9y9msn] {
        width: 70px;
    }
}

/* ==================== SMALL MOBILE (480px down) ==================== */

@media (max-width: 480px) {
    .content-wrap[b-lvrv9y9msn] {
        padding: 0 8px;
    }

    .aligned-breadcrumb[b-lvrv9y9msn] {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .header-bar[b-lvrv9y9msn] {
        margin-top: 5px;
        margin-bottom: 8px;
        gap: 6px;
    }

    .header-left[b-lvrv9y9msn] {
        gap: 6px;
    }

    .header-icon[b-lvrv9y9msn] {
        font-size: 20px;
        margin-right: 4px;
    }

    .header-title[b-lvrv9y9msn] {
        font-size: 14px;
    }

    .header-subtitle[b-lvrv9y9msn] {
        font-size: 11px;
    }

    .add-btn[b-lvrv9y9msn],
    .add-upa-btn[b-lvrv9y9msn],
    .add-file-btn[b-lvrv9y9msn] {
        padding: 6px 8px;
        font-size: 11px;
    }

    .main-grid .k-grid[b-lvrv9y9msn],
    .upa-grid-container .k-grid[b-lvrv9y9msn],
    .file-grid-container .k-grid[b-lvrv9y9msn] {
        font-size: 10px;
    }

    .k-column-title[b-lvrv9y9msn] {
        font-size: 9px;
        padding: 4px 2px;
    }

    .table tr td[b-lvrv9y9msn] {
        font-size: 10px;
        padding: 4px 4px;
    }

    .table tr th[b-lvrv9y9msn] {
        font-size: 9px;
        padding: 4px 4px;
    }

    .pagination-controls[b-lvrv9y9msn] {
        gap: 4px;
        margin-top: 10px;
    }

        .pagination-controls select[b-lvrv9y9msn] {
            font-size: 10px;
            padding: 4px 4px;
            min-width: 45px;
        }

    .total-amount[b-lvrv9y9msn] {
        margin-right: 10px;
        font-size: 12px;
    }

    .dropdown[b-lvrv9y9msn] {
        width: 60px;
    }

    .input-container:hover[b-lvrv9y9msn]:before {
        top: -12px;
        left: 5px;
        font-size: 11px;
    }
}

/* ==================== EXTREME SMALL (320px) ==================== */

@media (max-width: 320px) {
    .content-wrap[b-lvrv9y9msn] {
        padding: 0 4px;
    }

    .aligned-breadcrumb[b-lvrv9y9msn] {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .header-icon[b-lvrv9y9msn] {
        font-size: 16px;
        margin-right: 2px;
    }

    .header-title[b-lvrv9y9msn] {
        font-size: 12px;
    }

    .header-subtitle[b-lvrv9y9msn] {
        font-size: 10px;
    }

    .main-grid .k-grid[b-lvrv9y9msn],
    .upa-grid-container .k-grid[b-lvrv9y9msn],
    .file-grid-container .k-grid[b-lvrv9y9msn] {
        font-size: 9px;
    }

    .k-column-title[b-lvrv9y9msn] {
        font-size: 8px;
        padding: 2px 1px;
    }

    .table tr td[b-lvrv9y9msn] {
        font-size: 9px;
        padding: 2px 2px;
    }

    .table tr th[b-lvrv9y9msn] {
        font-size: 8px;
        padding: 2px 2px;
    }

    .add-btn[b-lvrv9y9msn],
    .add-upa-btn[b-lvrv9y9msn],
    .add-file-btn[b-lvrv9y9msn] {
        padding: 4px 6px;
        font-size: 9px;
    }

    .pagination-controls select[b-lvrv9y9msn] {
        font-size: 9px;
        padding: 2px 3px;
        min-width: 40px;
    }

    .total-amount[b-lvrv9y9msn] {
        margin-right: 5px;
        font-size: 10px;
    }

    .dropdown[b-lvrv9y9msn] {
        width: 50px;
        padding: 3px;
    }

    .input-container:hover[b-lvrv9y9msn]:before {
        top: -10px;
        left: 2px;
        font-size: 9px;
    }
}
/* /Pages/ManageFileAccess.razor.rz.scp.css */
/* ==================== PAGE CONTAINER STRUCTURE ==================== */

.page-container[b-hblm5he2q0] {
    background-color: #f6f6f6;
    min-height: 100vh;
    padding: 2px 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.content-wrap[b-hblm5he2q0] {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    overflow: visible;
}

/* ==================== BREADCRUMB ==================== */

.aligned-breadcrumb[b-hblm5he2q0] {
    margin: 0 0 6px 0;
    padding: 10px 0;
    list-style: none;
    font-size: 15px;
    padding-left: 45px;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

    .aligned-breadcrumb li[b-hblm5he2q0] {
        display: inline;
        padding-right: 5px;
    }

        .aligned-breadcrumb li a[b-hblm5he2q0] {
            text-decoration: none;
            color: #D32F2F;
        }

        .aligned-breadcrumb li + li[b-hblm5he2q0]::before {
            content: ">";
            margin: 0 5px;
        }

/* ==================== HEADER BAR ==================== */

.header-bar[b-hblm5he2q0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 15px;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    min-width: 0;
}

.header-left[b-hblm5he2q0] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
    overflow: hidden;
}

.header-text[b-hblm5he2q0] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
}

.header-icon[b-hblm5he2q0] {
    font-size: 36px;
    color: #002D62;
    margin-right: 10px;
    line-height: 1;
    font-weight: 300;
    flex-shrink: 0;
}

.header-title[b-hblm5he2q0] {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-subtitle[b-hblm5he2q0] {
    color: slategrey;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==================== BUTTONS ==================== */

.add-btn[b-hblm5he2q0],
.add-upa-btn[b-hblm5he2q0],
.add-file-btn[b-hblm5he2q0] {
    background-color: #1e7c1f;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

    .add-btn:hover[b-hblm5he2q0],
    .add-upa-btn:hover[b-hblm5he2q0],
    .add-file-btn:hover[b-hblm5he2q0] {
        background-color: #176b18;
    }

/* ==================== GRID CONTAINERS ==================== */

.main-grid[b-hblm5he2q0],
.upa-grid-container[b-hblm5he2q0],
.file-grid-container[b-hblm5he2q0] {
    width: 100%;
    border-radius: 10px;
    padding: 10px 0;
    box-sizing: border-box;
    margin-top: 20px;
    overflow: visible;
}

    .main-grid .k-grid[b-hblm5he2q0],
    .upa-grid-container .k-grid[b-hblm5he2q0],
    .file-grid-container .k-grid[b-hblm5he2q0] {
        width: 100% !important;
        border-radius: 10px;
        box-sizing: border-box;
        overflow: visible !important;
    }

.k-grid-container[b-hblm5he2q0] {
    overflow: visible !important;
}

.k-grid-header[b-hblm5he2q0],
.k-grid-header-wrap[b-hblm5he2q0] {
    overflow: visible !important;
}

.k-grid-content[b-hblm5he2q0],
.k-grid-content-locked[b-hblm5he2q0] {
    overflow-x: auto !important;
    max-width: 100%;
}

/* ==================== PAGINATION CONTROLS ==================== */

.pagination-controls[b-hblm5he2q0] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    width: 100%;
}

    .pagination-controls select[b-hblm5he2q0] {
        border: 1px solid dimgrey;
        border-radius: 5px;
        font-size: 14px;
        padding: 6px 8px;
        min-width: 60px;
    }

/* ==================== FORM & INPUT ELEMENTS ==================== */

.dropdown[b-hblm5he2q0] {
    width: 90px;
    padding: 5px;
}

.input-container[b-hblm5he2q0] {
    position: relative;
    display: inline-block;
}

input:focus[b-hblm5he2q0] {
    border-color: red;
    outline: none;
}

.tooltip[b-hblm5he2q0] {
    position: absolute;
    text-decoration-color: red;
    font-size: 14px;
    z-index: 1;
}

.input-container:hover .tooltip[b-hblm5he2q0] {
    display: block;
}

.input-container:hover[b-hblm5he2q0]:before {
    content: "80 characters limit reached";
    position: absolute;
    color: red;
    top: -15px;
    left: 10px;
}

input:valid ~ .tooltip[b-hblm5he2q0] {
    display: none;
}

/* ==================== CHECKBOX & VALIDATION ==================== */

.k-checkbox:checked[b-hblm5he2q0] {
    border-color: #63686D !important;
    background-color: forestgreen !important;
}

/* ==================== PAYMENT & DISPLAY STYLES ==================== */

.total-amount[b-hblm5he2q0] {
    margin-right: 30px;
    color: darkgreen;
    font-size: 16px;
    font-weight: 700;
}

.paymentSum[b-hblm5he2q0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-amount[b-hblm5he2q0] {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.spa[b-hblm5he2q0] {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 14px;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* ==================== DESKTOP (1201px+) ==================== */

@media (min-width: 1201px) {
    .content-wrap[b-hblm5he2q0] {
        padding: 0 30px;
    }
}

/* ==================== TABLET (1200px down) ==================== */

@media (max-width: 1200px) {
    .content-wrap[b-hblm5he2q0] {
        padding: 0 20px;
    }

    .header-bar[b-hblm5he2q0] {
        gap: 10px;
    }

    .header-icon[b-hblm5he2q0] {
        font-size: 32px;
    }

    .header-title[b-hblm5he2q0] {
        font-size: 20px;
    }

    .header-subtitle[b-hblm5he2q0] {
        font-size: 14px;
    }

    .main-grid .k-grid[b-hblm5he2q0],
    .upa-grid-container .k-grid[b-hblm5he2q0],
    .file-grid-container .k-grid[b-hblm5he2q0] {
        font-size: 13px;
    }

    .k-column-title[b-hblm5he2q0] {
        font-size: 12px;
    }

    .table tr td[b-hblm5he2q0] {
        font-size: 13px;
        padding: 8px 10px;
    }
}

/* ==================== MOBILE (1024px down) ==================== */

@media (max-width: 1024px) {
    .content-wrap[b-hblm5he2q0] {
        padding: 0 15px;
    }

    .header-bar[b-hblm5he2q0] {
        gap: 8px;
    }

    .header-left[b-hblm5he2q0] {
        min-width: 150px;
    }

    .header-icon[b-hblm5he2q0] {
        font-size: 28px;
        margin-right: 8px;
    }

    .header-title[b-hblm5he2q0] {
        font-size: 18px;
    }

    .header-subtitle[b-hblm5he2q0] {
        font-size: 13px;
    }

    .main-grid .k-grid[b-hblm5he2q0],
    .upa-grid-container .k-grid[b-hblm5he2q0],
    .file-grid-container .k-grid[b-hblm5he2q0] {
        font-size: 12px;
    }

    .k-column-title[b-hblm5he2q0] {
        font-size: 11px;
    }

    .table tr td[b-hblm5he2q0] {
        font-size: 12px;
        padding: 8px 8px;
    }

    .table tr th[b-hblm5he2q0] {
        font-size: 11px;
    }
}

/* ==================== TABLET (768px down) ==================== */

@media (max-width: 768px) {
    .page-container[b-hblm5he2q0] {
        padding: 0;
    }

    .content-wrap[b-hblm5he2q0] {
        padding: 0 12px;
    }

    .aligned-breadcrumb[b-hblm5he2q0] {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .header-bar[b-hblm5he2q0] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 8px;
        margin-bottom: 12px;
        width: 100%;
    }

    .header-left[b-hblm5he2q0] {
        width: 100%;
        min-width: auto;
        gap: 8px;
    }

    .header-text[b-hblm5he2q0] {
        min-width: 0;
    }

    .header-icon[b-hblm5he2q0] {
        font-size: 24px;
        margin-right: 6px;
        flex-shrink: 0;
    }

    .header-title[b-hblm5he2q0] {
        font-size: 16px;
    }

    .header-subtitle[b-hblm5he2q0] {
        font-size: 12px;
    }

    .add-btn[b-hblm5he2q0],
    .add-upa-btn[b-hblm5he2q0],
    .add-file-btn[b-hblm5he2q0] {
        width: 100%;
        padding: 10px 12px;
        font-size: 12px;
    }

    .main-grid[b-hblm5he2q0] {
        margin-top: 15px;
    }

        .main-grid .k-grid[b-hblm5he2q0],
        .upa-grid-container .k-grid[b-hblm5he2q0],
        .file-grid-container .k-grid[b-hblm5he2q0] {
            font-size: 11px;
            height: auto !important;
            width: 100% !important;
        }

    .k-column-title[b-hblm5he2q0] {
        font-size: 10px;
    }

    .table tr td[b-hblm5he2q0] {
        font-size: 11px;
        padding: 6px 6px;
    }

    .table tr th[b-hblm5he2q0] {
        font-size: 10px;
        padding: 6px 6px;
    }

    .pagination-controls[b-hblm5he2q0] {
        gap: 6px;
        margin-top: 12px;
    }

        .pagination-controls select[b-hblm5he2q0] {
            font-size: 11px;
            padding: 5px 6px;
            min-width: 50px;
        }

    .total-amount[b-hblm5he2q0] {
        margin-right: 15px;
        font-size: 14px;
    }

    .dropdown[b-hblm5he2q0] {
        width: 70px;
    }
}

/* ==================== SMALL MOBILE (480px down) ==================== */

@media (max-width: 480px) {
    .content-wrap[b-hblm5he2q0] {
        padding: 0 8px;
    }

    .aligned-breadcrumb[b-hblm5he2q0] {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .header-bar[b-hblm5he2q0] {
        margin-top: 5px;
        margin-bottom: 8px;
        gap: 6px;
    }

    .header-left[b-hblm5he2q0] {
        gap: 6px;
    }

    .header-icon[b-hblm5he2q0] {
        font-size: 20px;
        margin-right: 4px;
    }

    .header-title[b-hblm5he2q0] {
        font-size: 14px;
    }

    .header-subtitle[b-hblm5he2q0] {
        font-size: 11px;
    }

    .add-btn[b-hblm5he2q0],
    .add-upa-btn[b-hblm5he2q0],
    .add-file-btn[b-hblm5he2q0] {
        padding: 6px 8px;
        font-size: 11px;
    }

    .main-grid .k-grid[b-hblm5he2q0],
    .upa-grid-container .k-grid[b-hblm5he2q0],
    .file-grid-container .k-grid[b-hblm5he2q0] {
        font-size: 10px;
    }

    .k-column-title[b-hblm5he2q0] {
        font-size: 9px;
        padding: 4px 2px;
    }

    .table tr td[b-hblm5he2q0] {
        font-size: 10px;
        padding: 4px 4px;
    }

    .table tr th[b-hblm5he2q0] {
        font-size: 9px;
        padding: 4px 4px;
    }

    .pagination-controls[b-hblm5he2q0] {
        gap: 4px;
        margin-top: 10px;
    }

        .pagination-controls select[b-hblm5he2q0] {
            font-size: 10px;
            padding: 4px 4px;
            min-width: 45px;
        }

    .total-amount[b-hblm5he2q0] {
        margin-right: 10px;
        font-size: 12px;
    }

    .dropdown[b-hblm5he2q0] {
        width: 60px;
    }

    .input-container:hover[b-hblm5he2q0]:before {
        top: -12px;
        left: 5px;
        font-size: 11px;
    }
}

/* ==================== EXTREME SMALL (320px) ==================== */

@media (max-width: 320px) {
    .content-wrap[b-hblm5he2q0] {
        padding: 0 4px;
    }

    .aligned-breadcrumb[b-hblm5he2q0] {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .header-icon[b-hblm5he2q0] {
        font-size: 16px;
        margin-right: 2px;
    }

    .header-title[b-hblm5he2q0] {
        font-size: 12px;
    }

    .header-subtitle[b-hblm5he2q0] {
        font-size: 10px;
    }

    .main-grid .k-grid[b-hblm5he2q0],
    .upa-grid-container .k-grid[b-hblm5he2q0],
    .file-grid-container .k-grid[b-hblm5he2q0] {
        font-size: 9px;
    }

    .k-column-title[b-hblm5he2q0] {
        font-size: 8px;
        padding: 2px 1px;
    }

    .table tr td[b-hblm5he2q0] {
        font-size: 9px;
        padding: 2px 2px;
    }

    .table tr th[b-hblm5he2q0] {
        font-size: 8px;
        padding: 2px 2px;
    }

    .add-btn[b-hblm5he2q0],
    .add-upa-btn[b-hblm5he2q0],
    .add-file-btn[b-hblm5he2q0] {
        padding: 4px 6px;
        font-size: 9px;
    }

    .pagination-controls select[b-hblm5he2q0] {
        font-size: 9px;
        padding: 2px 3px;
        min-width: 40px;
    }

    .total-amount[b-hblm5he2q0] {
        margin-right: 5px;
        font-size: 10px;
    }

    .dropdown[b-hblm5he2q0] {
        width: 50px;
        padding: 3px;
    }

    .input-container:hover[b-hblm5he2q0]:before {
        top: -10px;
        left: 2px;
        font-size: 9px;
    }
}
/* /Pages/ManageRebateCode.razor.rz.scp.css */
/* ==================== PAGE CONTAINER STRUCTURE ==================== */

.page-container[b-pe4cte9hxn] {
    background-color: #f6f6f6;
    min-height: 100vh;
    padding: 2px 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.content-wrap[b-pe4cte9hxn] {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    overflow: visible;
}

/* ==================== BREADCRUMB ==================== */

.aligned-breadcrumb[b-pe4cte9hxn] {
    margin: 0 0 6px 0;
    padding: 10px 0;
    list-style: none;
    padding-left: 45px;
    font-size: 15px;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

    .aligned-breadcrumb li[b-pe4cte9hxn] {
        display: inline;
        padding-right: 5px;
    }

        .aligned-breadcrumb li a[b-pe4cte9hxn] {
            text-decoration: none;
            color: #D32F2F;
        }

        .aligned-breadcrumb li + li[b-pe4cte9hxn]::before {
            content: ">";
            margin: 0 5px;
        }

/* ==================== HEADER BAR ==================== */

.header-bar[b-pe4cte9hxn] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 15px;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    min-width: 0;
}

.header-left[b-pe4cte9hxn] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
    overflow: hidden;
}

.header-text[b-pe4cte9hxn] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
}

.header-icon[b-pe4cte9hxn] {
    font-size: 36px;
    color: #002D62;
    margin-right: 10px;
    line-height: 1;
    font-weight: 300;
    flex-shrink: 0;
}

.header-title[b-pe4cte9hxn] {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-subtitle[b-pe4cte9hxn] {
    color: slategrey;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==================== BUTTONS ==================== */

.add-btn[b-pe4cte9hxn],
.add-upa-btn[b-pe4cte9hxn],
.add-file-btn[b-pe4cte9hxn] {
    background-color: #1e7c1f;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    margin-right: 42px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

    .add-btn:hover[b-pe4cte9hxn],
    .add-upa-btn:hover[b-pe4cte9hxn],
    .add-file-btn:hover[b-pe4cte9hxn] {
        background-color: #176b18;
    }

/* ==================== GRID CONTAINERS ==================== */

.main-grid[b-pe4cte9hxn],
.upa-grid-container[b-pe4cte9hxn],
.file-grid-container[b-pe4cte9hxn] {
    width: 100%;
    border-radius: 10px;
    padding: 10px 0;
    box-sizing: border-box;
    margin-top: 20px;
    overflow: visible;
}

    .main-grid .k-grid[b-pe4cte9hxn],
    .upa-grid-container .k-grid[b-pe4cte9hxn],
    .file-grid-container .k-grid[b-pe4cte9hxn] {
        width: 100% !important;
        border-radius: 10px;
        box-sizing: border-box;
        overflow: visible !important;
    }

.k-grid-container[b-pe4cte9hxn] {
    overflow: visible !important;
}

.k-grid-header[b-pe4cte9hxn],
.k-grid-header-wrap[b-pe4cte9hxn] {
    overflow: visible !important;
}

.k-grid-content[b-pe4cte9hxn],
.k-grid-content-locked[b-pe4cte9hxn] {
    overflow-x: auto !important;
    max-width: 100%;
}

/* ==================== PAGINATION CONTROLS ==================== */

.pagination-controls[b-pe4cte9hxn] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    width: 100%;
}

    .pagination-controls select[b-pe4cte9hxn] {
        border: 1px solid dimgrey;
        border-radius: 5px;
        font-size: 14px;
        padding: 6px 8px;
        min-width: 60px;
    }

/* ==================== FORM & INPUT ELEMENTS ==================== */

.dropdown[b-pe4cte9hxn] {
    width: 90px;
    padding: 5px;
}

.input-container[b-pe4cte9hxn] {
    position: relative;
    display: inline-block;
}

input:focus[b-pe4cte9hxn] {
    border-color: red;
    outline: none;
}

.tooltip[b-pe4cte9hxn] {
    position: absolute;
    text-decoration-color: red;
    font-size: 14px;
    z-index: 1;
}

.input-container:hover .tooltip[b-pe4cte9hxn] {
    display: block;
}

.input-container:hover[b-pe4cte9hxn]:before {
    content: "80 characters limit reached";
    position: absolute;
    color: red;
    top: -15px;
    left: 10px;
}

input:valid ~ .tooltip[b-pe4cte9hxn] {
    display: none;
}

/* ==================== CHECKBOX & VALIDATION ==================== */

.k-checkbox:checked[b-pe4cte9hxn] {
    border-color: #63686D !important;
    background-color: forestgreen !important;
}

/* ==================== PAYMENT & DISPLAY STYLES ==================== */

.total-amount[b-pe4cte9hxn] {
    margin-right: 30px;
    color: darkgreen;
    font-size: 16px;
    font-weight: 700;
}

.paymentSum[b-pe4cte9hxn] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-amount[b-pe4cte9hxn] {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.spa[b-pe4cte9hxn] {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 14px;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* ==================== DESKTOP (1201px+) ==================== */

@media (min-width: 1201px) {
    .content-wrap[b-pe4cte9hxn] {
        padding: 0 30px;
    }
}

/* ==================== TABLET (1200px down) ==================== */

@media (max-width: 1200px) {
    .content-wrap[b-pe4cte9hxn] {
        padding: 0 20px;
    }

    .header-bar[b-pe4cte9hxn] {
        gap: 10px;
    }

    .header-icon[b-pe4cte9hxn] {
        font-size: 32px;
    }

    .header-title[b-pe4cte9hxn] {
        font-size: 20px;
    }

    .header-subtitle[b-pe4cte9hxn] {
        font-size: 14px;
    }

    .main-grid .k-grid[b-pe4cte9hxn],
    .upa-grid-container .k-grid[b-pe4cte9hxn],
    .file-grid-container .k-grid[b-pe4cte9hxn] {
        font-size: 13px;
    }

    .k-column-title[b-pe4cte9hxn] {
        font-size: 12px;
    }

    .table tr td[b-pe4cte9hxn] {
        font-size: 13px;
        padding: 8px 10px;
    }
}

/* ==================== MOBILE (1024px down) ==================== */

@media (max-width: 1024px) {
    .content-wrap[b-pe4cte9hxn] {
        padding: 0 15px;
    }

    .header-bar[b-pe4cte9hxn] {
        gap: 8px;
    }

    .header-left[b-pe4cte9hxn] {
        min-width: 150px;
    }

    .header-icon[b-pe4cte9hxn] {
        font-size: 28px;
        margin-right: 8px;
    }

    .header-title[b-pe4cte9hxn] {
        font-size: 18px;
    }

    .header-subtitle[b-pe4cte9hxn] {
        font-size: 13px;
    }

    .main-grid .k-grid[b-pe4cte9hxn],
    .upa-grid-container .k-grid[b-pe4cte9hxn],
    .file-grid-container .k-grid[b-pe4cte9hxn] {
        font-size: 12px;
    }

    .k-column-title[b-pe4cte9hxn] {
        font-size: 11px;
    }

    .table tr td[b-pe4cte9hxn] {
        font-size: 12px;
        padding: 8px 8px;
    }

    .table tr th[b-pe4cte9hxn] {
        font-size: 11px;
    }
}

/* ==================== TABLET (768px down) ==================== */

@media (max-width: 768px) {
    .page-container[b-pe4cte9hxn] {
        padding: 0;
    }

    .content-wrap[b-pe4cte9hxn] {
        padding: 0 12px;
    }

    .aligned-breadcrumb[b-pe4cte9hxn] {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .header-bar[b-pe4cte9hxn] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 8px;
        margin-bottom: 12px;
        width: 100%;
    }

    .header-left[b-pe4cte9hxn] {
        width: 100%;
        min-width: auto;
        gap: 8px;
    }

    .header-text[b-pe4cte9hxn] {
        min-width: 0;
    }

    .header-icon[b-pe4cte9hxn] {
        font-size: 24px;
        margin-right: 6px;
        flex-shrink: 0;
    }

    .header-title[b-pe4cte9hxn] {
        font-size: 16px;
    }

    .header-subtitle[b-pe4cte9hxn] {
        font-size: 12px;
    }

    .add-btn[b-pe4cte9hxn],
    .add-upa-btn[b-pe4cte9hxn],
    .add-file-btn[b-pe4cte9hxn] {
        width: 100%;
        padding: 10px 12px;
        font-size: 12px;
        margin-right: 0;
    }

    .main-grid[b-pe4cte9hxn] {
        margin-top: 15px;
    }

        .main-grid .k-grid[b-pe4cte9hxn],
        .upa-grid-container .k-grid[b-pe4cte9hxn],
        .file-grid-container .k-grid[b-pe4cte9hxn] {
            font-size: 11px;
            height: auto !important;
            width: 100% !important;
        }

    .k-column-title[b-pe4cte9hxn] {
        font-size: 10px;
    }

    .table tr td[b-pe4cte9hxn] {
        font-size: 11px;
        padding: 6px 6px;
    }

    .table tr th[b-pe4cte9hxn] {
        font-size: 10px;
        padding: 6px 6px;
    }

    .pagination-controls[b-pe4cte9hxn] {
        gap: 6px;
        margin-top: 12px;
    }

        .pagination-controls select[b-pe4cte9hxn] {
            font-size: 11px;
            padding: 5px 6px;
            min-width: 50px;
        }

    .total-amount[b-pe4cte9hxn] {
        margin-right: 15px;
        font-size: 14px;
    }

    .dropdown[b-pe4cte9hxn] {
        width: 70px;
    }
}

/* ==================== SMALL MOBILE (480px down) ==================== */

@media (max-width: 480px) {
    .content-wrap[b-pe4cte9hxn] {
        padding: 0 8px;
    }

    .aligned-breadcrumb[b-pe4cte9hxn] {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .header-bar[b-pe4cte9hxn] {
        margin-top: 5px;
        margin-bottom: 8px;
        gap: 6px;
    }

    .header-left[b-pe4cte9hxn] {
        gap: 6px;
    }

    .header-icon[b-pe4cte9hxn] {
        font-size: 20px;
        margin-right: 4px;
    }

    .header-title[b-pe4cte9hxn] {
        font-size: 14px;
    }

    .header-subtitle[b-pe4cte9hxn] {
        font-size: 11px;
    }

    .add-btn[b-pe4cte9hxn],
    .add-upa-btn[b-pe4cte9hxn],
    .add-file-btn[b-pe4cte9hxn] {
        padding: 6px 8px;
        font-size: 11px;
        margin-right: 0;
    }

    .main-grid .k-grid[b-pe4cte9hxn],
    .upa-grid-container .k-grid[b-pe4cte9hxn],
    .file-grid-container .k-grid[b-pe4cte9hxn] {
        font-size: 10px;
    }

    .k-column-title[b-pe4cte9hxn] {
        font-size: 9px;
        padding: 4px 2px;
    }

    .table tr td[b-pe4cte9hxn] {
        font-size: 10px;
        padding: 4px 4px;
    }

    .table tr th[b-pe4cte9hxn] {
        font-size: 9px;
        padding: 4px 4px;
    }

    .pagination-controls[b-pe4cte9hxn] {
        gap: 4px;
        margin-top: 10px;
    }

        .pagination-controls select[b-pe4cte9hxn] {
            font-size: 10px;
            padding: 4px 4px;
            min-width: 45px;
        }

    .total-amount[b-pe4cte9hxn] {
        margin-right: 10px;
        font-size: 12px;
    }

    .dropdown[b-pe4cte9hxn] {
        width: 60px;
    }

    .input-container:hover[b-pe4cte9hxn]:before {
        top: -12px;
        left: 5px;
        font-size: 11px;
    }
}

/* ==================== EXTREME SMALL (320px) ==================== */

@media (max-width: 320px) {
    .content-wrap[b-pe4cte9hxn] {
        padding: 0 4px;
    }

    .aligned-breadcrumb[b-pe4cte9hxn] {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .header-icon[b-pe4cte9hxn] {
        font-size: 16px;
        margin-right: 2px;
    }

    .header-title[b-pe4cte9hxn] {
        font-size: 12px;
    }

    .header-subtitle[b-pe4cte9hxn] {
        font-size: 10px;
    }

    .main-grid .k-grid[b-pe4cte9hxn],
    .upa-grid-container .k-grid[b-pe4cte9hxn],
    .file-grid-container .k-grid[b-pe4cte9hxn] {
        font-size: 9px;
    }

    .k-column-title[b-pe4cte9hxn] {
        font-size: 8px;
        padding: 2px 1px;
    }

    .table tr td[b-pe4cte9hxn] {
        font-size: 9px;
        padding: 2px 2px;
    }

    .table tr th[b-pe4cte9hxn] {
        font-size: 8px;
        padding: 2px 2px;
    }

    .add-btn[b-pe4cte9hxn],
    .add-upa-btn[b-pe4cte9hxn],
    .add-file-btn[b-pe4cte9hxn] {
        padding: 4px 6px;
        font-size: 9px;
        margin-right: 0;
    }

    .pagination-controls select[b-pe4cte9hxn] {
        font-size: 9px;
        padding: 2px 3px;
        min-width: 40px;
    }

    .total-amount[b-pe4cte9hxn] {
        margin-right: 5px;
        font-size: 10px;
    }

    .dropdown[b-pe4cte9hxn] {
        width: 50px;
        padding: 3px;
    }

    .input-container:hover[b-pe4cte9hxn]:before {
        top: -10px;
        left: 2px;
        font-size: 9px;
    }

    .processed-header-wrapper[b-pe4cte9hxn] {
        width: 95%;
        margin: 0 auto 20px auto;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 12px;
    }

    .processed-header-left[b-pe4cte9hxn] {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .processed-header-right[b-pe4cte9hxn] {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    /* Responsive stacking for smaller screens */
    @media (max-width: 768px) {
        .processed-header-wrapper[b-pe4cte9hxn] {
            flex-direction: column;
            align-items: stretch;
        }

        .processed-header-right[b-pe4cte9hxn] {
            justify-content: flex-start;
            margin-top: 10px;
        }
    }

}
/* /Pages/ManageUsers.razor.rz.scp.css */
/* ==================== PAGE CONTAINER STRUCTURE ==================== */

.page-container[b-pan6wxx8uw] {
    background-color: #f6f6f6;
    min-height: 100vh;
    padding: 2px 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.content-wrap[b-pan6wxx8uw] {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    overflow: visible;
}

/* ==================== BREADCRUMB ==================== */

.aligned-breadcrumb[b-pan6wxx8uw] {
    margin: 0 0 6px 0;
    padding: 10px 0;
    list-style: none;
    font-size: 15px;
    padding-left: 45px;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

    .aligned-breadcrumb li[b-pan6wxx8uw] {
        display: inline;
        padding-right: 5px;
    }

        .aligned-breadcrumb li a[b-pan6wxx8uw] {
            text-decoration: none;
            color: #D32F2F;
        }

        .aligned-breadcrumb li + li[b-pan6wxx8uw]::before {
            content: ">";
            margin: 0 5px;
        }

/* ==================== HEADER BAR ==================== */

.header-bar[b-pan6wxx8uw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 15px;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    min-width: 0;
}

.header-left[b-pan6wxx8uw] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
    overflow: hidden;
}

.header-text[b-pan6wxx8uw] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
}

.header-icon[b-pan6wxx8uw] {
    font-size: 36px;
    color: #002D62;
    margin-right: 10px;
    line-height: 1;
    font-weight: 300;
    flex-shrink: 0;
}

.header-title[b-pan6wxx8uw] {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-subtitle[b-pan6wxx8uw] {
    color: slategrey;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==================== BUTTONS ==================== */

.add-btn[b-pan6wxx8uw],
.add-upa-btn[b-pan6wxx8uw],
.add-file-btn[b-pan6wxx8uw] {
    background-color: #1e7c1f;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

    .add-btn:hover[b-pan6wxx8uw],
    .add-upa-btn:hover[b-pan6wxx8uw],
    .add-file-btn:hover[b-pan6wxx8uw] {
        background-color: #176b18;
    }

/* ==================== GRID CONTAINERS ==================== */

.main-grid[b-pan6wxx8uw],
.upa-grid-container[b-pan6wxx8uw],
.file-grid-container[b-pan6wxx8uw] {
    width: 100%;
    border-radius: 10px;
    padding: 10px 0;
    box-sizing: border-box;
    margin-top: 20px;
    overflow: visible;
}

    .main-grid .k-grid[b-pan6wxx8uw],
    .upa-grid-container .k-grid[b-pan6wxx8uw],
    .file-grid-container .k-grid[b-pan6wxx8uw] {
        width: 100% !important;
        border-radius: 10px;
        box-sizing: border-box;
        overflow: visible !important;
    }

.k-grid-container[b-pan6wxx8uw] {
    overflow: visible !important;
}

.k-grid-header[b-pan6wxx8uw],
.k-grid-header-wrap[b-pan6wxx8uw] {
    overflow: visible !important;
}

.k-grid-content[b-pan6wxx8uw],
.k-grid-content-locked[b-pan6wxx8uw] {
    overflow-x: auto !important;
    max-width: 100%;
}

/* ==================== PAGINATION CONTROLS ==================== */

.pagination-controls[b-pan6wxx8uw] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    width: 100%;
}

    .pagination-controls select[b-pan6wxx8uw] {
        border: 1px solid dimgrey;
        border-radius: 5px;
        font-size: 14px;
        padding: 6px 8px;
        min-width: 60px;
    }

/* ==================== FORM & INPUT ELEMENTS ==================== */

.dropdown[b-pan6wxx8uw] {
    width: 90px;
    padding: 5px;
}

.input-container[b-pan6wxx8uw] {
    position: relative;
    display: inline-block;
}

input:focus[b-pan6wxx8uw] {
    border-color: red;
    outline: none;
}

.tooltip[b-pan6wxx8uw] {
    position: absolute;
    text-decoration-color: red;
    font-size: 14px;
    z-index: 1;
}

.input-container:hover .tooltip[b-pan6wxx8uw] {
    display: block;
}

.input-container:hover[b-pan6wxx8uw]:before {
    content: "80 characters limit reached";
    position: absolute;
    color: red;
    top: -15px;
    left: 10px;
}

input:valid ~ .tooltip[b-pan6wxx8uw] {
    display: none;
}

/* ==================== CHECKBOX & VALIDATION ==================== */

.k-checkbox:checked[b-pan6wxx8uw] {
    border-color: #63686D !important;
    background-color: forestgreen !important;
}

/* ==================== PAYMENT & DISPLAY STYLES ==================== */

.total-amount[b-pan6wxx8uw] {
    margin-right: 30px;
    color: darkgreen;
    font-size: 16px;
    font-weight: 700;
}

.paymentSum[b-pan6wxx8uw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-amount[b-pan6wxx8uw] {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.spa[b-pan6wxx8uw] {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 14px;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* ==================== DESKTOP (1201px+) ==================== */

@media (min-width: 1201px) {
    .content-wrap[b-pan6wxx8uw] {
        padding: 0 30px;
    }
}

/* ==================== TABLET (1200px down) ==================== */

@media (max-width: 1200px) {
    .content-wrap[b-pan6wxx8uw] {
        padding: 0 20px;
    }

    .header-bar[b-pan6wxx8uw] {
        gap: 10px;
    }

    .header-icon[b-pan6wxx8uw] {
        font-size: 32px;
    }

    .header-title[b-pan6wxx8uw] {
        font-size: 20px;
    }

    .header-subtitle[b-pan6wxx8uw] {
        font-size: 14px;
    }

    .main-grid .k-grid[b-pan6wxx8uw],
    .upa-grid-container .k-grid[b-pan6wxx8uw],
    .file-grid-container .k-grid[b-pan6wxx8uw] {
        font-size: 13px;
    }

    .k-column-title[b-pan6wxx8uw] {
        font-size: 12px;
    }

    .table tr td[b-pan6wxx8uw] {
        font-size: 13px;
        padding: 8px 10px;
    }
}

/* ==================== MOBILE (1024px down) ==================== */

@media (max-width: 1024px) {
    .content-wrap[b-pan6wxx8uw] {
        padding: 0 15px;
    }

    .header-bar[b-pan6wxx8uw] {
        gap: 8px;
    }

    .header-left[b-pan6wxx8uw] {
        min-width: 150px;
    }

    .header-icon[b-pan6wxx8uw] {
        font-size: 28px;
        margin-right: 8px;
    }

    .header-title[b-pan6wxx8uw] {
        font-size: 18px;
    }

    .header-subtitle[b-pan6wxx8uw] {
        font-size: 13px;
    }

    .main-grid .k-grid[b-pan6wxx8uw],
    .upa-grid-container .k-grid[b-pan6wxx8uw],
    .file-grid-container .k-grid[b-pan6wxx8uw] {
        font-size: 12px;
    }

    .k-column-title[b-pan6wxx8uw] {
        font-size: 11px;
    }

    .table tr td[b-pan6wxx8uw] {
        font-size: 12px;
        padding: 8px 8px;
    }

    .table tr th[b-pan6wxx8uw] {
        font-size: 11px;
    }
}

/* ==================== TABLET (768px down) ==================== */

@media (max-width: 768px) {
    .page-container[b-pan6wxx8uw] {
        padding: 0;
    }

    .content-wrap[b-pan6wxx8uw] {
        padding: 0 12px;
    }

    .aligned-breadcrumb[b-pan6wxx8uw] {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .header-bar[b-pan6wxx8uw] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 8px;
        margin-bottom: 12px;
        width: 100%;
    }

    .header-left[b-pan6wxx8uw] {
        width: 100%;
        min-width: auto;
        gap: 8px;
    }

    .header-text[b-pan6wxx8uw] {
        min-width: 0;
    }

    .header-icon[b-pan6wxx8uw] {
        font-size: 24px;
        margin-right: 6px;
        flex-shrink: 0;
    }

    .header-title[b-pan6wxx8uw] {
        font-size: 16px;
    }

    .header-subtitle[b-pan6wxx8uw] {
        font-size: 12px;
    }

    .add-btn[b-pan6wxx8uw],
    .add-upa-btn[b-pan6wxx8uw],
    .add-file-btn[b-pan6wxx8uw] {
        width: 100%;
        padding: 10px 12px;
        font-size: 12px;
    }

    .main-grid[b-pan6wxx8uw] {
        margin-top: 15px;
    }

        .main-grid .k-grid[b-pan6wxx8uw],
        .upa-grid-container .k-grid[b-pan6wxx8uw],
        .file-grid-container .k-grid[b-pan6wxx8uw] {
            font-size: 11px;
            height: auto !important;
            width: 100% !important;
        }

    .k-column-title[b-pan6wxx8uw] {
        font-size: 10px;
    }

    .table tr td[b-pan6wxx8uw] {
        font-size: 11px;
        padding: 6px 6px;
    }

    .table tr th[b-pan6wxx8uw] {
        font-size: 10px;
        padding: 6px 6px;
    }

    .pagination-controls[b-pan6wxx8uw] {
        gap: 6px;
        margin-top: 12px;
    }

        .pagination-controls select[b-pan6wxx8uw] {
            font-size: 11px;
            padding: 5px 6px;
            min-width: 50px;
        }

    .total-amount[b-pan6wxx8uw] {
        margin-right: 15px;
        font-size: 14px;
    }

    .dropdown[b-pan6wxx8uw] {
        width: 70px;
    }
}

/* ==================== SMALL MOBILE (480px down) ==================== */

@media (max-width: 480px) {
    .content-wrap[b-pan6wxx8uw] {
        padding: 0 8px;
    }

    .aligned-breadcrumb[b-pan6wxx8uw] {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .header-bar[b-pan6wxx8uw] {
        margin-top: 5px;
        margin-bottom: 8px;
        gap: 6px;
    }

    .header-left[b-pan6wxx8uw] {
        gap: 6px;
    }

    .header-icon[b-pan6wxx8uw] {
        font-size: 20px;
        margin-right: 4px;
    }

    .header-title[b-pan6wxx8uw] {
        font-size: 14px;
    }

    .header-subtitle[b-pan6wxx8uw] {
        font-size: 11px;
    }

    .add-btn[b-pan6wxx8uw],
    .add-upa-btn[b-pan6wxx8uw],
    .add-file-btn[b-pan6wxx8uw] {
        padding: 6px 8px;
        font-size: 11px;
    }

    .main-grid .k-grid[b-pan6wxx8uw],
    .upa-grid-container .k-grid[b-pan6wxx8uw],
    .file-grid-container .k-grid[b-pan6wxx8uw] {
        font-size: 10px;
    }

    .k-column-title[b-pan6wxx8uw] {
        font-size: 9px;
        padding: 4px 2px;
    }

    .table tr td[b-pan6wxx8uw] {
        font-size: 10px;
        padding: 4px 4px;
    }

    .table tr th[b-pan6wxx8uw] {
        font-size: 9px;
        padding: 4px 4px;
    }

    .pagination-controls[b-pan6wxx8uw] {
        gap: 4px;
        margin-top: 10px;
    }

        .pagination-controls select[b-pan6wxx8uw] {
            font-size: 10px;
            padding: 4px 4px;
            min-width: 45px;
        }

    .total-amount[b-pan6wxx8uw] {
        margin-right: 10px;
        font-size: 12px;
    }

    .dropdown[b-pan6wxx8uw] {
        width: 60px;
    }

    .input-container:hover[b-pan6wxx8uw]:before {
        top: -12px;
        left: 5px;
        font-size: 11px;
    }
}

/* ==================== EXTREME SMALL (320px) ==================== */

@media (max-width: 320px) {
    .content-wrap[b-pan6wxx8uw] {
        padding: 0 4px;
    }

    .aligned-breadcrumb[b-pan6wxx8uw] {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .header-icon[b-pan6wxx8uw] {
        font-size: 16px;
        margin-right: 2px;
    }

    .header-title[b-pan6wxx8uw] {
        font-size: 12px;
    }

    .header-subtitle[b-pan6wxx8uw] {
        font-size: 10px;
    }

    .main-grid .k-grid[b-pan6wxx8uw],
    .upa-grid-container .k-grid[b-pan6wxx8uw],
    .file-grid-container .k-grid[b-pan6wxx8uw] {
        font-size: 9px;
    }

    .k-column-title[b-pan6wxx8uw] {
        font-size: 8px;
        padding: 2px 1px;
    }

    .table tr td[b-pan6wxx8uw] {
        font-size: 9px;
        padding: 2px 2px;
    }

    .table tr th[b-pan6wxx8uw] {
        font-size: 8px;
        padding: 2px 2px;
    }

    .add-btn[b-pan6wxx8uw],
    .add-upa-btn[b-pan6wxx8uw],
    .add-file-btn[b-pan6wxx8uw] {
        padding: 4px 6px;
        font-size: 9px;
    }

    .pagination-controls select[b-pan6wxx8uw] {
        font-size: 9px;
        padding: 2px 3px;
        min-width: 40px;
    }

    .total-amount[b-pan6wxx8uw] {
        margin-right: 5px;
        font-size: 10px;
    }

    .dropdown[b-pan6wxx8uw] {
        width: 50px;
        padding: 3px;
    }

    .input-container:hover[b-pan6wxx8uw]:before {
        top: -10px;
        left: 2px;
        font-size: 9px;
    }
}
/* /Pages/NewFiles.razor.rz.scp.css */
/* ==================== PAGE CONTAINER STRUCTURE ==================== */

.page-container[b-miuyekgvv8] {
    background-color: #f6f6f6;
    min-height: 100vh;
    padding: 2px 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.content-wrap[b-miuyekgvv8] {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    overflow: visible;
}

/* ==================== BREADCRUMB ==================== */

.aligned-breadcrumb[b-miuyekgvv8] {
    margin: 0 0 6px 0;
    padding: 10px 0;
    list-style: none;
    padding-left: 45px;
    font-size: 15px;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

    .aligned-breadcrumb li[b-miuyekgvv8] {
        display: inline;
        padding-right: 5px;
    }

        .aligned-breadcrumb li a[b-miuyekgvv8] {
            text-decoration: none;
            color: #D32F2F;
        }

        .aligned-breadcrumb li + li[b-miuyekgvv8]::before {
            content: ">";
            margin: 0 5px;
        }

/* ==================== HEADER BAR ==================== */

.header-bar[b-miuyekgvv8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 15px;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    min-width: 0;
}

.header-left[b-miuyekgvv8] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
    overflow: hidden;
}

.header-text[b-miuyekgvv8] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
}

.header-icon[b-miuyekgvv8] {
    font-size: 36px;
    color: #002D62;
    margin-right: 10px;
    line-height: 1;
    font-weight: 300;
    flex-shrink: 0;
}

.header-title[b-miuyekgvv8] {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-subtitle[b-miuyekgvv8] {
    color: slategrey;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==================== BUTTONS ==================== */

.add-btn[b-miuyekgvv8],
.add-upa-btn[b-miuyekgvv8],
.add-file-btn[b-miuyekgvv8] {
    background-color: #1e7c1f;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

    .add-btn:hover[b-miuyekgvv8],
    .add-upa-btn:hover[b-miuyekgvv8],
    .add-file-btn:hover[b-miuyekgvv8] {
        background-color: #176b18;
    }

/* ==================== GRID CONTAINERS ==================== */

.main-grid[b-miuyekgvv8],
.upa-grid-container[b-miuyekgvv8],
.file-grid-container[b-miuyekgvv8] {
    width: 100%;
    border-radius: 10px;
    padding: 10px 0;
    box-sizing: border-box;
    margin-top: 20px;
    overflow: visible;
}

    .main-grid .k-grid[b-miuyekgvv8],
    .upa-grid-container .k-grid[b-miuyekgvv8],
    .file-grid-container .k-grid[b-miuyekgvv8] {
        width: 100% !important;
        border-radius: 10px;
        box-sizing: border-box;
        overflow: visible !important;
    }

.k-grid-container[b-miuyekgvv8] {
    overflow: visible !important;
}

.k-grid-header[b-miuyekgvv8],
.k-grid-header-wrap[b-miuyekgvv8] {
    overflow: visible !important;
}

.k-grid-content[b-miuyekgvv8],
.k-grid-content-locked[b-miuyekgvv8] {
    overflow-x: auto !important;
    max-width: 100%;
}

/* ==================== PAGINATION CONTROLS ==================== */

.pagination-controls[b-miuyekgvv8] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    width: 100%;
}

    .pagination-controls select[b-miuyekgvv8] {
        border: 1px solid dimgrey;
        border-radius: 5px;
        font-size: 14px;
        padding: 6px 8px;
        min-width: 60px;
    }

/* ==================== FORM & INPUT ELEMENTS ==================== */

.dropdown[b-miuyekgvv8] {
    width: 90px;
    padding: 5px;
}

.input-container[b-miuyekgvv8] {
    position: relative;
    display: inline-block;
}

input:focus[b-miuyekgvv8] {
    border-color: red;
    outline: none;
}

.tooltip[b-miuyekgvv8] {
    position: absolute;
    text-decoration-color: red;
    font-size: 14px;
    z-index: 1;
}

.input-container:hover .tooltip[b-miuyekgvv8] {
    display: block;
}

.input-container:hover[b-miuyekgvv8]:before {
    content: "80 characters limit reached";
    position: absolute;
    color: red;
    top: -15px;
    left: 10px;
}

input:valid ~ .tooltip[b-miuyekgvv8] {
    display: none;
}

/* ==================== CHECKBOX & VALIDATION ==================== */

.k-checkbox:checked[b-miuyekgvv8] {
    border-color: #63686D !important;
    background-color: forestgreen !important;
}

/* ==================== PAYMENT & DISPLAY STYLES ==================== */

.total-amount[b-miuyekgvv8] {
    margin-right: 30px;
    color: darkgreen;
    font-size: 16px;
    font-weight: 700;
}

.paymentSum[b-miuyekgvv8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-amount[b-miuyekgvv8] {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.spa[b-miuyekgvv8] {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 14px;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* ==================== DESKTOP (1201px+) ==================== */

@media (min-width: 1201px) {
    .content-wrap[b-miuyekgvv8] {
        padding: 0 30px;
    }
}

/* ==================== TABLET (1200px down) ==================== */

@media (max-width: 1200px) {
    .content-wrap[b-miuyekgvv8] {
        padding: 0 20px;
    }

    .header-bar[b-miuyekgvv8] {
        gap: 10px;
    }

    .header-icon[b-miuyekgvv8] {
        font-size: 32px;
    }

    .header-title[b-miuyekgvv8] {
        font-size: 20px;
    }

    .header-subtitle[b-miuyekgvv8] {
        font-size: 14px;
    }

    .main-grid .k-grid[b-miuyekgvv8],
    .upa-grid-container .k-grid[b-miuyekgvv8],
    .file-grid-container .k-grid[b-miuyekgvv8] {
        font-size: 13px;
    }

    .k-column-title[b-miuyekgvv8] {
        font-size: 12px;
    }

    .table tr td[b-miuyekgvv8] {
        font-size: 13px;
        padding: 8px 10px;
    }
}

/* ==================== MOBILE (1024px down) ==================== */

@media (max-width: 1024px) {
    .content-wrap[b-miuyekgvv8] {
        padding: 0 15px;
    }

    .header-bar[b-miuyekgvv8] {
        gap: 8px;
    }

    .header-left[b-miuyekgvv8] {
        min-width: 150px;
    }

    .header-icon[b-miuyekgvv8] {
        font-size: 28px;
        margin-right: 8px;
    }

    .header-title[b-miuyekgvv8] {
        font-size: 18px;
    }

    .header-subtitle[b-miuyekgvv8] {
        font-size: 13px;
    }

    .main-grid .k-grid[b-miuyekgvv8],
    .upa-grid-container .k-grid[b-miuyekgvv8],
    .file-grid-container .k-grid[b-miuyekgvv8] {
        font-size: 12px;
    }

    .k-column-title[b-miuyekgvv8] {
        font-size: 11px;
    }

    .table tr td[b-miuyekgvv8] {
        font-size: 12px;
        padding: 8px 8px;
    }

    .table tr th[b-miuyekgvv8] {
        font-size: 11px;
    }
}

/* ==================== TABLET (768px down) ==================== */

@media (max-width: 768px) {
    .page-container[b-miuyekgvv8] {
        padding: 0;
    }

    .content-wrap[b-miuyekgvv8] {
        padding: 0 12px;
    }

    .aligned-breadcrumb[b-miuyekgvv8] {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .header-bar[b-miuyekgvv8] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 8px;
        margin-bottom: 12px;
        width: 100%;
    }

    .header-left[b-miuyekgvv8] {
        width: 100%;
        min-width: auto;
        gap: 8px;
    }

    .header-text[b-miuyekgvv8] {
        min-width: 0;
    }

    .header-icon[b-miuyekgvv8] {
        font-size: 24px;
        margin-right: 6px;
        flex-shrink: 0;
    }

    .header-title[b-miuyekgvv8] {
        font-size: 16px;
    }

    .header-subtitle[b-miuyekgvv8] {
        font-size: 12px;
    }

    .add-btn[b-miuyekgvv8],
    .add-upa-btn[b-miuyekgvv8],
    .add-file-btn[b-miuyekgvv8] {
        width: 100%;
        padding: 10px 12px;
        font-size: 12px;
    }

    .main-grid[b-miuyekgvv8] {
        margin-top: 15px;
    }

        .main-grid .k-grid[b-miuyekgvv8],
        .upa-grid-container .k-grid[b-miuyekgvv8],
        .file-grid-container .k-grid[b-miuyekgvv8] {
            font-size: 11px;
            height: auto !important;
            width: 100% !important;
        }

    .k-column-title[b-miuyekgvv8] {
        font-size: 10px;
    }

    .table tr td[b-miuyekgvv8] {
        font-size: 11px;
        padding: 6px 6px;
    }

    .table tr th[b-miuyekgvv8] {
        font-size: 10px;
        padding: 6px 6px;
    }

    .pagination-controls[b-miuyekgvv8] {
        gap: 6px;
        margin-top: 12px;
    }

        .pagination-controls select[b-miuyekgvv8] {
            font-size: 11px;
            padding: 5px 6px;
            min-width: 50px;
        }

    .total-amount[b-miuyekgvv8] {
        margin-right: 15px;
        font-size: 14px;
    }

    .dropdown[b-miuyekgvv8] {
        width: 70px;
    }
}

/* ==================== SMALL MOBILE (480px down) ==================== */

@media (max-width: 480px) {
    .content-wrap[b-miuyekgvv8] {
        padding: 0 8px;
    }

    .aligned-breadcrumb[b-miuyekgvv8] {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .header-bar[b-miuyekgvv8] {
        margin-top: 5px;
        margin-bottom: 8px;
        gap: 6px;
    }

    .header-left[b-miuyekgvv8] {
        gap: 6px;
    }

    .header-icon[b-miuyekgvv8] {
        font-size: 20px;
        margin-right: 4px;
    }

    .header-title[b-miuyekgvv8] {
        font-size: 14px;
    }

    .header-subtitle[b-miuyekgvv8] {
        font-size: 11px;
    }

    .add-btn[b-miuyekgvv8],
    .add-upa-btn[b-miuyekgvv8],
    .add-file-btn[b-miuyekgvv8] {
        padding: 6px 8px;
        font-size: 11px;
    }

    .main-grid .k-grid[b-miuyekgvv8],
    .upa-grid-container .k-grid[b-miuyekgvv8],
    .file-grid-container .k-grid[b-miuyekgvv8] {
        font-size: 10px;
    }

    .k-column-title[b-miuyekgvv8] {
        font-size: 9px;
        padding: 4px 2px;
    }

    .table tr td[b-miuyekgvv8] {
        font-size: 10px;
        padding: 4px 4px;
    }

    .table tr th[b-miuyekgvv8] {
        font-size: 9px;
        padding: 4px 4px;
    }

    .pagination-controls[b-miuyekgvv8] {
        gap: 4px;
        margin-top: 10px;
    }

        .pagination-controls select[b-miuyekgvv8] {
            font-size: 10px;
            padding: 4px 4px;
            min-width: 45px;
        }

    .total-amount[b-miuyekgvv8] {
        margin-right: 10px;
        font-size: 12px;
    }

    .dropdown[b-miuyekgvv8] {
        width: 60px;
    }

    .input-container:hover[b-miuyekgvv8]:before {
        top: -12px;
        left: 5px;
        font-size: 11px;
    }
}

/* ==================== EXTREME SMALL (320px) ==================== */

@media (max-width: 320px) {
    .content-wrap[b-miuyekgvv8] {
        padding: 0 4px;
    }

    .aligned-breadcrumb[b-miuyekgvv8] {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .header-icon[b-miuyekgvv8] {
        font-size: 16px;
        margin-right: 2px;
    }

    .header-title[b-miuyekgvv8] {
        font-size: 12px;
    }

    .header-subtitle[b-miuyekgvv8] {
        font-size: 10px;
    }

    .main-grid .k-grid[b-miuyekgvv8],
    .upa-grid-container .k-grid[b-miuyekgvv8],
    .file-grid-container .k-grid[b-miuyekgvv8] {
        font-size: 9px;
    }

    .k-column-title[b-miuyekgvv8] {
        font-size: 8px;
        padding: 2px 1px;
    }

    .table tr td[b-miuyekgvv8] {
        font-size: 9px;
        padding: 2px 2px;
    }

    .table tr th[b-miuyekgvv8] {
        font-size: 8px;
        padding: 2px 2px;
    }

    .add-btn[b-miuyekgvv8],
    .add-upa-btn[b-miuyekgvv8],
    .add-file-btn[b-miuyekgvv8] {
        padding: 4px 6px;
        font-size: 9px;
    }

    .pagination-controls select[b-miuyekgvv8] {
        font-size: 9px;
        padding: 2px 3px;
        min-width: 40px;
    }

    .total-amount[b-miuyekgvv8] {
        margin-right: 5px;
        font-size: 10px;
    }

    .dropdown[b-miuyekgvv8] {
        width: 50px;
        padding: 3px;
    }

    .input-container:hover[b-miuyekgvv8]:before {
        top: -10px;
        left: 2px;
        font-size: 9px;
    }
}
/* /Pages/Processed.razor.rz.scp.css */
/* ==================== PAGE CONTAINER STRUCTURE ==================== */

.page-container[b-vdf8ju8ivz] {
    background-color: #f6f6f6;
    min-height: 100vh;
    padding: 2px 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.content-wrap[b-vdf8ju8ivz] {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    overflow: visible;
}


.grid-header-bar[b-vdf8ju8ivz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 10px;
    gap: 20px;
}

.grid-header-left[b-vdf8ju8ivz] {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 250px;
    margin-left: 45px;
}

.header-icon[b-vdf8ju8ivz] {
    font-size: 36px;
    color: #4d8df6;
    flex-shrink: 0;
}

.header-text[b-vdf8ju8ivz] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-title[b-vdf8ju8ivz] {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.header-subtitle[b-vdf8ju8ivz] {
    font-size: 14px;
    font-weight: 400;
    color: slategrey;
    margin: 0;
}

.grid-header-right[b-vdf8ju8ivz] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-right: 50px;
}

.radio-toggle[b-vdf8ju8ivz] {
    display: flex;
    gap: 20px;
}

.radio-option[b-vdf8ju8ivz] {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .radio-option label[b-vdf8ju8ivz] {
        font-size: 14px;
        font-weight: 500;
        color: #333;
    }


/* ==================== BREADCRUMB ==================== */

.aligned-breadcrumb[b-vdf8ju8ivz] {
    margin: 0 0 6px 0;
    padding: 10px 0;
    list-style: none;
    padding-left: 45px;
    font-size: 15px;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

    .aligned-breadcrumb li[b-vdf8ju8ivz] {
        display: inline;
        padding-right: 5px;
    }

        .aligned-breadcrumb li a[b-vdf8ju8ivz] {
            text-decoration: none;
            color: #D32F2F;
        }

        .aligned-breadcrumb li + li[b-vdf8ju8ivz]::before {
            content: ">";
            margin: 0 5px;
        }

/* ==================== HEADER BAR ==================== */

.header-bar[b-vdf8ju8ivz] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 15px;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    min-width: 0;
}

.header-left[b-vdf8ju8ivz] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
    overflow: hidden;
}

.header-text[b-vdf8ju8ivz] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
}

.header-icon[b-vdf8ju8ivz] {
    font-size: 36px;
    color: #002D62;
    margin-right: 10px;
    line-height: 1;
    font-weight: 300;
    flex-shrink: 0;
}

.header-title[b-vdf8ju8ivz] {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-subtitle[b-vdf8ju8ivz] {
    color: slategrey;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==================== BUTTONS ==================== */

.add-btn[b-vdf8ju8ivz],
.add-upa-btn[b-vdf8ju8ivz],
.add-file-btn[b-vdf8ju8ivz] {
    background-color: #1e7c1f;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

    .add-btn:hover[b-vdf8ju8ivz],
    .add-upa-btn:hover[b-vdf8ju8ivz],
    .add-file-btn:hover[b-vdf8ju8ivz] {
        background-color: #176b18;
    }

/* ==================== GRID CONTAINERS ==================== */

.main-grid[b-vdf8ju8ivz],
.upa-grid-container[b-vdf8ju8ivz],
.file-grid-container[b-vdf8ju8ivz] {
    width: 100%;
    border-radius: 10px;
    padding: 10px 0;
    box-sizing: border-box;
    margin-top: 20px;
    overflow: visible;
}

    .main-grid .k-grid[b-vdf8ju8ivz],
    .upa-grid-container .k-grid[b-vdf8ju8ivz],
    .file-grid-container .k-grid[b-vdf8ju8ivz] {
        width: 100% !important;
        border-radius: 10px;
        box-sizing: border-box;
        overflow: visible !important;
    }

.k-grid-container[b-vdf8ju8ivz] {
    overflow: visible !important;
}

.k-grid-header[b-vdf8ju8ivz],
.k-grid-header-wrap[b-vdf8ju8ivz] {
    overflow: visible !important;
}

.k-grid-content[b-vdf8ju8ivz],
.k-grid-content-locked[b-vdf8ju8ivz] {
    overflow-x: auto !important;
    max-width: 100%;
}

/* ==================== PAGINATION CONTROLS ==================== */

.pagination-controls[b-vdf8ju8ivz] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    width: 100%;
}

    .pagination-controls select[b-vdf8ju8ivz] {
        border: 1px solid dimgrey;
        border-radius: 5px;
        font-size: 14px;
        padding: 6px 8px;
        min-width: 60px;
    }

/* ==================== FORM & INPUT ELEMENTS ==================== */

.dropdown[b-vdf8ju8ivz] {
    width: 90px;
    padding: 5px;
}

.input-container[b-vdf8ju8ivz] {
    position: relative;
    display: inline-block;
}

input:focus[b-vdf8ju8ivz] {
    border-color: red;
    outline: none;
}

.tooltip[b-vdf8ju8ivz] {
    position: absolute;
    text-decoration-color: red;
    font-size: 14px;
    z-index: 1;
}

.input-container:hover .tooltip[b-vdf8ju8ivz] {
    display: block;
}

.input-container:hover[b-vdf8ju8ivz]:before {
    content: "80 characters limit reached";
    position: absolute;
    color: red;
    top: -15px;
    left: 10px;
}

input:valid ~ .tooltip[b-vdf8ju8ivz] {
    display: none;
}

/* ==================== CHECKBOX & VALIDATION ==================== */

.k-checkbox:checked[b-vdf8ju8ivz] {
    border-color: #63686D !important;
    background-color: forestgreen !important;
}

/* ==================== PAYMENT & DISPLAY STYLES ==================== */

.total-amount[b-vdf8ju8ivz] {
    margin-right: 30px;
    color: darkgreen;
    font-size: 16px;
    font-weight: 700;
}

.paymentSum[b-vdf8ju8ivz] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-amount[b-vdf8ju8ivz] {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.spa[b-vdf8ju8ivz] {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 14px;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* ==================== DESKTOP (1201px+) ==================== */

@media (min-width: 1201px) {
    .content-wrap[b-vdf8ju8ivz] {
        padding: 0 30px;
    }
}

/* ==================== TABLET (1200px down) ==================== */

@media (max-width: 1200px) {
    .content-wrap[b-vdf8ju8ivz] {
        padding: 0 20px;
    }

    .header-bar[b-vdf8ju8ivz] {
        gap: 10px;
    }

    .header-icon[b-vdf8ju8ivz] {
        font-size: 32px;
    }

    .header-title[b-vdf8ju8ivz] {
        font-size: 20px;
    }

    .header-subtitle[b-vdf8ju8ivz] {
        font-size: 14px;
    }

    .main-grid .k-grid[b-vdf8ju8ivz],
    .upa-grid-container .k-grid[b-vdf8ju8ivz],
    .file-grid-container .k-grid[b-vdf8ju8ivz] {
        font-size: 13px;
    }

    .k-column-title[b-vdf8ju8ivz] {
        font-size: 12px;
    }

    .table tr td[b-vdf8ju8ivz] {
        font-size: 13px;
        padding: 8px 10px;
    }
}

/* ==================== MOBILE (1024px down) ==================== */

@media (max-width: 1024px) {
    .content-wrap[b-vdf8ju8ivz] {
        padding: 0 15px;
    }

    .header-bar[b-vdf8ju8ivz] {
        gap: 8px;
    }

    .header-left[b-vdf8ju8ivz] {
        min-width: 150px;
    }

    .header-icon[b-vdf8ju8ivz] {
        font-size: 28px;
        margin-right: 8px;
    }

    .header-title[b-vdf8ju8ivz] {
        font-size: 18px;
    }

    .header-subtitle[b-vdf8ju8ivz] {
        font-size: 13px;
    }

    .main-grid .k-grid[b-vdf8ju8ivz],
    .upa-grid-container .k-grid[b-vdf8ju8ivz],
    .file-grid-container .k-grid[b-vdf8ju8ivz] {
        font-size: 12px;
    }

    .k-column-title[b-vdf8ju8ivz] {
        font-size: 11px;
    }

    .table tr td[b-vdf8ju8ivz] {
        font-size: 12px;
        padding: 8px 8px;
    }

    .table tr th[b-vdf8ju8ivz] {
        font-size: 11px;
    }
}

/* ==================== TABLET (768px down) ==================== */

@media (max-width: 768px) {
    .page-container[b-vdf8ju8ivz] {
        padding: 0;
    }

    .content-wrap[b-vdf8ju8ivz] {
        padding: 0 12px;
    }

    .aligned-breadcrumb[b-vdf8ju8ivz] {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .header-bar[b-vdf8ju8ivz] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 8px;
        margin-bottom: 12px;
        width: 100%;
    }

    .header-left[b-vdf8ju8ivz] {
        width: 100%;
        min-width: auto;
        gap: 8px;
    }

    .header-text[b-vdf8ju8ivz] {
        min-width: 0;
    }

    .header-icon[b-vdf8ju8ivz] {
        font-size: 24px;
        margin-right: 6px;
        flex-shrink: 0;
    }

    .header-title[b-vdf8ju8ivz] {
        font-size: 16px;
    }

    .header-subtitle[b-vdf8ju8ivz] {
        font-size: 12px;
    }

    .add-btn[b-vdf8ju8ivz],
    .add-upa-btn[b-vdf8ju8ivz],
    .add-file-btn[b-vdf8ju8ivz] {
        width: 100%;
        padding: 10px 12px;
        font-size: 12px;
    }

    .main-grid[b-vdf8ju8ivz] {
        margin-top: 15px;
    }

        .main-grid .k-grid[b-vdf8ju8ivz],
        .upa-grid-container .k-grid[b-vdf8ju8ivz],
        .file-grid-container .k-grid[b-vdf8ju8ivz] {
            font-size: 11px;
            height: auto !important;
            width: 100% !important;
        }

    .k-column-title[b-vdf8ju8ivz] {
        font-size: 10px;
    }

    .table tr td[b-vdf8ju8ivz] {
        font-size: 11px;
        padding: 6px 6px;
    }

    .table tr th[b-vdf8ju8ivz] {
        font-size: 10px;
        padding: 6px 6px;
    }

    .pagination-controls[b-vdf8ju8ivz] {
        gap: 6px;
        margin-top: 12px;
    }

        .pagination-controls select[b-vdf8ju8ivz] {
            font-size: 11px;
            padding: 5px 6px;
            min-width: 50px;
        }

    .total-amount[b-vdf8ju8ivz] {
        margin-right: 15px;
        font-size: 14px;
    }

    .dropdown[b-vdf8ju8ivz] {
        width: 70px;
    }
}

/* ==================== SMALL MOBILE (480px down) ==================== */

@media (max-width: 480px) {
    .content-wrap[b-vdf8ju8ivz] {
        padding: 0 8px;
    }

    .aligned-breadcrumb[b-vdf8ju8ivz] {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .header-bar[b-vdf8ju8ivz] {
        margin-top: 5px;
        margin-bottom: 8px;
        gap: 6px;
    }

    .header-left[b-vdf8ju8ivz] {
        gap: 6px;
    }

    .header-icon[b-vdf8ju8ivz] {
        font-size: 20px;
        margin-right: 4px;
    }

    .header-title[b-vdf8ju8ivz] {
        font-size: 14px;
    }

    .header-subtitle[b-vdf8ju8ivz] {
        font-size: 11px;
    }

    .add-btn[b-vdf8ju8ivz],
    .add-upa-btn[b-vdf8ju8ivz],
    .add-file-btn[b-vdf8ju8ivz] {
        padding: 6px 8px;
        font-size: 11px;
    }

    .main-grid .k-grid[b-vdf8ju8ivz],
    .upa-grid-container .k-grid[b-vdf8ju8ivz],
    .file-grid-container .k-grid[b-vdf8ju8ivz] {
        font-size: 10px;
    }

    .k-column-title[b-vdf8ju8ivz] {
        font-size: 9px;
        padding: 4px 2px;
    }

    .table tr td[b-vdf8ju8ivz] {
        font-size: 10px;
        padding: 4px 4px;
    }

    .table tr th[b-vdf8ju8ivz] {
        font-size: 9px;
        padding: 4px 4px;
    }

    .pagination-controls[b-vdf8ju8ivz] {
        gap: 4px;
        margin-top: 10px;
    }

        .pagination-controls select[b-vdf8ju8ivz] {
            font-size: 10px;
            padding: 4px 4px;
            min-width: 45px;
        }

    .total-amount[b-vdf8ju8ivz] {
        margin-right: 10px;
        font-size: 12px;
    }

    .dropdown[b-vdf8ju8ivz] {
        width: 60px;
    }

    .input-container:hover[b-vdf8ju8ivz]:before {
        top: -12px;
        left: 5px;
        font-size: 11px;
    }
}

/* ==================== EXTREME SMALL (320px) ==================== */

@media (max-width: 320px) {
    .content-wrap[b-vdf8ju8ivz] {
        padding: 0 4px;
    }

    .aligned-breadcrumb[b-vdf8ju8ivz] {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .header-icon[b-vdf8ju8ivz] {
        font-size: 16px;
        margin-right: 2px;
    }

    .header-title[b-vdf8ju8ivz] {
        font-size: 12px;
    }

    .header-subtitle[b-vdf8ju8ivz] {
        font-size: 10px;
    }

    .main-grid .k-grid[b-vdf8ju8ivz],
    .upa-grid-container .k-grid[b-vdf8ju8ivz],
    .file-grid-container .k-grid[b-vdf8ju8ivz] {
        font-size: 9px;
    }

    .k-column-title[b-vdf8ju8ivz] {
        font-size: 8px;
        padding: 2px 1px;
    }

    .table tr td[b-vdf8ju8ivz] {
        font-size: 9px;
        padding: 2px 2px;
    }

    .table tr th[b-vdf8ju8ivz] {
        font-size: 8px;
        padding: 2px 2px;
    }

    .add-btn[b-vdf8ju8ivz],
    .add-upa-btn[b-vdf8ju8ivz],
    .add-file-btn[b-vdf8ju8ivz] {
        padding: 4px 6px;
        font-size: 9px;
    }

    .pagination-controls select[b-vdf8ju8ivz] {
        font-size: 9px;
        padding: 2px 3px;
        min-width: 40px;
    }

    .total-amount[b-vdf8ju8ivz] {
        margin-right: 5px;
        font-size: 10px;
    }

    .dropdown[b-vdf8ju8ivz] {
        width: 50px;
        padding: 3px;
    }

    .input-container:hover[b-vdf8ju8ivz]:before {
        top: -10px;
        left: 2px;
        font-size: 9px;
    }
}
@media (max-width: 768px) {
    .grid-header-bar[b-vdf8ju8ivz] {
        flex-direction: column;
        align-items: flex-start;
    }

    .grid-header-right[b-vdf8ju8ivz] {
        justify-content: flex-start;
    }

    .header-title[b-vdf8ju8ivz] {
        font-size: 18px;
    }

    .header-subtitle[b-vdf8ju8ivz] {
        font-size: 13px;
    }

    .radio-option label[b-vdf8ju8ivz] {
        font-size: 13px;
    }
}
/* /Pages/SentFiles.razor.rz.scp.css */
/* ==================== PAGE CONTAINER STRUCTURE ==================== */

.page-container[b-3acyyscv0g] {
    background-color: #f6f6f6;
    min-height: 100vh;
    padding: 2px 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.content-wrap[b-3acyyscv0g] {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    overflow: visible;
}

/* ==================== BREADCRUMB ==================== */

.aligned-breadcrumb[b-3acyyscv0g] {
    margin: 0 0 6px 0;
    padding: 10px 0;
    list-style: none;
    padding-left: 45px;
    font-size: 15px;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

    .aligned-breadcrumb li[b-3acyyscv0g] {
        display: inline;
        padding-right: 5px;
    }

        .aligned-breadcrumb li a[b-3acyyscv0g] {
            text-decoration: none;
            color: #D32F2F;
        }

        .aligned-breadcrumb li + li[b-3acyyscv0g]::before {
            content: ">";
            margin: 0 5px;
        }

/* ==================== HEADER BAR ==================== */

.header-bar[b-3acyyscv0g] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 15px;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    min-width: 0;
}

.header-left[b-3acyyscv0g] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
    overflow: hidden;
}

.header-text[b-3acyyscv0g] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
}

.header-icon[b-3acyyscv0g] {
    font-size: 36px;
    color: #002D62;
    margin-right: 10px;
    line-height: 1;
    font-weight: 300;
    flex-shrink: 0;
}

.header-title[b-3acyyscv0g] {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-subtitle[b-3acyyscv0g] {
    color: slategrey;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==================== BUTTONS ==================== */

.add-btn[b-3acyyscv0g],
.add-upa-btn[b-3acyyscv0g],
.add-file-btn[b-3acyyscv0g] {
    background-color: #1e7c1f;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

    .add-btn:hover[b-3acyyscv0g],
    .add-upa-btn:hover[b-3acyyscv0g],
    .add-file-btn:hover[b-3acyyscv0g] {
        background-color: #176b18;
    }

/* ==================== GRID CONTAINERS ==================== */

.main-grid[b-3acyyscv0g],
.upa-grid-container[b-3acyyscv0g],
.file-grid-container[b-3acyyscv0g] {
    width: 100%;
    border-radius: 10px;
    padding: 10px 0;
    box-sizing: border-box;
    margin-top: 20px;
    overflow: visible;
}

    .main-grid .k-grid[b-3acyyscv0g],
    .upa-grid-container .k-grid[b-3acyyscv0g],
    .file-grid-container .k-grid[b-3acyyscv0g] {
        width: 100% !important;
        border-radius: 10px;
        box-sizing: border-box;
        overflow: visible !important;
    }

.k-grid-container[b-3acyyscv0g] {
    overflow: visible !important;
}

.k-grid-header[b-3acyyscv0g],
.k-grid-header-wrap[b-3acyyscv0g] {
    overflow: visible !important;
}

.k-grid-content[b-3acyyscv0g],
.k-grid-content-locked[b-3acyyscv0g] {
    overflow-x: auto !important;
    max-width: 100%;
}

/* ==================== PAGINATION CONTROLS ==================== */

.pagination-controls[b-3acyyscv0g] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    width: 100%;
}

    .pagination-controls select[b-3acyyscv0g] {
        border: 1px solid dimgrey;
        border-radius: 5px;
        font-size: 14px;
        padding: 6px 8px;
        min-width: 60px;
    }

/* ==================== FORM & INPUT ELEMENTS ==================== */

.dropdown[b-3acyyscv0g] {
    width: 90px;
    padding: 5px;
}

.input-container[b-3acyyscv0g] {
    position: relative;
    display: inline-block;
}

input:focus[b-3acyyscv0g] {
    border-color: red;
    outline: none;
}

.tooltip[b-3acyyscv0g] {
    position: absolute;
    text-decoration-color: red;
    font-size: 14px;
    z-index: 1;
}

.input-container:hover .tooltip[b-3acyyscv0g] {
    display: block;
}

.input-container:hover[b-3acyyscv0g]:before {
    content: "80 characters limit reached";
    position: absolute;
    color: red;
    top: -15px;
    left: 10px;
}

input:valid ~ .tooltip[b-3acyyscv0g] {
    display: none;
}

/* ==================== CHECKBOX & VALIDATION ==================== */

.k-checkbox:checked[b-3acyyscv0g] {
    border-color: #63686D !important;
    background-color: forestgreen !important;
}

/* ==================== PAYMENT & DISPLAY STYLES ==================== */

.total-amount[b-3acyyscv0g] {
    margin-right: 30px;
    color: darkgreen;
    font-size: 16px;
    font-weight: 700;
}

.paymentSum[b-3acyyscv0g] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-amount[b-3acyyscv0g] {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.spa[b-3acyyscv0g] {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 14px;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* ==================== DESKTOP (1201px+) ==================== */

@media (min-width: 1201px) {
    .content-wrap[b-3acyyscv0g] {
        padding: 0 30px;
    }
}

/* ==================== TABLET (1200px down) ==================== */

@media (max-width: 1200px) {
    .content-wrap[b-3acyyscv0g] {
        padding: 0 20px;
    }

    .header-bar[b-3acyyscv0g] {
        gap: 10px;
    }

    .header-icon[b-3acyyscv0g] {
        font-size: 32px;
    }

    .header-title[b-3acyyscv0g] {
        font-size: 20px;
    }

    .header-subtitle[b-3acyyscv0g] {
        font-size: 14px;
    }

    .main-grid .k-grid[b-3acyyscv0g],
    .upa-grid-container .k-grid[b-3acyyscv0g],
    .file-grid-container .k-grid[b-3acyyscv0g] {
        font-size: 13px;
    }

    .k-column-title[b-3acyyscv0g] {
        font-size: 12px;
    }

    .table tr td[b-3acyyscv0g] {
        font-size: 13px;
        padding: 8px 10px;
    }
}

/* ==================== MOBILE (1024px down) ==================== */

@media (max-width: 1024px) {
    .content-wrap[b-3acyyscv0g] {
        padding: 0 15px;
    }

    .header-bar[b-3acyyscv0g] {
        gap: 8px;
    }

    .header-left[b-3acyyscv0g] {
        min-width: 150px;
    }

    .header-icon[b-3acyyscv0g] {
        font-size: 28px;
        margin-right: 8px;
    }

    .header-title[b-3acyyscv0g] {
        font-size: 18px;
    }

    .header-subtitle[b-3acyyscv0g] {
        font-size: 13px;
    }

    .main-grid .k-grid[b-3acyyscv0g],
    .upa-grid-container .k-grid[b-3acyyscv0g],
    .file-grid-container .k-grid[b-3acyyscv0g] {
        font-size: 12px;
    }

    .k-column-title[b-3acyyscv0g] {
        font-size: 11px;
    }

    .table tr td[b-3acyyscv0g] {
        font-size: 12px;
        padding: 8px 8px;
    }

    .table tr th[b-3acyyscv0g] {
        font-size: 11px;
    }
}

/* ==================== TABLET (768px down) ==================== */

@media (max-width: 768px) {
    .page-container[b-3acyyscv0g] {
        padding: 0;
    }

    .content-wrap[b-3acyyscv0g] {
        padding: 0 12px;
    }

    .aligned-breadcrumb[b-3acyyscv0g] {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .header-bar[b-3acyyscv0g] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 8px;
        margin-bottom: 12px;
        width: 100%;
    }

    .header-left[b-3acyyscv0g] {
        width: 100%;
        min-width: auto;
        gap: 8px;
    }

    .header-text[b-3acyyscv0g] {
        min-width: 0;
    }

    .header-icon[b-3acyyscv0g] {
        font-size: 24px;
        margin-right: 6px;
        flex-shrink: 0;
    }

    .header-title[b-3acyyscv0g] {
        font-size: 16px;
    }

    .header-subtitle[b-3acyyscv0g] {
        font-size: 12px;
    }

    .add-btn[b-3acyyscv0g],
    .add-upa-btn[b-3acyyscv0g],
    .add-file-btn[b-3acyyscv0g] {
        width: 100%;
        padding: 10px 12px;
        font-size: 12px;
    }

    .main-grid[b-3acyyscv0g] {
        margin-top: 15px;
    }

        .main-grid .k-grid[b-3acyyscv0g],
        .upa-grid-container .k-grid[b-3acyyscv0g],
        .file-grid-container .k-grid[b-3acyyscv0g] {
            font-size: 11px;
            height: auto !important;
            width: 100% !important;
        }

    .k-column-title[b-3acyyscv0g] {
        font-size: 10px;
    }

    .table tr td[b-3acyyscv0g] {
        font-size: 11px;
        padding: 6px 6px;
    }

    .table tr th[b-3acyyscv0g] {
        font-size: 10px;
        padding: 6px 6px;
    }

    .pagination-controls[b-3acyyscv0g] {
        gap: 6px;
        margin-top: 12px;
    }

        .pagination-controls select[b-3acyyscv0g] {
            font-size: 11px;
            padding: 5px 6px;
            min-width: 50px;
        }

    .total-amount[b-3acyyscv0g] {
        margin-right: 15px;
        font-size: 14px;
    }

    .dropdown[b-3acyyscv0g] {
        width: 70px;
    }
}

/* ==================== SMALL MOBILE (480px down) ==================== */

@media (max-width: 480px) {
    .content-wrap[b-3acyyscv0g] {
        padding: 0 8px;
    }

    .aligned-breadcrumb[b-3acyyscv0g] {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .header-bar[b-3acyyscv0g] {
        margin-top: 5px;
        margin-bottom: 8px;
        gap: 6px;
    }

    .header-left[b-3acyyscv0g] {
        gap: 6px;
    }

    .header-icon[b-3acyyscv0g] {
        font-size: 20px;
        margin-right: 4px;
    }

    .header-title[b-3acyyscv0g] {
        font-size: 14px;
    }

    .header-subtitle[b-3acyyscv0g] {
        font-size: 11px;
    }

    .add-btn[b-3acyyscv0g],
    .add-upa-btn[b-3acyyscv0g],
    .add-file-btn[b-3acyyscv0g] {
        padding: 6px 8px;
        font-size: 11px;
    }

    .main-grid .k-grid[b-3acyyscv0g],
    .upa-grid-container .k-grid[b-3acyyscv0g],
    .file-grid-container .k-grid[b-3acyyscv0g] {
        font-size: 10px;
    }

    .k-column-title[b-3acyyscv0g] {
        font-size: 9px;
        padding: 4px 2px;
    }

    .table tr td[b-3acyyscv0g] {
        font-size: 10px;
        padding: 4px 4px;
    }

    .table tr th[b-3acyyscv0g] {
        font-size: 9px;
        padding: 4px 4px;
    }

    .pagination-controls[b-3acyyscv0g] {
        gap: 4px;
        margin-top: 10px;
    }

        .pagination-controls select[b-3acyyscv0g] {
            font-size: 10px;
            padding: 4px 4px;
            min-width: 45px;
        }

    .total-amount[b-3acyyscv0g] {
        margin-right: 10px;
        font-size: 12px;
    }

    .dropdown[b-3acyyscv0g] {
        width: 60px;
    }

    .input-container:hover[b-3acyyscv0g]:before {
        top: -12px;
        left: 5px;
        font-size: 11px;
    }
}

/* ==================== EXTREME SMALL (320px) ==================== */

@media (max-width: 320px) {
    .content-wrap[b-3acyyscv0g] {
        padding: 0 4px;
    }

    .aligned-breadcrumb[b-3acyyscv0g] {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .header-icon[b-3acyyscv0g] {
        font-size: 16px;
        margin-right: 2px;
    }

    .header-title[b-3acyyscv0g] {
        font-size: 12px;
    }

    .header-subtitle[b-3acyyscv0g] {
        font-size: 10px;
    }

    .main-grid .k-grid[b-3acyyscv0g],
    .upa-grid-container .k-grid[b-3acyyscv0g],
    .file-grid-container .k-grid[b-3acyyscv0g] {
        font-size: 9px;
    }

    .k-column-title[b-3acyyscv0g] {
        font-size: 8px;
        padding: 2px 1px;
    }

    .table tr td[b-3acyyscv0g] {
        font-size: 9px;
        padding: 2px 2px;
    }

    .table tr th[b-3acyyscv0g] {
        font-size: 8px;
        padding: 2px 2px;
    }

    .add-btn[b-3acyyscv0g],
    .add-upa-btn[b-3acyyscv0g],
    .add-file-btn[b-3acyyscv0g] {
        padding: 4px 6px;
        font-size: 9px;
    }

    .pagination-controls select[b-3acyyscv0g] {
        font-size: 9px;
        padding: 2px 3px;
        min-width: 40px;
    }

    .total-amount[b-3acyyscv0g] {
        margin-right: 5px;
        font-size: 10px;
    }

    .dropdown[b-3acyyscv0g] {
        width: 50px;
        padding: 3px;
    }

    .input-container:hover[b-3acyyscv0g]:before {
        top: -10px;
        left: 2px;
        font-size: 9px;
    }
}
/* /Pages/XrefDelete.razor.rz.scp.css */
/* ========================================
   Responsive ImportFiles Page Styles
   ======================================== */

/* Base Container Styles */
.page-container[b-fxtn4id04x] {
    background-color: #f6f6f6;
    min-height: 100vh;
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.content-wrap[b-fxtn4id04x] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* General Row Styling */
.row[b-fxtn4id04x] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

/* Breadcrumb Navigation */
.breadcrumb-row[b-fxtn4id04x] {
    justify-content: flex-start;
    padding-left: 2rem; /* Adjust this value to move it closer to the center */
}

.aligned-breadcrumb[b-fxtn4id04x] {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    gap: 0.5rem;
}

    .aligned-breadcrumb li[b-fxtn4id04x] {
        display: inline-block;
    }

        .aligned-breadcrumb li:not(:last-child)[b-fxtn4id04x]::after {
            content: ">";
            margin-left: 0.5rem;
            color: green;
        }

    .aligned-breadcrumb a[b-fxtn4id04x] {
        color: red;
        text-decoration: none;
    }

        .aligned-breadcrumb a:hover[b-fxtn4id04x] {
            text-decoration: underline;
        }

/* Header Section */
.grid_alignment[b-fxtn4id04x] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .grid_alignment[b-fxtn4id04x] {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }
}

.grid_alignment h3[b-fxtn4id04x] {
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0;
    white-space: nowrap;
    text-align: left;
    color: #111827;
}

@media (max-width: 767px) {
    .grid_alignment h3[b-fxtn4id04x] {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .grid_alignment h3[b-fxtn4id04x] {
        font-size: 1.75rem;
    }
}

.grid_alignment span[b-fxtn4id04x] {
    font-weight: 700;
    color: #b91c1c;
    padding-top: 0.5rem;
    margin-left: auto;
    font-size: 0.875rem;
    text-align: right;
}

@media (max-width: 767px) {
    .grid_alignment span[b-fxtn4id04x] {
        font-size: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .grid_alignment span[b-fxtn4id04x] {
        font-size: 0.95rem;
    }
}

/* Second Row: Heading and Record Count */
.heading-row[b-fxtn4id04x] {
    justify-content: space-between;
    padding: 0 1rem; /* Add padding to move both sides toward the center */
}

.heading-left[b-fxtn4id04x] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem; /* Adjust this value to move the heading closer to the center */
}

.file-icon[b-fxtn4id04x] {
    font-size: 2rem;
}

.heading-text[b-fxtn4id04x] {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
}

.heading-right[b-fxtn4id04x] {
    text-align: right;
    margin-right: 1rem; /* Adjust this value to move the record count closer to the center */
}

.record-count[b-fxtn4id04x] {
    font-size: 0.875rem;
    font-weight: bold;
    color: #b91c1c;
}

/* Button Controls */
.flex.items-center.justify-between[b-fxtn4id04x] {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

@media (max-width: 640px) {
    .flex.items-center.justify-between[b-fxtn4id04x] {
        flex-direction: column;
        gap: 0.75rem;
    }
}

.btn[b-fxtn4id04x] {
    border-radius: 0.375rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    transition: all 0.15s ease-in-out;
}

@media (min-width: 768px) {
    .btn[b-fxtn4id04x] {
        padding: 0.5rem 1.5rem;
        font-size: 0.95rem;
    }
}

.btn-left[b-fxtn4id04x] {
    background-color: forestgreen;
    color: white;
    border: 2px solid forestgreen;
    margin-left: 1rem; /* Adjust this value to move the left button closer to the center */
}

    .btn-left:hover[b-fxtn4id04x] {
        background-color: #228B22;
    }

.btn-center[b-fxtn4id04x] {
    background-color: white;
    color: forestgreen;
    border: 2px solid forestgreen;
}

    .btn-center:hover[b-fxtn4id04x] {
        background-color: #f3f4f6;
    }

.btn-right[b-fxtn4id04x] {
    background-color: white;
    color: forestgreen;
    border: 2px solid forestgreen;
    margin-right: 1rem; /* Adjust this value to move the right button closer to the center */
}

    .btn-right.disabled[b-fxtn4id04x] {
        background-color: #d1d5db;
        color: #9ca3af;
        cursor: not-allowed;
    }

/* Upload Button */
label.cursor-pointer[b-fxtn4id04x] {
    background-color: forestgreen;
    color: white;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-align: center;
    transition: all 0.15s ease-in-out;
    flex: 0 1 auto;
    font-size: 0.875rem;
    display: inline-block;
}

@media (min-width: 768px) {
    label.cursor-pointer[b-fxtn4id04x] {
        padding: 0.5rem 1.5rem;
        font-size: 0.95rem;
    }
}

label.cursor-pointer:hover[b-fxtn4id04x] {
    background-color: #228B22;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Upload Area */
.drag-drop-area[b-fxtn4id04x] {
    border: 2px dashed forestgreen;
    background-color: #DAF2D0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
    margin-top: 1rem;
}

    .drag-drop-area:hover[b-fxtn4id04x] {
        background-color: #C8E6C2 !important;
        border-color: #228B22;
    }

.upload-icon i[b-fxtn4id04x] {
    font-size: 3rem;
    color: forestgreen;
}

@media (max-width: 640px) {
    .upload-icon i[b-fxtn4id04x] {
        font-size: 2rem;
    }
}

.drag-drop-area p[b-fxtn4id04x] {
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .drag-drop-area p[b-fxtn4id04x] {
        font-size: 0.875rem;
    }
}

/* Telerik Grid Customization */
.table.table-striped[b-fxtn4id04x] {
    width: 100%;
    overflow-x: auto;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .table.table-striped[b-fxtn4id04x] {
        font-size: 0.95rem;
    }
}

/* Pagination Controls */
.justify-center.items-center.text-center[b-fxtn4id04x] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
    flex-wrap: wrap;
}

@media (min-width: 640px) {
    .justify-center.items-center.text-center[b-fxtn4id04x] {
        flex-direction: row;
        gap: 0.5rem;
    }
}

.justify-center.items-center.text-center a[b-fxtn4id04x] {
    color: #708090;
    margin-right: 0.5rem;
}

.justify-center.items-center.text-center select[b-fxtn4id04x] {
    border: 1px solid #696969;
    border-radius: 5px;
    font-size: 14px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

@media (max-width: 640px) {
    .justify-center.items-center.text-center select[b-fxtn4id04x] {
        font-size: 16px;
        padding: 0.75rem 1rem;
    }
}

.justify-center.items-center.text-center select:focus[b-fxtn4id04x] {
    outline: none;
    border-color: forestgreen;
    box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
}

/* Button Row */
/*.button-row {
    justify-content: space-between;
    padding: 0 2rem;
}*/
.button-row[b-fxtn4id04x] {
    display: flex;
    justify-content: flex-start; 
    padding-left: 2rem;
    margin-top: 10px; 
    gap: 1rem; 
}

/* Upload File Button */
.upload-btn[b-fxtn4id04x] {
    background-color: forestgreen;
    color: white;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-align: center;
    transition: all 0.15s ease-in-out;
    font-size: 0.875rem;
    display: inline-block;
}

    .upload-btn:hover[b-fxtn4id04x] {
        background-color: #228B22;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
/* /Shared/LoadingPage.razor.rz.scp.css */
.page[b-p3p4wq6tsu] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.sidebar[b-p3p4wq6tsu] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

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

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

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

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

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-p3p4wq6tsu] {
        display: none;
    }

    .top-row.auth[b-p3p4wq6tsu] {
        justify-content: space-between;
    }

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

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

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

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

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

    .top-row[b-p3p4wq6tsu], article[b-p3p4wq6tsu] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-4tl7ukhi0q] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.a:hover[b-4tl7ukhi0q] {
    color: firebrick;
}

a:focus[b-4tl7ukhi0q] {
    color: firebrick;
}

a:active[b-4tl7ukhi0q] {
    color: firebrick;
}

.dropdown[b-4tl7ukhi0q] {
    position: relative;
    display: inline-block;
}

.dropdown-content[b-4tl7ukhi0q] {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1;
}



/*.dropdown:focus-within .dropdown-content {
    display: block;
}*/


.dropdown-item[b-4tl7ukhi0q] {
    color: #002D62;
    margin-left: -15px;
}

.dropdown:hover .dropdown-content[b-4tl7ukhi0q] {
    display: block;
    color: firebrick;
}

.dropdown-item:focus[b-4tl7ukhi0q] {
    color: firebrick !important;
}

.dropdown-item:hover[b-4tl7ukhi0q] {
    color: firebrick !important;
}

.dropdown-item:active[b-4tl7ukhi0q] {
    color: firebrick !important;
}

main[b-4tl7ukhi0q] {
    flex: 1;
}

.pages[b-4tl7ukhi0q] {
    color: #002D62;
    text-decoration: none;
}

    .pages:focus[b-4tl7ukhi0q] {
        color: #00BFFF;
    }

.login_1[b-4tl7ukhi0q] {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_2[b-4tl7ukhi0q] {
    padding-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.col-sm[b-4tl7ukhi0q] {
    justify-content: center;
    align-items: center;
    height: 200px;
}

.login_button[b-4tl7ukhi0q] {
    padding-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_image[b-4tl7ukhi0q] {
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_text[b-4tl7ukhi0q] {
    color: lightslategray;
    font-weight: 10;
    text-align: center;
}

.sidebar[b-4tl7ukhi0q] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

#click_login[b-4tl7ukhi0q] {
    background: #002D62;
}

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

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

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

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

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-4tl7ukhi0q] {
        display: none;
    }

    .top-row.auth[b-4tl7ukhi0q] {
        justify-content: space-between;
    }

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

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

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

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

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

    .top-row[b-4tl7ukhi0q], article[b-4tl7ukhi0q] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
/* /Shared/ReviewGrid.razor.rz.scp.css */
/* ==================== PAGE CONTAINER STRUCTURE ==================== */


.k-checkbox:checked[b-xa0a6s9h7t] {
    border-color: #63686D !important;
    background-color: forestgreen !important;
}

.k-pager-info[b-xa0a6s9h7t] {
    display: block !important;
}

.matched-status[b-xa0a6s9h7t] {
    color: forestgreen;
}

.no-match-status[b-xa0a6s9h7t] {
    color: #B91C1C;
}

.auto-match-status[b-xa0a6s9h7t] {
    color: #c17204;
}

.multiple-match-status[b-xa0a6s9h7t] {
    color: #B91C1C;
}

.page-container[b-xa0a6s9h7t] {
    background-color: #f6f6f6;
    min-height: 100vh;
    padding: 2px 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.content-wrap[b-xa0a6s9h7t] {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    overflow: visible;
}

/* ==================== BREADCRUMB ==================== */

.aligned-breadcrumb[b-xa0a6s9h7t] {
    margin: 0 0 6px 0;
    padding: 10px 0;
    list-style: none;
    font-size: 15px;
    padding-left: 45px;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

    .aligned-breadcrumb li[b-xa0a6s9h7t] {
        display: inline;
        padding-right: 5px;
    }

        .aligned-breadcrumb li a[b-xa0a6s9h7t] {
            text-decoration: none;
            color: #D32F2F;
        }

        .aligned-breadcrumb li + li[b-xa0a6s9h7t]::before {
            content: ">";
            margin: 0 5px;
        }

/* ==================== HEADER BAR ==================== */

.header-bar[b-xa0a6s9h7t] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 15px;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    min-width: 0;
}

.header-left[b-xa0a6s9h7t] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
    overflow: hidden;
}

.header-text[b-xa0a6s9h7t] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
}

.header-icon[b-xa0a6s9h7t] {
    font-size: 36px;
    color: #002D62;
    margin-right: 10px;
    line-height: 1;
    font-weight: 300;
    flex-shrink: 0;
}

.header-title[b-xa0a6s9h7t] {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-subtitle[b-xa0a6s9h7t] {
    color: slategrey;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==================== BUTTONS ==================== */

.add-btn[b-xa0a6s9h7t],
.add-upa-btn[b-xa0a6s9h7t],
.add-file-btn[b-xa0a6s9h7t] {
    background-color: #1e7c1f;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

    .add-btn:hover[b-xa0a6s9h7t],
    .add-upa-btn:hover[b-xa0a6s9h7t],
    .add-file-btn:hover[b-xa0a6s9h7t] {
        background-color: #176b18;
    }

/* ==================== GRID CONTAINERS ==================== */

.main-grid[b-xa0a6s9h7t],
.upa-grid-container[b-xa0a6s9h7t],
.file-grid-container[b-xa0a6s9h7t] {
    width: 100%;
    border-radius: 10px;
    padding: 10px 0;
    box-sizing: border-box;
    margin-top: 20px;
    overflow: visible;
}

    .main-grid .k-grid[b-xa0a6s9h7t],
    .upa-grid-container .k-grid[b-xa0a6s9h7t],
    .file-grid-container .k-grid[b-xa0a6s9h7t] {
        width: 100% !important;
        border-radius: 10px;
        box-sizing: border-box;
        overflow: visible !important;
    }

.k-grid-container[b-xa0a6s9h7t] {
    overflow: visible !important;
}

.k-grid-header[b-xa0a6s9h7t],
.k-grid-header-wrap[b-xa0a6s9h7t] {
    overflow: visible !important;
}

.k-grid-content[b-xa0a6s9h7t],
.k-grid-content-locked[b-xa0a6s9h7t] {
    overflow-x: auto !important;
    max-width: 100%;
}

/* ==================== PAGINATION CONTROLS ==================== */

.pagination-controls[b-xa0a6s9h7t] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    width: 100%;
}

    .pagination-controls select[b-xa0a6s9h7t] {
        border: 1px solid dimgrey;
        border-radius: 5px;
        font-size: 14px;
        padding: 6px 8px;
        min-width: 60px;
    }

/* ==================== FORM & INPUT ELEMENTS ==================== */

.dropdown[b-xa0a6s9h7t] {
    width: 90px;
    padding: 5px;
}

.input-container[b-xa0a6s9h7t] {
    position: relative;
    display: inline-block;
}

input:focus[b-xa0a6s9h7t] {
    border-color: red;
    outline: none;
}

.tooltip[b-xa0a6s9h7t] {
    position: absolute;
    text-decoration-color: red;
    font-size: 14px;
    z-index: 1;
}

.input-container:hover .tooltip[b-xa0a6s9h7t] {
    display: block;
}

.input-container:hover[b-xa0a6s9h7t]:before {
    content: "80 characters limit reached";
    position: absolute;
    color: red;
    top: -15px;
    left: 10px;
}

input:valid ~ .tooltip[b-xa0a6s9h7t] {
    display: none;
}

/* ==================== CHECKBOX & VALIDATION ==================== */

.k-checkbox:checked[b-xa0a6s9h7t] {
    border-color: #63686D !important;
    background-color: forestgreen !important;
}

/* ==================== PAYMENT & DISPLAY STYLES ==================== */

.total-amount[b-xa0a6s9h7t] {
    margin-right: 30px;
    color: darkgreen;
    font-size: 16px;
    font-weight: 700;
}

.paymentSum[b-xa0a6s9h7t] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-amount[b-xa0a6s9h7t] {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.spa[b-xa0a6s9h7t] {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 14px;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* ==================== DESKTOP (1201px+) ==================== */

@media (min-width: 1201px) {
    .content-wrap[b-xa0a6s9h7t] {
        padding: 0 30px;
    }
}

/* ==================== TABLET (1200px down) ==================== */

@media (max-width: 1200px) {
    .content-wrap[b-xa0a6s9h7t] {
        padding: 0 20px;
    }

    .header-bar[b-xa0a6s9h7t] {
        gap: 10px;
    }

    .header-icon[b-xa0a6s9h7t] {
        font-size: 32px;
    }

    .header-title[b-xa0a6s9h7t] {
        font-size: 20px;
    }

    .header-subtitle[b-xa0a6s9h7t] {
        font-size: 14px;
    }

    .main-grid .k-grid[b-xa0a6s9h7t],
    .upa-grid-container .k-grid[b-xa0a6s9h7t],
    .file-grid-container .k-grid[b-xa0a6s9h7t] {
        font-size: 13px;
    }

    .k-column-title[b-xa0a6s9h7t] {
        font-size: 12px;
    }

    .table tr td[b-xa0a6s9h7t] {
        font-size: 13px;
        padding: 8px 10px;
    }
}

/* ==================== MOBILE (1024px down) ==================== */

@media (max-width: 1024px) {
    .content-wrap[b-xa0a6s9h7t] {
        padding: 0 15px;
    }

    .header-bar[b-xa0a6s9h7t] {
        gap: 8px;
    }

    .header-left[b-xa0a6s9h7t] {
        min-width: 150px;
    }

    .header-icon[b-xa0a6s9h7t] {
        font-size: 28px;
        margin-right: 8px;
    }

    .header-title[b-xa0a6s9h7t] {
        font-size: 18px;
    }

    .header-subtitle[b-xa0a6s9h7t] {
        font-size: 13px;
    }

    .main-grid .k-grid[b-xa0a6s9h7t],
    .upa-grid-container .k-grid[b-xa0a6s9h7t],
    .file-grid-container .k-grid[b-xa0a6s9h7t] {
        font-size: 12px;
    }

    .k-column-title[b-xa0a6s9h7t] {
        font-size: 11px;
    }

    .table tr td[b-xa0a6s9h7t] {
        font-size: 12px;
        padding: 8px 8px;
    }

    .table tr th[b-xa0a6s9h7t] {
        font-size: 11px;
    }
}

/* ==================== TABLET (768px down) ==================== */

@media (max-width: 768px) {
    .page-container[b-xa0a6s9h7t] {
        padding: 0;
    }

    .content-wrap[b-xa0a6s9h7t] {
        padding: 0 12px;
    }

    .aligned-breadcrumb[b-xa0a6s9h7t] {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .header-bar[b-xa0a6s9h7t] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 8px;
        margin-bottom: 12px;
        width: 100%;
    }

    .header-left[b-xa0a6s9h7t] {
        width: 100%;
        min-width: auto;
        gap: 8px;
    }

    .header-text[b-xa0a6s9h7t] {
        min-width: 0;
    }

    .header-icon[b-xa0a6s9h7t] {
        font-size: 24px;
        margin-right: 6px;
        flex-shrink: 0;
    }

    .header-title[b-xa0a6s9h7t] {
        font-size: 16px;
    }

    .header-subtitle[b-xa0a6s9h7t] {
        font-size: 12px;
    }

    .add-btn[b-xa0a6s9h7t],
    .add-upa-btn[b-xa0a6s9h7t],
    .add-file-btn[b-xa0a6s9h7t] {
        width: 100%;
        padding: 10px 12px;
        font-size: 12px;
    }

    .main-grid[b-xa0a6s9h7t] {
        margin-top: 15px;
    }

        .main-grid .k-grid[b-xa0a6s9h7t],
        .upa-grid-container .k-grid[b-xa0a6s9h7t],
        .file-grid-container .k-grid[b-xa0a6s9h7t] {
            font-size: 11px;
            height: auto !important;
            width: 100% !important;
        }

    .k-column-title[b-xa0a6s9h7t] {
        font-size: 10px;
    }

    .table tr td[b-xa0a6s9h7t] {
        font-size: 11px;
        padding: 6px 6px;
    }

    .table tr th[b-xa0a6s9h7t] {
        font-size: 10px;
        padding: 6px 6px;
    }

    .pagination-controls[b-xa0a6s9h7t] {
        gap: 6px;
        margin-top: 12px;
    }

        .pagination-controls select[b-xa0a6s9h7t] {
            font-size: 11px;
            padding: 5px 6px;
            min-width: 50px;
        }

    .total-amount[b-xa0a6s9h7t] {
        margin-right: 15px;
        font-size: 14px;
    }

    .dropdown[b-xa0a6s9h7t] {
        width: 70px;
    }
}

/* ==================== SMALL MOBILE (480px down) ==================== */

@media (max-width: 480px) {
    .content-wrap[b-xa0a6s9h7t] {
        padding: 0 8px;
    }

    .aligned-breadcrumb[b-xa0a6s9h7t] {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .header-bar[b-xa0a6s9h7t] {
        margin-top: 5px;
        margin-bottom: 8px;
        gap: 6px;
    }

    .header-left[b-xa0a6s9h7t] {
        gap: 6px;
    }

    .header-icon[b-xa0a6s9h7t] {
        font-size: 20px;
        margin-right: 4px;
    }

    .header-title[b-xa0a6s9h7t] {
        font-size: 14px;
    }

    .header-subtitle[b-xa0a6s9h7t] {
        font-size: 11px;
    }

    .add-btn[b-xa0a6s9h7t],
    .add-upa-btn[b-xa0a6s9h7t],
    .add-file-btn[b-xa0a6s9h7t] {
        padding: 6px 8px;
        font-size: 11px;
    }

    .main-grid .k-grid[b-xa0a6s9h7t],
    .upa-grid-container .k-grid[b-xa0a6s9h7t],
    .file-grid-container .k-grid[b-xa0a6s9h7t] {
        font-size: 10px;
    }

    .k-column-title[b-xa0a6s9h7t] {
        font-size: 9px;
        padding: 4px 2px;
    }

    .table tr td[b-xa0a6s9h7t] {
        font-size: 10px;
        padding: 4px 4px;
    }

    .table tr th[b-xa0a6s9h7t] {
        font-size: 9px;
        padding: 4px 4px;
    }

    .pagination-controls[b-xa0a6s9h7t] {
        gap: 4px;
        margin-top: 10px;
    }

        .pagination-controls select[b-xa0a6s9h7t] {
            font-size: 10px;
            padding: 4px 4px;
            min-width: 45px;
        }

    .total-amount[b-xa0a6s9h7t] {
        margin-right: 10px;
        font-size: 12px;
    }

    .dropdown[b-xa0a6s9h7t] {
        width: 60px;
    }

    .input-container:hover[b-xa0a6s9h7t]:before {
        top: -12px;
        left: 5px;
        font-size: 11px;
    }
}

/* ==================== EXTREME SMALL (320px) ==================== */

@media (max-width: 320px) {
    .content-wrap[b-xa0a6s9h7t] {
        padding: 0 4px;
    }

    .aligned-breadcrumb[b-xa0a6s9h7t] {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .header-icon[b-xa0a6s9h7t] {
        font-size: 16px;
        margin-right: 2px;
    }

    .header-title[b-xa0a6s9h7t] {
        font-size: 12px;
    }

    .header-subtitle[b-xa0a6s9h7t] {
        font-size: 10px;
    }

    .main-grid .k-grid[b-xa0a6s9h7t],
    .upa-grid-container .k-grid[b-xa0a6s9h7t],
    .file-grid-container .k-grid[b-xa0a6s9h7t] {
        font-size: 9px;
    }

    .k-column-title[b-xa0a6s9h7t] {
        font-size: 8px;
        padding: 2px 1px;
    }

    .table tr td[b-xa0a6s9h7t] {
        font-size: 9px;
        padding: 2px 2px;
    }

    .table tr th[b-xa0a6s9h7t] {
        font-size: 8px;
        padding: 2px 2px;
    }

    .add-btn[b-xa0a6s9h7t],
    .add-upa-btn[b-xa0a6s9h7t],
    .add-file-btn[b-xa0a6s9h7t] {
        padding: 4px 6px;
        font-size: 9px;
    }

    .pagination-controls select[b-xa0a6s9h7t] {
        font-size: 9px;
        padding: 2px 3px;
        min-width: 40px;
    }

    .total-amount[b-xa0a6s9h7t] {
        margin-right: 5px;
        font-size: 10px;
    }

    .dropdown[b-xa0a6s9h7t] {
        width: 50px;
        padding: 3px;
    }

    .input-container:hover[b-xa0a6s9h7t]:before {
        top: -10px;
        left: 2px;
        font-size: 9px;
    }
}
