﻿:root {
    --grid-row-height: 35px; /* Default row height */
    --grid-row-font-size: 15px; /* Default font size */
}

.pill {
    height: fit-content;
    padding: 10px;
    background: GhostWhite;
    /*border-radius: 40px 999em 999em 40px;*/
    border-radius: 0 20px 20px 0;
    margin-bottom: 3px;
}

.pillInError {
    height: fit-content;
    padding: 10px;
    background: GhostWhite;
    /*border-radius: 40px 999em 999em 40px;*/
    border-radius: 0 20px 20px 0;
    margin-bottom: 3px;
    border-left: 5px solid #ff0000 !important
}

.QCQuestionGroupFlex {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}


.tgl {
    display: none;
}

    .tgl, .tgl:after, .tgl:before, .tgl *, .tgl *:after, .tgl *:before, .tgl + .tgl-btn {
        box-sizing: border-box;
    }

        .tgl::-moz-selection, .tgl:after::-moz-selection, .tgl:before::-moz-selection, .tgl *::-moz-selection, .tgl *:after::-moz-selection, .tgl *:before::-moz-selection, .tgl + .tgl-btn::-moz-selection {
            background: none;
        }

        .tgl::selection, .tgl:after::selection, .tgl:before::selection, .tgl *::selection, .tgl *:after::selection, .tgl *:before::selection, .tgl + .tgl-btn::selection {
            background: none;
        }

        .tgl + .tgl-btn {
            outline: 0;
            display: block;
            width: 4em;
            height: 2em;
            position: relative;
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

            .tgl + .tgl-btn:after, .tgl + .tgl-btn:before {
                position: relative;
                display: block;
                content: "";
                width: 50%;
                height: 100%;
            }

            .tgl + .tgl-btn:after {
                left: 0;
            }

            .tgl + .tgl-btn:before {
                display: none;
            }

        .tgl:checked + .tgl-btn:after {
            left: 50%;
        }


.tgl-flip + .tgl-btn {
    padding: 2px;
    transition: all 0.2s ease;
    font-family: sans-serif;
    perspective: 100px;
}

    .tgl-flip + .tgl-btn:after, .tgl-flip + .tgl-btn:before {
        display: inline-block;
        transition: all 0.4s ease;
        width: 100%;
        text-align: center;
        position: absolute;
        line-height: 2em;
        font-weight: bold;
        color: #fff;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        border-radius: 4px;
    }

    .tgl-flip + .tgl-btn:after {
        content: attr(data-tg-on);
        background: #02C66F;
        transform: rotateY(-180deg);
    }

    .tgl-flip + .tgl-btn:before {
        background: #FF3A19;
        content: attr(data-tg-off);
    }

    .tgl-flip + .tgl-btn:active:before {
        transform: rotateY(-20deg);
    }

.tgl-flip:checked + .tgl-btn:before {
    transform: rotateY(180deg);
}

.tgl-flip:checked + .tgl-btn:after {
    transform: rotateY(0);
    left: 0;
    background: #7FC6A6;
}

.tgl-flip:checked + .tgl-btn:active:after {
    transform: rotateY(20deg);
}


.glowing-border {
    border: 3px solid #dadada;
    border-radius: 7px;
    outline: none;
    border-color: #9ecaed;
    box-shadow: 0px 0px 10px #9ecaed;
}

.signature-pad-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 400px;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0;
    padding: 32px 16px;
    font-family: Helvetica, Sans-Serif;
}


.signature-pad {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 10px;
    width: 100%;
    height: 100%;
    max-width: 650px;
    max-height: 400px;
    border: 1px solid #e8e8e8;
    background-color: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.08) inset;
    border-radius: 4px;
    padding: 16px;
}

    .signature-pad::before,
    .signature-pad::after {
        position: absolute;
        z-index: -1;
        content: "";
        width: 40%;
        height: 10px;
        bottom: 10px;
        background: transparent;
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
    }

    .signature-pad::before {
        left: 20px;
        -webkit-transform: skew(-3deg) rotate(-3deg);
        transform: skew(-3deg) rotate(-3deg);
    }

    .signature-pad::after {
        right: 20px;
        -webkit-transform: skew(3deg) rotate(3deg);
        transform: skew(3deg) rotate(3deg);
    }

.signature-pad--body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: 1px solid #f4f4f4;
}

    .signature-pad--body
    canvas {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 4px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.02) inset;
    }

.signature-pad--footer {
    color: #C3C3C3;
    text-align: center;
    font-size: 1.2em;
    margin-top: 8px;
}

.signature-pad--actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 8px;
}


@media (max-width: 640.98px) {
    .signature-pad-body-responsive {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        height: 100vh;
        width: 100%;
        padding: 0;
        position: fixed;
        top: 0;
        left: 0;
    }

    .signature-pad {
        padding: 0;
        max-height: 100%;
    }

    .btn-responsive {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .signature-pad--footer-responsive {
        height: 90px;
        padding: 16px;
    }

    .signature-pad--actions-responsive {
        position: fixed;
        bottom: 32px;
    }

    .description-responsive {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        position: fixed;
        bottom: 39px;
        right: 65px;
        width: 62px;
        height: 24px;
    }
}


@media (max-height: 640.98px) {
    .signature-pad-body-responsive {
        height: 100vh;
        width: 100vw;
        padding: 0;
        position: fixed;
        top: 0;
        left: 0;
    }

    .signature-pad {
        padding: 0;
        max-height: 100%;
    }
}

.NFCLogo {
    background-image: url(images/nfctagicon.png);
}


.button-label {
    display: inline-flex; /* Use flexbox for centering */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */

    color: #fff; /* Text color */
    border: 1px solid #007bff; /* Border color */
    cursor: pointer;
    border-radius: 4px; /* Adjust for rounded corners */

    min-height: 50px;
    min-width: 150px;
    background-color: #2196f3;
    transition: background-color 0.3s, color 0.3s; /* Transition for hover effect */
        /* Hover effect */
        &:hover {
            background-color: #007bff;
            color: #fff;
        }

        /* Click effect */
        &:active {
            background-color: #0056b3;
        }
}

.button-label-actioned {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid #4caf50; /* Border color for the new button */
    cursor: pointer;
    border-radius: 4px;
    min-height: 50px;
    min-width: 150px;
    background-color: #4caf50; /* Base background color for the new button */

    transition: background-color 0.3s, color 0.3s; /* Transition for hover effect */
    /* Hover effect for the new button */
    &:hover {
        background-color: #388e3c; /* New background color on hover */
        color: #fff;
    }

    /* Click effect for the new button */
    &:active {
        background-color: #357a38; /* New background color on click */
    }
}

.LabelStatement {
    display: inline-block;
    width: 100%;
    color: red !important;
}

.WoodstarToggleWrapper {
    /* Additional wrapper style if necessary */
}

.WoodstarToggle {
    position: relative;
    display: inline-block;
    width: 60px; /* Width of the toggle */
    height: 34px; /* Height of the toggle */
    min-width: 60px; /* Minimum width to prevent shrinking */
    min-height: 34px; /* Minimum height to prevent shrinking */
}

    .WoodstarToggle input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .WoodstarToggle .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        transition: .4s;
        border-radius: 34px;
    }

        .WoodstarToggle .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    /* Adjust this if the slider is out of bounds */
    transform: translateX(26px); /* Adjust this value */
}

/* Optional: sizes for the toggle */
.WoodstarToggle--small .slider {
    width: 40px;
    height: 20px;
}

    .WoodstarToggle--small .slider:before {
        height: 18px;
        width: 18px;
    }

/* Optional: colors for the toggle */
.WoodstarToggle--color-green .slider {
    background-color: #ccc;
}

.WoodstarToggle--color-green input:checked + .slider {
    background-color: #8bc34a;
}

.WoodstarToggleWrapper:not(.is-disabled) .RadzenLabel,
.WoodstarToggleWrapper:not(.is-disabled) .slider {
    cursor: pointer;
}

.WoodstarToggleWrapper.is-disabled .RadzenLabel,
.WoodstarToggleWrapper.is-disabled .slider {
    cursor: default;
}

@media (max-width: 480px) {
    .WoodstarToggle {
        width: 50px; /* Smaller width for smaller screens */
        height: 28px; /* Smaller height for smaller screens */
        min-width: 50px; /* Minimum width on smaller screens */
        min-height: 28px; /* Minimum height on smaller screens */
    }

        .WoodstarToggle .slider:before {
            /* Adjust the size of the slider knob for smaller screens */
            height: 22px;
            width: 22px;
        }

    input:checked + .slider:before {
        /* Adjust the translateX for the new size so it doesn't go out of bounds */
        transform: translateX(22px);
    }
}

.visually-hidden-ecore {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}


.woodstar-grid td {
    padding: 8px 8px; /* Adjust the padding as needed */
}

.woodstar-grid tr {
    height: 40px; 
}

.woodstar-grid-row {
    /* Basic row styling; you could include non-pointer cursor styling here if needed */
}

.woodstar-grid-row-pointer {
    cursor: pointer; /* Applied only when selection is enabled */
}


.woodstar-grid-row.selected {
    background-color: blue; /* Or any other color you prefer */
    color: white; /* Adjust text color for better visibility */
    /* Add any other styles you wish to apply to selected rows */
}

.woodstar-grid th {
    font-weight: bold; /* Makes the text bold */
    text-decoration: underline; /* Underlines the text */
}

.woodstar-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--rz-primary); /* Default state */
    color: white; /* Adjust text color as needed */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 8px;
    padding-left: 15px;
    padding-right: 15px;
    text-decoration: none; /* Removes underline from icons if used as a link */
    transition: background-image 0.3s, box-shadow 0.3s; /* Smooth transition for hover and focus states */
    font-size: 0.875rem;
    font-weight: 600;
}

    .woodstar-button:hover:not(:active) {
        background-image: var(--rz-button-hover-gradient);
        background-size: var(--rz-button-hover-background-size);
        box-shadow: var(--rz-button-hover-shadow);
    }

    .woodstar-button:focus-visible:not(:active) {
        background-image: var(--rz-button-focus-gradient);
        background-size: var(--rz-button-focus-background-size);
        box-shadow: var(--rz-button-focus-shadow);
        outline: var(--rz-button-focus-outline);
        outline-offset: var(--rz-button-focus-outline-offset);
    }

    .woodstar-button:active {
        background-color: var(--rz-primary-darker); /* Adjust var for darker version */
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); /* Example for a deeper shadow */
    }

    .woodstar-button:disabled {
        opacity: 0.2;
        cursor: initial;
        pointer-events: none;
    }

.text-variant {
    background-color: transparent !important;
    box-shadow: none;
    color: var(--rz-primary);
    padding: 0.25rem;
}

.text-variant:hover {
    background-color: rgba(255, 109, 65, 0.16) !important;
}

.woodstar-button .material-icons {
    font-size: 1.25rem; /* Icon size, adjust as needed */
    margin-right: 3px;
}

.material-icons {
    font-family: 'Material Symbols' !important;
}

.woodstar-button-secondary {
    background-color: var(--rz-secondary); /* Replace with your secondary color variable */
}

    .woodstar-button-secondary:focus-visible:not(:active) {
        background-image: var(--rz-button-secondary-focus-gradient);
    }

    .woodstar-button-secondary:active {
        background-color: var(--rz-secondary-darker); /* Adjust var for darker version */
    }

    .woodstar-button-secondary.text-variant {
        color: var(--rz-secondary) !important;
    }

.woodstar-button-success {
    background-color: var(--rz-success); /* Replace with your success color variable */
}

    .woodstar-button-success:focus-visible:not(:active) {
        background-image: var(--rz-button-success-focus-gradient);
    }

    .woodstar-button-success:active {
        background-color: var(--rz-success-darker); /* Adjust var for darker version */
    }

    .woodstar-button-success.text-variant {
        color: var(--rz-success) !important;
    }

.woodstar-button-fail {
    background-color: var(--rz-danger); /* Replace with your danger color variable */
}

    .woodstar-button-fail:focus-visible:not(:active) {
        background-image: var(--rz-button-danger-focus-gradient);
    }

    .woodstar-button-fail:active {
        background-color: var(--rz-danger-darker); /* Adjust var for darker version */
    }

    .woodstar-button-fail.text-variant {
        color: var(--rz-danger) !important;
    }

.woodstar-button-info {
    background-color: var(--rz-info); /* Replace with your secondary color variable */
}

    .woodstar-button-info:focus-visible:not(:active) {
        background-image: var(--rz-button-info-focus-gradient);
    }

    .woodstar-button-info:active {
        background-color: var(--rz-info-darker); /* Adjust var for darker version */
    }

    .woodstar-button-info.text-variant {
        color: var(--rz-info) !important;
    }

.woodstar-button-light {
    background-color: var(--rz-base-700); /* Replace with your secondary color variable */
}

    .woodstar-button-light:active {
        background-color: var(--rz-light-darker); /* Adjust var for darker version */
    }

    .woodstar-button-light.text-variant {
        color: var(--rz-base-700) !important;
    }

/* -----------------------------------------
   WoodstarFlexiGrid SINGLE-CONTAINER CSS
   ----------------------------------------- */

.WSFG-group-header {
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc; /*Don't need border-bottom as it connects to grid container*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    background-color: #f3f3f3;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Outer Container: scrolls BOTH ways */
.WSFG-grid-container {
    position: relative;
    overflow: auto; /* Both horizontal & vertical scroll in one container */
    height: 600px; /* Or use your @GridMaxHeightPx via inline style if you prefer */
    border: 1px solid #ccc;
    font-family: Arial, sans-serif;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: grid;
    align-content: baseline;
}

.no-group-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Header Row (sticky) */
.WSFG-header-row {
    display: flex;
    flex-wrap: nowrap;
    font-weight: bold;
    background-color: #f3f3f3;
    border-bottom: 1px solid #ccc;
    position: sticky;
    top: 0;
    z-index: 3;
    min-width: max-content; /* Ensures columns line up if wide */
    height: 37px;
}

/* Header Cells */
.WSFG-header-cell {
    padding: 8px;
    border-right: 1px solid #ccc;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    background-color: #f3f3f3;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

    .WSFG-header-cell:hover {
        background-color: #e0e0e0;
    }

    .WSFG-header-cell:last-child {
        border-right: 0;
    }

.WSFG-resize-handle {
    width: 6px;
    height: 100%;
    cursor: col-resize;
    position: absolute;
    right: 0;
    top: 0;
    background-color: transparent; /* Make it invisible by default */
}

    .WSFG-resize-handle:hover {
        background-color: #ccc; /* Show it on hover */
    }

.WSFG-filter-container {
    position: relative;
}

/* Filter Row (sticky, below header) */
.WSFG-filter-row {
    display: flex;
    flex-wrap: nowrap;
    background-color: #fafafa;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 37px; /* same as header row height */
    z-index: 2;
    min-width: max-content;
}

.WSFG-filter-cell {
    flex-shrink: 0;
    padding: 4px 8px;
    border-right: 1px solid #ddd;
    white-space: nowrap;
    flex-grow: 1;
}
    .WSFG-filter-cell:last-child {
        border-right: 0;
    }

    .WSFG-filter-cell input {
        width: Calc(100% - 24px);
        padding: 4px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

/* Body Rows */
.WSFG-body-row {
    display: flex;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    height: var(--grid-row-height); /* Must match Virtualize's ItemSize */
    font-size: var(--grid-row-font-size);
}

    .WSFG-body-row:nth-child(odd) {
        background-color: #f3f6f9;
    }

    .WSFG-body-row:hover {
        background-color: var(--rz-secondary-lighter);
    }

    .WSFG-body-row.noHover {
        pointer-events: none;
    }

/* Body Cells */
.WSFG-body-cell {
    flex-shrink: 0;
    padding: 8px;
    border-right: 1px solid #ccc;
    white-space: nowrap;
    overflow: hidden; /* Prevents content overflow */
    text-overflow: ellipsis; /* Show "..." if text is too long */
    flex-grow: 1;
}
    
    .WSFG-body-cell:last-child {
        border-right: 0;
    }

/* Selected Row */
.WSFG-selected-row {
    background-color: var(--rz-secondary) !important;
    color: white;
    /* z-index: 1 if needed, but usually not critical here */
}

.WSFG-filter-popup {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    height: auto;
    width: 250px;
    overflow-y: auto;
    z-index: 10;
    background-color: var(--rz-grid-filter-buttons-background-color);
    right: -5px;
    top: 35px;
}

.WSFG-footer-row {
    display: flex;
    flex-wrap: nowrap;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    position: sticky;
    top: 0;
    bottom: 1px;
    min-width: max-content; /* Ensures columns line up if wide */
    height: 37px;
}

/* Footer Cells */
.WSFG-footer-cell {
    padding: 8px;
    border-right: 1px solid #ccc;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    background-color: #e9edf0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    height: 37px;
}

    .WSFG-footer-cell:last-child {
        border-right:0;
    }

.WSFG-grid-filter-buttons {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem 1rem;
    background-color: #f6f7fa;
    padding-bottom: 0px !important
}

/*Prevents the main grid from scrolling when filter list is open*/
.rz-listbox-list-wrapper {
    overscroll-behavior: contain;
}

.WSFG-column-drag {
    cursor: grab;
    font-size: inherit;
    color: var(--rz-column-drag-handle-color);
    transition: var(--rz-grid-state-transition);
    font-family: var(--rz-icon-font-family);
}

    .WSFG-column-drag:after {
        content: "more_vert";
    }


/* -----------------------------------------
   WoodstarDropDown CSS
   ----------------------------------------- */
.WS-DropDown-Container {
    padding: 6px;
    height: 35px;
    border: 1px solid black;
    border-radius: 3px
}

.WS-DropDown-Text {
    width: 100%;
    background: transparent;
    border: 0;
    pointer-events: none;
}

/* -----------------------------------------
   WoodstarListBox CSS
   ----------------------------------------- 
*/

/* ---------- CONTAINER ---------- */
.woodstarlistbox {
    display: flex;
    flex-direction: column;
    background: #fff !important;
    color: #333 !important;
    border: 1px solid #ced4da !important;
    border-radius: 4px !important;
    padding: 8px !important;
    font-family: sans-serif !important;
    box-sizing: border-box !important;
}

/* ---------- FILTER + SELECT ALL ---------- */
/* use a 1px gap and force it */
.woodstarlistbox-filter-container {
    display: flex !important;
    align-items: center !important;
    gap: 1px !important;
    margin-bottom: 6px !important;
}

/* select-all cell */
.woodstarlistbox-selectall-label {
    margin-left: 6px;
    width: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin-right: 1px !important;
}

.woodstarlistbox-selectall-checkbox {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 18px !important;
    height: 18px !important;
    border: 1px solid #6c757d !important;
    border-radius: 2px !important;
    cursor: pointer !important;
    margin: 0 !important;
    position: relative !important;
}

    .woodstarlistbox-selectall-checkbox:checked {
        background-color: #007acc !important;
        border-color: #007acc !important;
    }

        .woodstarlistbox-selectall-checkbox:checked::after {
            content: "" !important;
            position: absolute !important;
            left: 6px !important;
            top: 3px !important;
            width: 4px !important;
            height: 8px !important;
            border: solid #fff !important;
            border-width: 0 2px 2px 0 !important;
            transform: rotate(45deg) !important;
        }

/* ---------- SEARCH INPUT ---------- */
.woodstarlistbox-filter-wrapper {
    position: relative !important;
    flex: 1 !important;
}

.woodstarlistbox-filter {
    width: 100% !important;
    height: 32px !important;
    padding: 6px 12px !important;
    padding-left: 36px !important;
    border: 1px solid #ced4da !important;
    border-radius: 4px !important;
    box-sizing: border-box !important;
    font-size: 14px !important;
    color: #495057 !important;
    background: #fff !important;
    background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23808080' viewBox='0 0 16 16'>\
<path d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.415l-3.85-3.85zm-5.242 1.116\
a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/>\
</svg>") !important;
    background-repeat: no-repeat !important;
    background-position: 10px center !important;
    background-size: 16px 16px !important;
    outline: none !important;
}

/* ---------- SCROLLABLE LIST ---------- */
.woodstarlistbox-items {
    width: 100% !important;
    max-height: 250px !important;
    overflow-y: auto !important;
    border: 1px solid #ced4da !important;
    border-radius: 4px !important;
    box-sizing: border-box !important;
    background: #fff !important;
}

/* ---------- ITEMS ---------- */
/* 45px checkbox column + just 1px gap + minimal padding */
.woodstarlistbox-item {
    display: grid !important;
    grid-template-columns: 30px 1fr !important;
    column-gap: 1px !important;
    align-items: center !important;
    padding: 4px 5px !important;
    cursor: pointer !important;
}

    .woodstarlistbox-item:hover {
        background: #f1f3f5 !important;
    }

.woodstarlistbox-item-checkbox {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 18px !important;
    height: 18px !important;
    border: 1px solid #6c757d !important;
    border-radius: 2px !important;
    cursor: pointer !important;
    margin: 0 !important;
    position: relative !important;
}

    .woodstarlistbox-item-checkbox:checked {
        background-color: #007acc !important;
        border-color: #007acc !important;
    }

        .woodstarlistbox-item-checkbox:checked::after {
            content: "" !important;
            position: absolute !important;
            left: 6px !important;
            top: 3px !important;
            width: 4px !important;
            height: 8px !important;
            border: solid #fff !important;
            border-width: 0 2px 2px 0 !important;
            transform: rotate(45deg) !important;
        }

/* TEXT: zero margin */
.woodstarlistbox-item-text {
    margin: 0 !important;
    font-size: 14px !important;
    color: #333 !important;
    white-space: nowrap !important;
}

/* ---------- CLEAR BUTTON ---------- */
.woodstarlistbox-clear {
    align-self: flex-end !important;
    margin-top: 8px !important;
    padding: 6px 12px !important;
    background: #f8f9fa !important;
    border: 1px solid #ced4da !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    color: #333 !important;
    cursor: pointer !important;
}

    .woodstarlistbox-clear:hover {
        background: #e9ecef !important;
    }

/* -----------------------------------------
   WoodstarCard CSS
   ----------------------------------------- 
*/

.ws-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    border-radius: 0.625rem;
    border: 0;
    box-shadow: 0px 0px 20px 0px rgba(76, 87, 125, 0.02);
    background-color: #ffffff;
}

.ws-card-header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    min-height: 70px;
    padding: 0 2.25rem;
    background-color: #ffffff;
    border-bottom: 1px solid #eff2f5;
}

    .ws-card-header:first-child {
        border-radius: calc(0.625rem - 1px) calc(0.625rem - 1px) 0 0;
    }

.ws-card-title {
    font-weight: 500;
    font-size: 1.275rem;
    color: #181C32;
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 0.5rem;
    margin-left: 0;
}

    .ws-card-title.flex-column {
        align-items: flex-start;
        justify-content: center;
    }

.ws-card-toolbar {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
    flex-wrap: wrap;
}

.ws-card-body {
    flex: 1 1 auto;
    padding: 2rem 2.25rem;
}

.ws-card-footer {
    padding: 2rem 2.25rem;
    background-color: #ffffff;
    border-top: 1px solid #eff2f5;
}

    .ws-card-footer:last-child {
        border-radius: 0 0 calc(0.625rem - 1px) calc(0.625rem - 1px);
    }

/* -----------------------------------------
   WoodstarLoadIndicator CSS
   ----------------------------------------- 
*/

.ws-loading-bar {
    position: relative;
    height: 18px;
    background-color: #eee;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 20px;
}

.ws-indeterminate-bar {
    position: absolute;
    width: 30%;
    height: 100%;
    background-color: var(--rz-primary);
    animation: indeterminate-animation 1.5s infinite;
    border-radius: 4px;
}

@keyframes indeterminate-animation {
    0% {
        left: -30%;
    }

    50% {
        left: 35%;
    }

    100% {
        left: 100%;
    }
}