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 {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

* {
    padding: 0;
    margin: 0;
}

body {
  margin-bottom: 60px;
}

h1 {
    margin-bottom: 25px;
}

.upscale-container {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.text-bg-primary {
    color: #fff !important;
    background-color: RGBA(13,110,253, var(--bs-bg-opacity, 1)) !important;
}

.end-0 {
    right: 0 !important;
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* slight gray/black overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* make sure it's above other content */
}

.loader {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

a:not([href]):hover {
    color: #fff
}

.bootstrap-select.form-control {
    height: calc(2.5rem + 2px);
    padding: 0; /* Don't double up padding */
    border: 1px solid #cbc8d0; /* Match your Bootstrap inputs */
}

.bootstrap-select > .dropdown-toggle.form-control {
    height: 100%; /* inherit the height properly */
    padding: 0.5rem 1rem;
}

.bootstrap-select:not(.homepage-ddl) {
    width: 160px !important;
}