.sticky-column {
    position: sticky;
    left: 0;
    /*background-color: #fff;*/ /* Optional: match your table background color */
    z-index: 1; /* Ensure it appears above the scrolling content */
    /* border-right: 1px solid #ddd;*/ /* Optional: add a border for visual separation */
}


html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.hidden {
    display: none;
}

.blur {
    filter: blur(5px);
    pointer-events: none; /* Prevent clicking or interacting with blurred elements */
}

.submit-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7); /* Optional: slightly dim the page */
    z-index: 9999; /* Ensures the spinner is on top */
}

