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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.head1 {
    /*    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
*/
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
}

.bg-warm {
    background-color: #fcf1d6;
}

.bg-required {
    background-color: #f9e5b2;
}

.bg-admin {
    background-color: #d7e6f8;
}

.bg-admin-high {
    background-color: #e5c2f3;
}

.framed_group1 {
    padding: 10px;
    border-radius: 10px;
    border: 3px solid #E9B720;
    background-color: #FAF9F5;
}

.image-container {
    width: 360px;
    height: 360px;
    overflow: hidden;
}

.scaled-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Scale the image to cover the container */
}

.striped-list .list-group-item:nth-child(even) {
    background-color: #f8f9fa !important; /* Light gray */
}

.striped-list .list-group-item.active {
    background-color: #0d6efd !important; /* Bootstrap 5 primary blue */
    color: #fff !important;
    border-color: #0d6efd !important;
}

    .striped-list .list-group-item.active:hover,
    .striped-list .list-group-item.active:focus {
        background-color: #0b5ed7 !important; /* Bootstrap 5 primary blue darken */
        color: #fff !important;
    }

.striped-list .list-group-item:nth-child(even):not(.active) {
    background-color: #f8f9fa !important; /* Light gray for even rows, only if not active */
}

.mt-25 {
    margin-top: 25px;
}

#progressNotification {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: #333;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    min-width: 300px;
    text-align: center;
}