
dialog form {
    display: flex;
    flex-direction: row-reverse;
}

.not-accepting-donations {
    font-size: 0.9em;
    font-style: italic;
    color: #960808;
}

.get-involved-image-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.get-involved-links {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.get-involved-link {
    border-radius: 4px;
    border: 0px;
    box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
    box-sizing: border-box;
    color: #36395A;
    cursor: pointer;
    padding: 10px 15px 10px 15px;
    text-decoration: none;
}

.get-involved-link h3 {
    margin: 0px 0px 3px 0px;
}

.get-involved-image {
    max-width: 150px;
}

.box {
    border: 1px solid black;
    padding: 3px;
    margin: 3px;
}

.selection-list {
    height: 125px;
    overflow-y: scroll;
}

/** When items are selected, they show up in a box underneath the selection list. */
.selection-box {
    margin-bottom: 7px;

}
.selected-value {
    font-weight: bold;
}

table.filters-table tbody {
    vertical-align: top;
}

table.results-table {
    padding: 10px;
    position: sticky;
    left: 0;
    width: 100%;
}

table.results-table thead th:nth-child(1) {
  width: 25%;
}

table.results-table tbody {
    vertical-align: top;
}

table.results-table td {
    padding: 15px;
}

table.results-table thead th {
    background-color: #777;
    color: #EEE;
    padding: 8px;
}

table.results-table tbody tr:nth-child(odd) {
    background-color: #EEE;
}

table.results-table tbody tr:nth-child(even) {
    background-color: #DDD;
}

.error-div {
    width: 100%;
    font-weight: bold;
    color: #b60808;
}

/*
   Holder container for the update button and a loading indicator popup div.
 */
#parent-div {
    position: relative;
}

.update-button {
    width: 100px;
    height: 30px;
}

/*
   Shows a loading indicator that is placed on top of the 'update' button.
   Shown after 'update' button is clicked. The loading indicator is a 'div'
   with background image, we place it on top of the 'update' button exactly
   to make it look like we changed the background of the update button.
*/
#loader-div {
    width: 25px;
    height: 25px;
    background-size: contain;
    background-image: url(loading-spinner.png);
    position: relative;
    top: 0px;
    left: 40px;
    z-index: 10;
    background-repeat: no-repeat;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    display: none;
    animation-play-state: paused;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, .5);
    box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

.selection-td {
    height: 50px;
    max-width: 150px;
}

.toggle-all-button {
    margin-top: 10px;
    height: 25px;
    min-width: 125px;
}

#site-detail-instruction-text {
    font-size: 0.9em;
    font-style: italic;
}

.supply-hub {
    font-size: 0.9em;
    font-style: italic;
}

.downloadDiv {
    margin-left: 360px;
}

.results-table-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 10px;
}

.filters-container {
  display: flex;
  flex-direction: row;
}

.status-checkbox-container {
  display: flex;
  flex-direction: column;
  height: max-content;
}

.h-full {
  height: 100%;
}

.site-name-column span {
    padding-bottom: 5px;
}

#result-count {
    margin-left: 10px;
}

#sort-results-container {
    margin-right: 10px;
}

#results-count-and-sort {
   display: flex;
   flex-direction: row;
   justify-content: space-between;
}

@media only screen and (max-width: 600px) {

  .filters-container {
    flex-direction: column;
    width: 100%;
    overflow-x: auto;
  }

  .status-checkbox-container {
    flex-direction: row;
  }

  table.results-table thead th:nth-child(1) {
    width: 40%;
  }

  table.results-table {
    width: max-content;
  }

  #results-count-and-sort {
     flex-direction: column;
     justify-content: start;
  }

  #sort-results-container {
      margin-left: 10px;
  }
}