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;
}
.container-fluid- {
    max-width: 1200px;
    margin: 0 auto;
}
.margin-auto {
    margin: 0 auto !important;
}
.d-none{
    display: none !important;
}
.full--width {
    width: 100%;
    max-width: 100%;
    display: block !important;
    align-items: center;
}
label.control-label {
    color: #161616 !important;
}
.form-group {
    margin: 5px 0px;
}
.readonly-field {
    pointer-events: none; /* Prevents interaction */
    background-color: #e9ecef; /* Gray background to indicate read-only */
    color: #6c757d; /* Optional: Muted text color */
}
#loadingOverlay {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px); /* Blur effect */
    z-index: 9999; /* Make sure it's above everything */
    justify-content: center;
    align-items: center;
}

/* Loading animation */
.loading-animation {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3; /* Light gray border */
    border-top: 5px solid #3498db; /* Blue border */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Keyframes for spinning */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}