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%;
}
.spinner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 80px; /* ensure there's enough space for the spinner */
}

.loading-spinner {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    border: 5px solid #ffcf78; /* Uniform color for the entire border */
    border-top: 5px solid #ffcf78; /* Same color to maintain uniformity */
    border-radius: 50%;
    width: 75px;
    height: 75px;
    animation: loadingspin 2s linear infinite;
}

    .loading-spinner::after {
        content: "LOADING"; /* Your desired text */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 10px; /* Adjust font size as needed */
        font-weight: bold; /* Make text bolder */
        color: #ffcf78; /* Same color as spinner */
        text-align: center;
    }

@keyframes loadingspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
