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;
}

/* Loading indicator container */
.loading-indicator {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3000; /* Ensure it appears above all other elements */
    text-align: center;
}

    /* Spinner with bright color */
    .loading-indicator .spinner-border {
        width: 3rem;
        height: 3rem;
        border-top: 4px solid #ff5733; /* Bright red for the top part */
        border-right: 4px solid #33ff57; /* Bright green for the right part */
        border-bottom: 4px solid #3357ff; /* Bright blue for the bottom part */
        border-left: 4px solid #f9ff33; /* Bright yellow for the left part */
    }

/* "Please wait..." text with bright color */
.bright-text {
    color: #ff5733; /* Bright red for text */
    font-size: 1.2rem; /* Slightly larger font size */
    font-weight: bold; /* Bold text for emphasis */
    margin-top: 10px;
}

/* Background overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
    z-index: 2000; /* Ensure it's behind the loading indicator */
    display: none; /* Hidden by default */
}


.admin-form .switch, .admin-form .option, .admin-form .field-label {
    font-size: 12px;
}

.panel-title {
    padding-left: 6px;
    margin-top: 0;
    margin-bottom: 0;
}

.panel-heading {
    position: relative;
    height: 35px;
    line-height: 35px;
    background: #fafafa;
    color: #666;
    font-size: 18px;
    font-weight: 600;
    padding: 0 8px;
    border: 1px solid #e5e5e5;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}