.nav-wrapper {
  background-color: #424242;
}

.page-footer {
  background-color: #424242;
  position: sticky;
  bottom: 0;
}

div.container {
  width: 100%;
  max-width: 100%;
  min-height: calc(100vh - 4rem - 4rem); /* Adjust the height of the container to be at least 100% of the viewport height minus the header and footer heights */
  display: flex;
  flex-direction: column;
  position: relative;
}

div.section {
  padding: 1rem;
}

#map {
  flex-grow: 1; /* Allow the map to grow to fill available space */
  width: 100%;
}

nav, footer, .page-footer {
  height: 4rem;
  line-height: 4rem;
  padding: 0;
  margin: 0;
}
nav h1, nav h2, nav h3, nav h4, nav h5, footer h1, footer h2, footer h3, footer h4, footer h5, .page-footer h1, .page-footer h2, .page-footer h3, .page-footer h4, .page-footer h5 {
  margin: 0;
  padding: 0;
  line-height: 4rem;
  font-size: 1rem;
}
nav #github, footer #github, .page-footer #github {
  float: right;
  margin-right: 1rem;
}

nav .brand-logo {
  padding: 0.25rem;
}
nav .brand-logo img {
  max-width: 50px;
  max-height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 500px;
  z-index: 1001;
}

.file-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  color: white;
  background-color: #424242;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.file-button:hover {
  background-color: #2196F3;
}

.submit-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  color: white;
  background-color: #424242;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #2196F3;
}

/* Styles for custom icon dropdown */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
  gap: 10px;
}
.icon-grid i {
  cursor: pointer;
  font-size: 24px;
  text-align: center;
}
.icon-grid i:hover {
  color: #FFC107;
}
.icon-grid i.selected {
  color: #2196F3;
}

.dialog .submit-button {
  float: right;
}

i.pin {
  width: 3rem;
  height: 3rem;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0.7;
  background-image: url("/static/icons/house.png");
}

i.pin:hover {
  opacity: 1;
  filter: invert(0%) sepia(100%) saturate(100%) hue-rotate(130deg) brightness(100%) contrast(100%);
}

i.pin.selected, i.pin:focus {
  opacity: 1;
  filter: invert(0%) sepia(100%) saturate(100%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

i.bank {
  background-image: url("/static/icons/bank.png");
}

i.car {
  background-image: url("/static/icons/car.png");
}

i.church {
  background-image: url("/static/icons/church.png");
}

i.firehouse {
  background-image: url("/static/icons/firehouse.png");
}

i.hospital {
  background-image: url("/static/icons/hospital.png");
}

i.military {
  background-image: url("/static/icons/military.png");
}

i.plane {
  background-image: url("/static/icons/plane.png");
}

i.school {
  background-image: url("/static/icons/school.png");
}

i.tunnel {
  background-image: url("/static/icons/tunnel.png");
}

i.boat {
  background-image: url("/static/icons/boat.png");
}

i.castle {
  background-image: url("/static/icons/castle.png");
}

i.dam {
  background-image: url("/static/icons/dam.png");
}

i.graffiti {
  background-image: url("/static/icons/graffiti.png");
}

i.house {
  background-image: url("/static/icons/house.png");
}

i.museum {
  background-image: url("/static/icons/museum.png");
}

i.powerplant {
  background-image: url("/static/icons/powerplant.png");
}

i.statue {
  background-image: url("/static/icons/statue.png");
}

i.bridge {
  background-image: url("/static/icons/bridge.png");
}

i.cave {
  background-image: url("/static/icons/cave.png");
}

i.factory {
  background-image: url("/static/icons/factory.png");
}

i.graveyard {
  background-image: url("/static/icons/graveyard.png");
}

i.library {
  background-image: url("/static/icons/library.png");
}

i.park {
  background-image: url("/static/icons/park.png");
}

i.prison {
  background-image: url("/static/icons/prison.png");
}

i.train {
  background-image: url("/static/icons/train.png");
}

.avatar {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}
.avatar img {
  width: 100%;
  height: 100%;
}
.avatar .avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #424242;
  color: #FAFAFA;
  font-size: 2em;
}
.avatar #upload-avatar-button {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #FAFAFA;
  padding: 5px;
  border-radius: 50%;
  display: none;
}
.avatar #upload-avatar-button i {
  font-size: 1.2em;
}
.avatar:hover #upload-avatar-button {
  cursor: pointer;
  display: block;
}

.stars {
  display: inline-block;
  cursor: pointer;
}
.stars input {
  display: none;
}
.stars label {
  color: gold;
  font-size: 20px;
  padding: 0 1px;
}
.stars label:hover {
  cursor: pointer;
}
.stars input:checked ~ label {
  color: lightgrey;
}
.stars input:checked + label {
  color: gold;
}
.stars input:hover + label {
  color: red;
}
.stars.rating-undefined label, .stars.rating-0 label {
  color: lightgrey;
}
.stars:hover label {
  color: red;
}
.stars:hover label:hover ~ label {
  color: lightgrey;
}

.delete-button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: none;
  border: none;
  color: #424242;
  opacity: 0.05;
  transition: opacity 0.3s ease;
  font-size: 24px;
}

.leaflet-popup:hover .delete-button {
  opacity: 0.6;
}
.leaflet-popup:hover .delete-button:hover {
  opacity: 1;
  cursor: pointer;
}

#smithsonian-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
#smithsonian-images .smithsonian-image {
  background: #f5f5f5;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#smithsonian-images .smithsonian-image img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.modern-style {
  background-color: #FAFAFA;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.details-grid {
  display: grid;
  gap: 20px;
  justify-content: stretch;
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  align-items: center;
}
.details-grid > div {
  text-align: center;
}

.field-label {
  display: inline-block;
  width: 100px;
}

.auth-button {
  display: block;
  margin-bottom: 10px;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  color: white;
  background-color: #2196F3;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  background-size: cover;
}
.auth-button:hover {
  background-color: rgb(11.5384615385, 124.0384615385, 213.4615384615);
}
.auth-button.google-button, .auth-button.discord-button {
  text-indent: -9999%;
  padding-left: 30px;
  background-repeat: no-repeat;
  background-position: left center;
  width: 150px;
  height: 150px;
}
.auth-button.google-button {
  background-image: url("/static/dashboard/images/signup_google.png");
}
.auth-button.discord-button {
  background-image: url("/static/dashboard/images/signup_discord.png");
}

.aerial-view .aerial-view-media {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.aerial-view .container {
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-height: 780px;
  max-width: 780px;
}

.map-buttons {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem;
}
.map-buttons:hover, .map-buttons:focus {
  opacity: 1;
}
.map-buttons:hover > div button, .map-buttons:focus > div button {
  opacity: 0.8;
}
.map-buttons > div button {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: rgba(250, 250, 250, 0.5);
  text-indent: -9999%;
  width: 4rem;
  height: 4rem;
  border: 0.5rem solid #424242;
  border-radius: 25%;
  opacity: 0.3;
  display: inline-block;
  transition-duration: 0.4s;
}
.map-buttons > div button:hover, .map-buttons > div button:focus, .map-buttons > div button:active, .map-buttons > div button.active {
  cursor: pointer;
  opacity: 1;
  border-color: rgba(33, 150, 243, 0.2);
  background-color: rgba(250, 250, 250, 0.6);
}
.map-buttons #search-pins-button {
  background-image: url("/static/dashboard/images/search.png");
}
.map-buttons #topography-button {
  background-image: url("/static/dashboard/images/topography.png");
}
.map-buttons #satellite-button {
  background-image: url("/static/dashboard/images/satellite.png");
}
.map-buttons #toggle-pins-button {
  background-image: url("/static/dashboard/images/pins.png");
}
.map-buttons #import-pins-button {
  background-image: url("/static/dashboard/images/import.png");
}
.map-buttons #weather-button {
  background-image: url("/static/dashboard/images/weather.png");
}
.map-buttons #add-pin-button {
  display: none;
}

.card h1, .card h2, .card h3, .card h4, .card h5, .card h6 {
  text-align: center;
}

body.page-location-details div.section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "title title title" "details details details" "map map map" "satellite aerial street" "smithsonian smithsonian smithsonian" "search search search";
  justify-items: stretch;
}
body.page-location-details div.section .location-title {
  grid-area: title;
  text-align: center;
}
body.page-location-details div.section .location-details {
  grid-area: details;
  margin-bottom: 1rem;
}
body.page-location-details div.section .location-map {
  grid-area: map;
}
body.page-location-details div.section .location-map #map {
  height: 40rem;
  width: 100%;
}
body.page-location-details div.section .satellite-view {
  grid-area: satellite;
}
body.page-location-details div.section .street-view {
  grid-area: street;
}
body.page-location-details div.section .smithsonian-images {
  grid-area: smithsonian;
}
body.page-location-details div.section .aerial-view {
  grid-area: aerial;
}
body.page-location-details div.section .web-search {
  grid-area: search;
}
body.page-location-details div.section .weather-widget {
  margin: 0 1rem 0 1rem;
}
body.page-location-details div.section .weather-widget h2 {
  text-align: center;
  color: #424242;
}
body.page-location-details div.section #weather-forecast {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 1rem 1rem;
}
body.page-location-details div.section .weather-card {
  flex: 1 0 40%;
  background-color: #FAFAFA;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 15px;
}
body.page-location-details div.section .weather-date-time {
  font-size: 0.85em;
  color: #424242;
  margin-bottom: 5px;
}
body.page-location-details div.section .weather-temperature {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 5px;
}
body.page-location-details div.section .temp-value {
  font-size: 1.5em;
  color: #424242;
}
body.page-location-details div.section .temp-feels-like {
  font-size: 0.85em;
  color: #424242;
}
body.page-location-details div.section .weather-conditions {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
body.page-location-details div.section .weather-main {
  font-weight: bold;
  color: #424242;
  margin-right: 10px;
}
body.page-location-details div.section .weather-description {
  color: #424242;
}
body.page-location-details div.section .weather-icon {
  margin-left: auto;
  width: 40px;
  height: 40px;
}
body.page-location-details div.section .weather-humidity,
body.page-location-details div.section .weather-wind {
  font-size: 0.9em;
  color: #424242;
}

#loading-pins-message {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
}
#loading-pins-message span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #FAFAFA;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1em 3em;
  border-radius: 10px;
}

/*# sourceMappingURL=style.css.map */
