

/* Loader container */
.loading-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999; /* Ensure it's on top, especially over potential early ExtJS elements */
    background-color: #000; /* Fallback background color */
    display: flex; /* Using flex for alignment if you add text over video */
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.7s ease-out; /* Fade out transition */
    color:#ffffff;
}

/* The video element itself */
.loading-video-container video {
    max-width: 100%;
    max-height: 100%;
    width:1280px;
    height: 720px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain; /* Cover the area, cropping if necessary */
}
/* Class on body to manage loader state (optional, but good practice) */
body.loading-active {
    /* Styles for when the loader is active, e.g., ensure no body scroll */
    overflow: hidden;
}




/* Pill styles used in grids - applied to span elements in renderers */

.status__accrued,
.status__accrued_approved,
.status__taken,
.status__taken_approved,
.status__zero {
    display: inline-block;
    width: 95px;
    padding: 4px 10px;
    border-radius: 20px;
    text-align: center;
    white-space: nowrap;
    overflow: visible;
    box-sizing: border-box;
}

/* Plus icon for accrued */
.status__accrued::before,
.status__accrued_approved::before {
    content: "\f067" !important; /* Plus icon */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    margin-right: 6px;
}

/* Minus icon for taken */
.status__taken::before,
.status__taken_approved::before {
    content: "\f068" !important; /* Minus icon */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    margin-right: 6px;
}

/* Accrued - green (pending/not approved) */
.status__accrued {
    color: #057717;
    border: 2px solid #057717;
    background-color: #FDFDFD !important;
}

/* Accrued - green (approved) */
.status__accrued_approved {
    color: #00460a;
    border: 2px solid #05a21b;
    background-color: #DAE6CD;
}

/* Taken - red (pending/not approved) */
.status__taken {
    color: #8C1C22;
    border: 2px solid #8C1C22;
    background-color: #F0F0F0 !important;
}

/* Taken - red (approved) */
.status__taken_approved {
    color: #8C1C22;
    border: 2px solid #8C1C22;
    background-color: #E6CCCD;
}

/* Zero balance */
.status__zero {
    border: 2px solid #2863da;
    background-color: #FDFDFD !important;
    color: #6A6A6A;
}

.col__pill_navy_dotted div {
    border: 2px solid #1a3e59;
    background-color: #ffffff;
}
.col__pill_navy div {
    border: 2px solid #1a3e59;
    background-color: #1a3e59 ;
}

/*.blue,*/
.readOnly,
.readOnly .x-form-text-default,
.readOnly .x-form-cb-label {
    color: #5e75ac;
    cursor: not-allowed;

}
.x-fieldset {
    background-color: #ffffff!important;
}
