* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Russo One", sans-serif;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: rgb(234, 171, 37);
}

.fish-popup {
  padding: 10px;
  font-size: 0.9rem;
}
.fish-popup strong {
  color: rgb(19, 23, 39);
}
.fish-popup .popup-a {
  color: rgb(19, 23, 39);
  outline: none;
  text-decoration: underline;
}

button {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  background: rgb(182, 140, 55);
  color: #fff;
}

button:disabled {
  background: rgb(142.835443038, 109.8734177215, 43.164556962);
  cursor: not-allowed;
  text-decoration: line-through;
}

body {
  font-family: "Geologica", sans-serif;
  background: rgb(19, 23, 39);
  color: #bcbcbc;
}

nav.nav {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  padding: 1rem;
  background: #36383e;
  z-index: 100;
}
nav.nav .nav-container {
  display: flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
nav.nav a {
  text-decoration: none;
  color: #fff;
}

nav.nav-menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100dvw;
  z-index: 101;
  background: rgb(19, 23, 39);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 0;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
nav.nav-menu a {
  padding: 1rem 0;
  font-size: 1.7rem;
}
nav.nav-menu #close-menu {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.3rem;
}

nav.nav-menu-open {
  height: 100vh;
}

main.main {
  padding: 9vh 1rem 1rem 1rem;
}
main.main article.card {
  padding: 1rem;
  margin: 1rem 0;
  border: 1px solid rgb(35.7068965517, 43.224137931, 73.2931034483);
}
main.main article h2 {
  margin: 1rem 0 0.3rem 0;
}
main.main article h3 {
  margin: 0.7rem 0 0.25rem 0;
}
main.main article p {
  margin: 0.5rem 0;
}

main.main-map {
  padding: 0 0 0 0;
  overflow-x: hidden;
}

.mosaic {
  margin-top: 6vh;
}

.mosaic img {
  object-fit: cover;
  object-position: center;
}

.grid {
  display: grid;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.gap-1 {
  gap: 1rem;
}

.ptb-1 {
  padding: 1rem 0 1rem 0;
}

.flex {
  display: flex;
}

.align-center {
  align-items: center;
}

#map {
  width: 100%;
  height: 40vh;
  border-radius: 5px;
}

#fish-map {
  height: 100dvh;
}

.new-fish-btn {
  position: fixed;
  right: 1.5rem;
  bottom: 5dvh;
  background: rgb(182, 140, 55);
  aspect-ratio: 1/1;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  color: #fff;
  z-index: 100;
}

form .form-field label {
  display: block;
  margin: 15px 0 7px 0;
}
form .form-field input,
form .form-field textarea {
  width: 100%;
  background: rgb(15.6586206897, 18.9551724138, 32.1413793103);
  border: 1px solid rgb(35.7068965517, 43.224137931, 73.2931034483);
  padding: 8px;
  font-size: clamp(16px, 18px, 1rem);
  border-radius: 4px;
  font-family: inherit;
  color: #ffffff;
  outline: none;
  transition: border 0.2s ease-in-out;
}
form .form-field input:focus,
form .form-field textarea:focus {
  border-color: rgb(182, 140, 55);
}
form .form-field select {
  width: 100%;
  font-size: clamp(16px, 18px, 1rem);
  padding: 8px;
  background: rgb(15.6586206897, 18.9551724138, 32.1413793103);
  border: 1px solid rgb(35.7068965517, 43.224137931, 73.2931034483);
  font-family: inherit;
  color: #fff;
}
form .progress-field {
  height: 3dvh;
  display: flex;
  align-items: center;
}
form .progress-field #uploadProgress {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: rgb(103.6708860759, 79.746835443, 31.3291139241);
  appearance: none;
}
form .form-button {
  padding: 2rem 0 2rem 0;
  display: flex;
  justify-content: flex-end;
}
form .form-button button {
  padding: 8px 16px;
  border-radius: 5px;
  background: rgb(182, 140, 55);
  border: none;
  color: #fff;
}

.connection {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.connection .connection-status {
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.online {
  background: rgb(119, 182, 55);
}

.offline {
  background: rgb(182, 80, 55);
}

ul.fish-list {
  list-style: none;
}
ul.fish-list a {
  text-decoration: none;
  color: #fff;
}
ul.fish-list li.fish-item {
  border: 1px solid rgb(35.7068965517, 43.224137931, 73.2931034483);
  border-radius: 5px;
  margin: 1rem 0;
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1.7fr 1.5fr 1.5fr;
  gap: 1rem;
}
ul.fish-list li.fish-item img {
  width: 100px;
  max-height: 50px;
  border-radius: 5px 0 0 5px;
  object-fit: cover;
}
ul.fish-list li.fish-item p {
  display: flex;
  align-items: center;
}

ul#fishing-dates {
  list-style: none;
  padding: 0;
  margin: 1rem;
}
ul#fishing-dates li {
  background: rgb(10.6465517241, 12.8879310345, 21.8534482759);
  border: 1px solid rgb(35.7068965517, 43.224137931, 73.2931034483);
  border-radius: 5px;
  padding: 0.8rem 1.2rem;
  margin: 0.5rem 0;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.loader-container .loader {
  height: 80px;
  aspect-ratio: 1;
  padding: 10px;
  border-radius: 20px;
  box-sizing: border-box;
  position: relative;
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  filter: blur(12px);
  animation: l4-0 1.2s linear infinite alternate;
}
.loader-container .loader:before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(rgba(0, 0, 0, 0) 0 5%, #c02942, rgba(0, 0, 0, 0) 20% 50%);
  animation: l4-1 1s linear infinite;
}
@keyframes l4-0 {
  to {
    border-radius: 50%;
  }
}
@keyframes l4-1 {
  to {
    rotate: 0.5turn;
  }
}

.fish-card img {
  border-radius: 10px;
}
.fish-card .fish-details .fish-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(35.7068965517, 43.224137931, 73.2931034483);
  padding: 8px 0;
}
.fish-card div {
  margin: 1rem 0;
}
.fish-card div h3 {
  margin-bottom: 0.4rem;
}

.stats-card {
  background: rgb(10.6465517241, 12.8879310345, 21.8534482759);
  border: 1px solid rgb(35.7068965517, 43.224137931, 73.2931034483);
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  margin: 1rem 0;
}
.stats-card .stats-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.stats-card .stats-data {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 1.5rem;
  color: rgb(182, 140, 55);
  border-bottom: 1px solid rgb(35.7068965517, 43.224137931, 73.2931034483);
  padding: 0.5rem 0;
  margin: 0.2rem 0;
}
.stats-card .other-stats {
  width: 100%;
}

.alert {
  text-align: center;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  margin: 1rem 0;
  position: fixed;
  left: 50%;
  bottom: 3dvh;
  transform: translateX(-50%);
  z-index: 1000;
  width: 90%;
  max-width: 400px;
}

.alert-error {
  background: rgba(235, 40, 40, 0.4);
  border: 1px solid rgba(235, 40, 40, 0.8);
}

.alert-success {
  background: rgba(170, 235, 40, 0.4);
  border: 1px solid rgba(170, 235, 40, 0.8);
}

@media screen and (min-width: 768px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .gap-1 {
    gap: 1rem;
  }
  main.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 7rem 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .nav .connection {
    display: none;
  }
}

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