/* RESOURCES PAGE */

.resources-holder {
  width: 95%;
  margin: 0 auto;
}

/* Resource map iframe styling */
iframe {
  width: 90%;
  height: 700px;
}

.iframe-container {
  display: flex;
  justify-content: center;
}

/* Resource table styling */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.table-container {
  overflow-x: auto;
}

table {
  margin: 20px;
}

caption {
  font-size: 1.6em;
  font-weight: 400;
  padding: 10px 0;
}

thead th {
  font-weight: 400;
  background: var(--purple);
  color: #fff;
}

tr {
  background: #f4f7f8;
  border-bottom: 1px solid #fff;
  margin-bottom: 5px;
}

tr:nth-child(even) {
  background: var(--lavender-transparent);
}

th,
td {
  text-align: left;
  padding: 20px;
  font-weight: 300;
}

tfoot tr {
  background: none;
}

tfoot td {
  padding: 10px 2px;
  font-size: 0.8em;
  font-style: italic;
  color: #8a97a0;
}

/* Documents grid styling */
.grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  padding: 10px;
}

.grid-container > div {
  background-color: #f1f1f1;
  color: #000;
  padding: 10px;
  font-size: 18px;
  text-align: center;
}
