html{
    background-color: rgb(14, 75, 136);
}

.scrollable-table-container {
  max-height: 500px;
  overflow-y: auto;
  width: 40vw;
  margin: 25px;
}

table {
  border-collapse: separate;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0);
  border-spacing: 0;
  position: relative;
  border-spacing: 0 12px;
  overflow: scroll;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 100px;
  margin: 10px;
}

.missing-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: red;
  font-weight: bold;
  font-size: 100%;
}


th {
  font-size: 11pt;
  height: 3.5vw;
}
.centereditemssticky {
  position: sticky;
  text-align: center;
  top: 0;
  z-index: 1;
}

.sticky {
  position: sticky;
  top: 0;
  z-index: 1;
}

table td + td {
  border-collapse:collapse
}

th, td {
  text-align: left;
  background-color: #6098e7;
  border: none;
}

table td:first-child {
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}

table td:last-child {
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
}

table th + th {
  border-collapse:collapse
}

table th:first-child {
    border-bottom-left-radius: 30px;
}

table th:last-child {
    border-bottom-right-radius: 30px;
}


input[type="checkbox"] {
  display: none;
}

/* Label that will serve as our custom circle */
.custom-checkbox {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #000000;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

/* Checked state: fill with gray */
input[type="checkbox"]:checked + .custom-checkbox {
  background-color: #000000; /* Gray fill */
  border-color: #ffffff;
}

body {
  font-family: 'Verdana';
}

h1 {
  text-align: center;
  color: white;
}

h2 {
  text-align: center;
  color: white;
}

i {
  font-family: 'Garamond', serif;
}

.flex-parent {
	display: flex;
  width: 100vw;
}

.bird-image {
  clip-path: circle();
  width: 100px;
  height: 100px;
}

#map {
  height: 100%;
  width: 50vw;
}

.map-container {
  width: 60vw;
  align-items: left;
  height: 500px;
  margin: 25px;
}

.imagecontainer {
  overflow-x: auto;
  width: 100%;
  max-width: 100vw;
  
}

.centereditems {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .scrollable-table-container,
  .map-container {
    width: 90vw;
    margin: 10px auto;
  }
  .missing-label {
    left: 37.5%;
    font-size: 0.5rem;
  }

  .bird-image {
    width: 60px;
    height: 60px;
  }

  th, td {
    font-size: 0.9rem;
  }

  .flex-parent {
    flex-direction: column;
    align-items: center;
  }

  #map {
    width: 90vw;
    height: 300px;
  }
}
