
/*# sourceMappingURL=custom.min.css.map */

:root {
    --primary-blue: #0d6efd;
    --primary-yellow: #ffc107;
    --dark: #212529;
    --light: #f8f9fa;
}

.card-header {
    font-weight: 600;
}

.card-alert {
    border-left: 4px solid var(--primary-yellow);
}

.progress-thin {
    height: 8px;
}

.stat-card {
    transition: all 0.3s ease;
}

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

.bg-light-blue {
    background-color: #e9f0fd;
}


/*====================================================================================================================================*/





#liveAlertPlaceholder {
    position: fixed;
    top: 80px;
    right: 10px;
    z-index: 9999; /* Ensure it's on top of other elements */
}
.popup-card {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.popup-content {
    text-align: center;
}
.disabled {
    pointer-events: none; /* Disable all pointer interactions */
    opacity: 0.5; /* Optional: Reduce opacity to visually indicate disabled state */
}
.sticky-header {
    position: sticky;
    top: 0;
    background-color: #f8f9fa; /* Grey color */
    z-index: 1;
}

.dropdown-menu .table-responsive {
    max-height: 200px;
    overflow-y: auto;
}

.hidden {
    display: none
}

/*.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #FFFFFF;
    color: white;
    padding: 15px;
    border-radius: 4px;
    z-index: 1000;
    height: 100px;
}*/

.validation-error {
    color: red;
    font-size: 0.875em;
    margin-top: 0.25em;
    display: block; /* Makes sure the error message is displayed below the input */
}

/* Style the dropdown to make it look readonly */
.readonly-dropdown {
    pointer-events: none; /* Prevent clicks or interaction */
    background-color: #e9ecef; /* Light gray for readonly appearance */
    cursor: not-allowed; /* Change cursor to indicate it's not interactive */
}



.sticky-column {
    position: -webkit-sticky;
    /* For Safari */
    /*position: sticky;
         background-color: #f8f9fa;*/ /* Grey color */
}

/* .table th:first-child,
        .table td:first-child,
        .table th:last-child,
        .table td:last-child {
            position: sticky;
            left: 0;
            right: 0;
            background-color: #fff;
            color: #373737;
        }*/


.tab-pane {
    display: none;
}

    .tab-pane.active {
        display: block;
    }






