/* modal */
.modal{
    z-index: 10001;
}
.modal-backdrop{
    z-index: 10000;
}

/*Disabled select*/
select:disabled {
    color: #aaa;
    border-color: rgba(118, 118, 118, 0.3);
}

/*Datepicker buttons*/
.day.disabled > button {
   text-decoration: line-through;
   cursor: not-allowed;
   color: lightgrey;
}

/*Load spinner class and keyframes*/
  .loader {
      display: none;
      border: 16px solid #f3f3f3;
      border-radius: 50%;
      border-top: 16px solid #5c35a7;
      width: 100px;
      height: 100px;
      -webkit-animation: spin 2s linear infinite; /* Safari vers. */
      animation: spin 2s linear infinite;
  }
   /* Safari vers. */
  @-webkit-keyframes spin {
      0% { -webkit-transform: rotate(0deg); }
      100% { -webkit-transform: rotate(360deg); }
  }

  @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
  }

span.report {
    font-family: Segoe UI;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    color: blue;
}
div.report {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px;
    gap: 36px;
    width: 840px;
    align-items: center;
    text-align: center;
    padding-top: 0;
    margin-top: 0;
}
#loadTimer {
    font-size: 4rem;
}

/* Button */
.btn-primary:focus, .btn-primary.focus {
     color: #ffffff;
     background-color: #5c59e7;
     border-color: #5c59e7;
}
a.button-link-download:hover {
    text-decoration: none !important;
}
/* Instructional Callout Box Styles */
  .info-callout {
     background-color: #f0f7ff; /* Soft blue background */
     border-left: 6px solid #004b9b; /* Dark official blue border */
     padding: 20px 25px;
     margin-bottom: 30px;
     border-radius: 4px;
     font-family: 'Roboto', sans-serif;
     color: #222222;
     box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  .info-callout h3 {
     margin-top: 0;
     color: #004b9b;
     font-size: 1.25em;
     font-weight: 700;
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 15px;
  }
  .info-list {
     margin: 0;
     padding-left: 25px;
     line-height: 1.6;
     font-size: 1.05em;
  }
  .info-list li {
     margin-bottom: 10px;
  }
  .info-list li:last-child {
     margin-bottom: 0;
  }