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;
}


.loader {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Ensure close button is always visible */
.toast-close-button {
    color: #fff !important;
    font-size: 20px !important;
    margin-left: 10px;
    cursor: pointer;
}

.toast-close-button:hover {
     color: #f1f1f1;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent white background */
    z-index: 10000; /* Ensure it's above all other elements */
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(1px); /* Blur effect for the background */
    opacity: 1; /* Fully visible */
    transition: opacity 0.3s ease; /* Smooth fade-in/out effect */
}

#loaderId {
    width: 4rem;
    height: 4rem;
    border-width: 0.5rem;
}
