@charset "UTF-8";
.btn {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  color: #000;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
}
.btn:hover {
  background: #c2c2c2;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
  text-decoration: none;
}
.btn.large {
  padding: 12px 20px;
  font-size: 16px;
}
.btn.primary {
  background: #1b2d5c;
  color: #fff;
}
.btn.primary:hover {
  background: #061538;
}
.btn.secondary {
  background: #1467ac;
  color: #fff;
}
.btn.secondary:hover {
  background: #1c4779;
}
.btn.danger {
  background: #ce1f1f;
  color: #fff;
}
.btn.danger:hover {
  background: #810606;
}
.btn.disabled {
  background: #f0f0f0;
  color: #333;
  cursor: not-allowed;
  box-shadow: none;
}
.btn.disabled:hover {
  background: #f0f0f0;
  color: #333;
  box-shadow: none;
}
.btn img.btn-icon {
  width: 30px !important;
  height: 30px !important;
  margin: -8px 0 !important;
}

.logbook .logbook-sidetabs {
  display: flex;
  position: sticky;
  top: 0px;
  flex-direction: row-reverse;
  gap: 1px;
  padding: 0 4px;
}
@media (min-width: 1000px) {
  .logbook .logbook-sidetabs {
    display: block;
    position: absolute;
    top: 5px;
    right: -80px;
    width: 80px;
    height: calc(100% - 10px);
    overflow-y: auto;
    padding: 0;
  }
}
.logbook .logbook-sidetabs.stuck {
  z-index: 1001;
}
.logbook .logbook-sidetabs.stuck .tab {
  border-radius: 0 0 8px 8px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.6);
}
.logbook .logbook-sidetabs .tab {
  width: 60px;
  height: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
}
@media (min-width: 1000px) {
  .logbook .logbook-sidetabs .tab {
    opacity: 0.8;
    margin-bottom: 2px;
    margin-left: 3px;
    border-radius: 0 4px 4px 0;
    box-shadow: unset;
  }
  .logbook .logbook-sidetabs .tab.selected {
    margin-left: 0px;
    opacity: 1;
  }
}
.logbook .logbook-sidetabs .tab:hover {
  opacity: 1;
  margin-left: 0px;
}
.logbook .logbook-sidetabs .tab.year {
  background-color: #6B0504;
}
.logbook .logbook-sidetabs .tab.year:not(.selected) {
  display: none;
}
.logbook .logbook-sidetabs .tab.year:not(.selected).show-always {
  display: flex;
}
@media (min-width: 1000px) {
  .logbook .logbook-sidetabs .tab.year:not(.selected) {
    display: flex;
  }
}
.logbook .logbook-sidetabs .tab.year:hover {
  background-color: #990c0a;
}
.logbook .logbook-sidetabs .tab.month {
  background-color: #F17105;
  color: #000;
}
.logbook .logbook-sidetabs .tab.month:not(.selected) {
  display: none;
}
@media (min-width: 1000px) {
  .logbook .logbook-sidetabs .tab.month:not(.selected) {
    display: flex;
  }
}
.logbook .logbook-sidetabs .tab.month:hover {
  background-color: #ff9743;
}
.logbook .logbook-sidetabs .tab.day {
  background-color: #E6C229;
  color: #000;
}
.logbook .logbook-sidetabs .tab.day:hover {
  background-color: #ffe77c;
}
.logbook .logbook-sidetabs .tab.tags {
  background-color: #146b4a;
}
.logbook .logbook-sidetabs .tab.tags:hover {
  background-color: #2D936C;
}
.logbook .logbook-sidetabs .tab.about {
  background-color: #1b2d5c;
}
.logbook .logbook-sidetabs .tab.about:hover {
  background-color: #2f488a;
}
.logbook .logbook-sidetabs .tab a {
  display: flex;
  height: 100%;
  width: 100%;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 500;
}
.logbook .logbook-sidetabs .tab a:hover {
  text-decoration: underline;
}
.logbook .logbook-sidetabs .tab a:visited {
  color: #fff;
}
.logbook .logbook-sidetabs .tab a:active {
  color: #fff;
}

.admin form {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 30px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.admin form p {
  margin-bottom: 10px;
}
.admin form h1 {
  margin-bottom: 20px;
}
.admin form h2 {
  margin-bottom: 5px;
}
.admin form h3 {
  margin-bottom: 20px;
}
.admin form span.warn {
  color: #b22222;
  font-weight: bold;
}
.admin form label,
.admin form input:not(.btn),
.admin form textarea,
.admin form select {
  display: inline-block;
  width: 100%;
  font-size: 18px;
  margin-bottom: 5px;
}
.admin form label {
  font-weight: bold;
}
.admin form textarea,
.admin form input:not(.btn),
.admin form select {
  border: solid 2px #7c7c7c;
  background-color: #fff;
  border-radius: 4px;
  padding: 10px;
  color: #000;
}
.admin form .input.lat,
.admin form .input.lon {
  position: relative;
}
.admin form .input.lat input,
.admin form .input.lon input {
  padding-right: 40px;
}
.admin form .input.lat input.is-invalid,
.admin form .input.lon input.is-invalid {
  background-color: #f38e8e;
}
.admin form input[type=checkbox] {
  width: unset;
}
.admin form input[type=checkbox] + label {
  width: unset;
}
.admin form .button-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  gap: 10px;
}
.admin form .ts-wrapper {
  margin-bottom: 10px;
  border: solid 2px #7c7c7c;
  background-color: #fff;
  border-radius: 4px;
}
.admin form .ts-wrapper .ts-dropdown,
.admin form .ts-wrapper .ts-control,
.admin form .ts-wrapper .ts-control {
  font-size: 18px;
  line-height: 20px;
}
.admin form .ts-wrapper .ts-dropdown input,
.admin form .ts-wrapper .ts-control input,
.admin form .ts-wrapper .ts-control input {
  width: unset;
}
.admin form .picture-form-row {
  display: grid;
  grid-template-columns: 200px auto;
  gap: 20px;
  background-color: #d5dce6;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
}
.admin form .picture-form-row .thumbnail {
  grid-column: 1;
  max-width: 200px;
  position: relative;
}
.admin form .picture-form-row .thumbnail img {
  display: block;
  width: 100%;
  border-radius: 4px;
}
.admin form .picture-form-row .thumbnail.video-thumbnail::before {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}
.admin form .picture-form-row p {
  grid-column: 2;
}
.admin form .existing-legs {
  position: relative;
  border-radius: 10px;
  margin-bottom: 25px;
}
.admin form .existing-legs::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.admin form .existing-legs .scrollable-gutter {
  max-height: 500px;
  overflow-y: auto;
  padding: 10px;
  margin-bottom: 20px;
}
.admin form .leg-form-row {
  display: grid;
  grid-template-columns: 60px auto;
  gap: 10px;
  background-color: #d5dce6;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: all 0.5s;
  border: solid 4px #d5dce6;
}
.admin form .leg-form-row p {
  margin-bottom: 5px;
}
.admin form .leg-form-row:hover {
  border: solid 4px #741717;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2666666667);
}
.admin form .leg-form-row .btn {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.admin form .leg-form-row .btn:first-of-type {
  grid-row: 1;
}
.admin form .leg-form-row .btn:last-of-type {
  grid-row: 2;
}
.admin form .leg-form-row p {
  grid-column: 2;
}
.admin form .new-leg-form-row {
  border-radius: 4px;
}
.admin form .new-leg-form-row.highlight {
  animation: flash 2s ease-in-out;
  background-color: #dadada;
}
@keyframes flash {
  0% {
    background-color: #dadada;
  }
  25% {
    background-color: #a5a6fc;
  }
  50% {
    background-color: #dadada;
  }
  75% {
    background-color: #a5a6fc;
  }
  100% {
    background-color: #dadada;
  }
}
.admin form .current-cover-image {
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2666666667);
  margin-bottom: 20px;
}
.admin form .current-cover-image img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

@keyframes fade-out-and-remove {
  0% {
    transform: scaleY(1);
    opacity: 1;
  }
  99% {
    opacity: 0;
    transform: scaleY(0);
  }
  100% {
    opacity: 0;
    display: none;
  }
}
body.admin {
  background-color: #061538;
  color: #ffffff;
  padding: 0 15px;
}

.hidden-data {
  display: none;
}

.messages {
  position: absolute;
  transform-origin: top;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  list-style: none;
  animation: fade-out-and-remove 1s ease-out 5s forwards;
  pointer-events: none;
}
.messages li {
  width: 100%;
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4666666667);
  text-align: center;
}
.messages li.success {
  background-color: #155724;
  color: #c3e6cb;
}
.messages li.error {
  background-color: #721c24;
  color: #f5c6cb;
}
.messages li.info {
  background-color: #3bc1e2;
  color: #162a3f;
}

.admin {
  padding: 20px 0;
  margin: 20px auto;
  max-width: 1180px;
}
.admin .back-link {
  font-size: 1.4em;
  margin-bottom: 4px;
  display: block;
  color: #ffffff;
}
.admin .header h1 {
  margin-bottom: 15px;
}
.admin .navigation {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  background-color: #f0f0f0;
  color: #000000;
  border-radius: 8px;
  padding: 10px;
}
.admin .navigation .navigation-section p {
  margin: 10px 0;
  color: #000000;
}
.admin .navigation .navigation-section .navigation-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.admin hr {
  margin: 20px 0;
  border: none;
  border-top: solid 1px #ccc;
}
.admin h2 {
  margin-bottom: 15px;
}
.admin .pagination-filter-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 8px;
  background-color: #f0f0f0;
  color: #061538;
}
.admin .pagination-filter-row .filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.admin .pagination-filter-row .filter-buttons button {
  width: 144px;
  margin: 5px;
}
.admin .entry-list {
  color: #000000;
}
.admin .entry-list .no-entries-found {
  text-align: center;
  font-size: 1.2em;
  color: #ffffff;
  margin: 20px 0;
}
.admin .entry-list .entry {
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  background-color: #f0f0f0;
  border: solid 3px #f0f0f0;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4666666667);
  position: relative;
}
.admin .entry-list .entry .entry-backdrop-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
  border-radius: 8px;
}
.admin .entry-list .entry .entry-backdrop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.admin .entry-list .entry .content {
  z-index: 1;
}
.admin .entry-list .entry .content h3,
.admin .entry-list .entry .content p {
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
}
.admin .entry-list .entry .content h3 {
  margin-bottom: 8px;
  font-size: 1.4em;
}
.admin .entry-list .entry .content .buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 10px;
  gap: 10px;
}
.admin .edit-user-list .edit-user {
  display: grid;
  grid-template-columns: auto 180px 150px;
  column-gap: 10px;
  padding: 18px 20px;
  background-color: #f0f0f0;
  border: solid 3px #f0f0f0;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4666666667);
  position: relative;
}
.admin .confirm-restore-modal,
.admin .confirm-delete-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.662745098);
  align-items: center;
  justify-content: center;
  z-index: 1002;
  display: none;
}
.admin .confirm-restore-modal.active,
.admin .confirm-delete-modal.active {
  display: flex;
}
.admin .confirm-restore-modal .confirm-restore-modal-content,
.admin .confirm-restore-modal .confirm-delete-modal-content,
.admin .confirm-delete-modal .confirm-restore-modal-content,
.admin .confirm-delete-modal .confirm-delete-modal-content {
  position: relative;
  margin: 0 10px;
  background-color: #ffffff;
  color: #000000;
  padding: 30px;
  max-width: 500px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  align-items: center;
  justify-content: center;
}
.admin .confirm-restore-modal .confirm-restore-modal-content img,
.admin .confirm-restore-modal .confirm-delete-modal-content img,
.admin .confirm-delete-modal .confirm-restore-modal-content img,
.admin .confirm-delete-modal .confirm-delete-modal-content img {
  width: 100%;
  height: auto;
  object-fit: scale-down;
  border-radius: 10px;
}
.admin .confirm-restore-modal span.close,
.admin .confirm-delete-modal span.close {
  position: absolute;
  top: 5px;
  right: 10px;
  color: #444444;
  font-size: 2em;
  cursor: pointer;
  z-index: 1003;
  transition: all 0.3s ease;
}
.admin .confirm-restore-modal span.close:hover,
.admin .confirm-delete-modal span.close:hover {
  color: #000000;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
}
.admin .mailing-list {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 30px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.admin .mailing-list h1 {
  margin-bottom: 15px;
}
.admin .mailing-list ul {
  margin-left: 20px;
}
.admin .mailing-list ul li span:first-of-type {
  font-weight: bold;
  margin-right: 20px;
}

@font-face {
  font-family: "Caveat";
  src: url("/static/fonts/Caveat-VariableFont_wght.ttf");
}
@font-face {
  font-family: "Inter";
  src: url("/static/fonts/Inter-VariableFont_opsz,wght.ttf");
}
@font-face {
  font-family: "Stardos Stencil";
  src: url("/static/fonts/StardosStencil-Regular.ttf");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Arial", sans-serif;
  background-color: #312c28;
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 1000px) {
  body {
    height: 100vh;
  }
}

a {
  text-decoration: none;
  color: #1b2d5c;
}

a:hover {
  text-decoration: underline;
  color: #061538;
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: #1b2d5c;
  padding: 6px;
  margin-bottom: 20px;
}
@media (min-width: 1000px) {
  header {
    height: 45px;
    padding: 0;
    margin-bottom: 0;
  }
}
header a.site-title-nav {
  font-size: 1.3em;
}
header a {
  color: #1b2d5c;
  text-decoration: none;
}
header a:hover {
  text-decoration: none;
}
header a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}

@media (min-width: 1000px) {
  .logbook-container {
    height: calc(100% - 35px - 45px - 2px);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.logbook-cover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: black;
  border-radius: 4px;
  background: #1b2d5c;
  color: white;
  position: relative;
  z-index: 0;
  padding: 20px 20px 50px 20px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.8), 5px 10px 10px rgba(0, 0, 0, 0.6), -5px -5px 5px rgba(0, 0, 0, 0.2), -5px 5px 5px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(0, 0, 0, 0.1);
}
.logbook-cover .leather-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: -1;
  overflow: hidden;
}
.logbook-cover .leather-image img {
  min-height: 100%;
}
@media (min-width: 1000px) {
  .logbook-cover {
    border-radius: 4px 8px 8px 4px;
    width: calc(100% - 60px);
    width: calc(100% - 80px);
    max-width: 1000px;
    margin: 20px auto;
    background: #1b2d5c;
    background: linear-gradient(90deg, #1b2d5c 0%, #1b2d5c 1%, #061538 1.5%, #061538 3%, #1b2d5c 4%, #1b2d5c 100%);
    min-height: calc(100% - 35px - 45px - 40px - 2px);
    padding: 35px 13px 30px calc(4% + 13px);
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.8), 5px 10px 10px rgba(0, 0, 0, 0.6), -5px -5px 5px rgba(0, 0, 0, 0.2), -5px 5px 5px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(0, 0, 0, 0.1);
  }
}
.logbook-cover h1 {
  font-size: 3.2em;
  margin-bottom: 10px;
  text-align: center;
  font-size: 48px;
  padding-bottom: 0.35rem;
  font-family: "Stardos Stencil", serif;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5), -1px -1px 2px rgba(255, 255, 255, 0.9);
}
.logbook-cover h2 {
  color: #afafaf;
  font-size: 2.8em;
  margin-bottom: 30px;
  font-family: "Stardos Stencil", serif;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5), -1px -1px 2px rgba(255, 255, 255, 0.9);
}
.logbook-cover p {
  margin-top: 40px;
}
.logbook-cover .cover-image {
  position: relative;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(197, 197, 197, 0.2666666667);
}
.logbook-cover .cover-image::after {
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 10px;
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.6666666667);
}
.logbook-cover .cover-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: fill;
  display: block;
  max-height: 30vh;
}

.error-page,
.imprint-and-data {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 25px;
  background-color: #ecebde;
  border-radius: 10px;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.8), 5px 10px 10px rgba(0, 0, 0, 0.6), -5px -5px 5px rgba(0, 0, 0, 0.2), -5px 5px 5px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1000px) {
  .error-page,
  .imprint-and-data {
    margin: 20px auto;
  }
}
.error-page h1,
.imprint-and-data h1 {
  margin-bottom: 15px;
  color: #061538;
}
.error-page h2,
.imprint-and-data h2 {
  margin-bottom: 10px;
}
.error-page h3,
.imprint-and-data h3 {
  margin-bottom: 5px;
  color: #061538;
}
.error-page h4,
.imprint-and-data h4 {
  margin-bottom: 5px;
}
.error-page p,
.imprint-and-data p {
  margin-bottom: 15px;
  color: #333;
}
.error-page #matomo-opt-out,
.imprint-and-data #matomo-opt-out {
  margin-bottom: 15px;
}
.error-page .revoke-osm-dialog,
.imprint-and-data .revoke-osm-dialog {
  display: none;
}
.error-page .revoke-osm-dialog.active,
.imprint-and-data .revoke-osm-dialog.active {
  display: block;
}

.error-page {
  text-align: center;
  color: #333;
  font-family: "Inter", "Arial", sans-serif;
}
.error-page h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #061538;
}
.error-page p {
  font-size: 1.2em;
  margin-bottom: 20px;
}
.error-page a {
  color: #1b2d5c;
  font-weight: bold;
}
.error-page a:hover {
  text-decoration: underline;
}
.error-page img.error-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin-top: 20px;
}

.logbook {
  position: relative;
  padding: 4px;
}
.logbook ol,
.logbook ul {
  padding-left: 32px;
  margin: 12px 0;
}
.logbook ol li,
.logbook ul li {
  margin-bottom: 6px;
  padding-left: 4px;
}
@media (min-width: 1000px) {
  .logbook {
    border-radius: 8px;
    width: calc(100% - 80px - 10px);
    max-width: 2000px;
    margin: 0 auto;
    background: #1b2d5c;
    background: linear-gradient(90deg, #1b2d5c 0%, #1b2d5c 44%, #061538 46%, #061538 54%, #1b2d5c 56%, #1b2d5c 100%);
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.8), 5px 10px 10px rgba(0, 0, 0, 0.6), -5px -5px 5px rgba(0, 0, 0, 0.2), -5px 5px 5px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 7px 17px;
  }
  .logbook .logbook-other-pages {
    position: relative;
    height: 100%;
    background: #ecebde;
    border-radius: 5px;
    box-shadow: 3px 0 0 #d3d1c9, -3px 0 0 #d3d1c9, 6px 0 0 #bebcb4, -6px 0 0 #bebcb4, 9px 0 0 #acaaa1, -9px 0 0 #acaaa1;
  }
}
.logbook .logbook-entry {
  color: black;
  border-radius: 8px;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.8), 5px 10px 10px rgba(0, 0, 0, 0.6), -5px -5px 5px rgba(0, 0, 0, 0.2), -5px 5px 5px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1000px) {
  .logbook .logbook-entry {
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
    height: 100%;
    display: grid;
    grid-template-columns: 50% 50%;
    perspective: 3000px;
    border: unset;
    border-radius: 2px;
    box-shadow: unset;
  }
}
.logbook .logbook-entry .about-page {
  padding: 20px;
}
.logbook .logbook-entry .about-page h1,
.logbook .logbook-entry .about-page h2 {
  margin-bottom: 15px;
  color: #061538;
}
.logbook .logbook-entry .about-page p {
  margin-bottom: 10px;
}
.logbook .logbook-entry .about-page .image-group {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.logbook .logbook-entry .about-page img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 10px 0;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2666666667);
}
.logbook .logbook-entry .page-left {
  background: #ecebde;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
@media (min-width: 1000px) {
  .logbook .logbook-entry .page-left {
    padding: 10px 30px 10px 10px;
    border-radius: 10px 0 0 10px;
    grid-column: 1;
    grid-row: 1;
    background: linear-gradient(90deg, #ecebde 0%, #fafafa 96%, #d6d2c3 98%, #4a4640 100%);
    overflow-y: auto;
    transform-origin: right;
    backface-visibility: hidden;
  }
  .logbook .logbook-entry .page-left.old {
    clip-path: polygon(0% 0%, 100% 0, 100% 100%, 60px 100%, 0% calc(100% - 60px));
    animation: fold-right 0.8s ease-in forwards;
  }
  .logbook .logbook-entry .page-left.old .page-flip {
    width: 60px;
    height: 60px;
  }
}
@media (min-width: 1000px) and (prefers-reduced-motion: reduce) {
  .logbook .logbook-entry .page-left.old {
    animation: none;
  }
}
@media (min-width: 1000px) {
  @keyframes fold-right {
    0% {
      transform: rotate3d(0, 1, 0, 0deg);
    }
    100% {
      transform: rotate3d(0, 1, 0, 180deg);
    }
  }
  .logbook .logbook-entry .page-left.new {
    transform: rotate3d(0, 1, 0, 180deg);
    animation: unfold-right 0.8s ease-in forwards;
  }
}
@media (min-width: 1000px) and (prefers-reduced-motion: reduce) {
  .logbook .logbook-entry .page-left.new {
    transform: unset;
    animation: none;
  }
}
@media (min-width: 1000px) {
  @keyframes unfold-right {
    0% {
      transform: rotate3d(0, 1, 0, 180deg);
    }
    100% {
      transform: rotate3d(0, 1, 0, 0deg);
    }
  }
}
.logbook .logbook-entry .page-left .title-panel {
  margin: 20px 0 10px 0;
  margin-bottom: 10px;
  font-family: "Caveat", cursive;
  color: #061538;
  font-size: 1.8em;
}
.logbook .logbook-entry .page-left .title-panel h1 {
  font-size: 1em;
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 600;
  color: #061538;
}
.logbook .logbook-entry .page-left .title-panel .information {
  margin: 5px 0 0 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  font-size: 0.8em;
  color: #000000;
  border: solid 1px #000000;
  border-radius: 10px;
}
.logbook .logbook-entry .page-left .title-panel .information p {
  padding: 10px;
  border-bottom: solid 1px #000000;
  border-radius: 10px;
}
.logbook .logbook-entry .page-left .title-panel .information p .label {
  font-family: "Inter", "Arial", sans-serif;
  color: #000000;
  font-size: 0.6em;
}
.logbook .logbook-entry .page-left .title-panel .months-list,
.logbook .logbook-entry .page-left .title-panel .years-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}
.logbook .logbook-entry .page-left .title-panel .months-list .month-goto-month-btn,
.logbook .logbook-entry .page-left .title-panel .months-list .year-goto-year-btn,
.logbook .logbook-entry .page-left .title-panel .years-list .month-goto-month-btn,
.logbook .logbook-entry .page-left .title-panel .years-list .year-goto-year-btn {
  background-color: #2f488a;
  font-family: "Inter", "Arial", sans-serif;
  color: white;
  padding: 4px 10px;
  border-radius: 3px;
  margin-right: 5px;
  margin-bottom: 5px;
  font-size: 0.6em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.logbook .logbook-entry .page-left .title-panel .months-list .month-goto-month-btn:hover,
.logbook .logbook-entry .page-left .title-panel .months-list .year-goto-year-btn:hover,
.logbook .logbook-entry .page-left .title-panel .years-list .month-goto-month-btn:hover,
.logbook .logbook-entry .page-left .title-panel .years-list .year-goto-year-btn:hover {
  background-color: #061538;
}
.logbook .logbook-entry .page-left .title-panel .months-list .month-goto-month-btn.selected,
.logbook .logbook-entry .page-left .title-panel .months-list .year-goto-year-btn.selected,
.logbook .logbook-entry .page-left .title-panel .years-list .month-goto-month-btn.selected,
.logbook .logbook-entry .page-left .title-panel .years-list .year-goto-year-btn.selected {
  background-color: #1b2d5c;
  cursor: default;
}
.logbook .logbook-entry .page-left .map-container {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1000px) {
  .logbook .logbook-entry .page-left .map-container {
    height: 100%;
  }
}
.logbook .logbook-entry .page-left .map-container .map {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: solid 3px #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.logbook .logbook-entry .page-left .map-container .map .map-consent-dialog {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-image: url("/static/img/WoodenTable@0.7x.jpg");
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  z-index: 10000;
}
.logbook .logbook-entry .page-left .map-container .map .map-consent-dialog .dialog-content {
  background-color: #fff;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  text-align: center;
}
.logbook .logbook-entry .page-left .map-container .map .map-consent-dialog .dialog-content h2 {
  margin-bottom: 5px;
  font-size: 1.5em;
  color: #061538;
}
.logbook .logbook-entry .page-left .map-container .map .map-consent-dialog .dialog-content p {
  margin-bottom: 5px;
  font-size: 1em;
}
.logbook .logbook-entry .page-left .tag-container {
  margin: 10px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.logbook .logbook-entry .page-left .tag-container .tag {
  background-color: #007bff;
  color: white;
  padding: 5px 8px;
  border-radius: 3px;
  margin-right: 5px;
  margin-bottom: 5px;
  font-size: 0.9em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.logbook .logbook-entry .page-left .tag-container .tag:hover {
  background-color: #0056b3;
}
.logbook .logbook-entry .page-right {
  background: #ecebde;
  padding: 10px 16px;
  border-radius: 0 0 10px 10px;
}
@media (min-width: 1000px) {
  .logbook .logbook-entry .page-right {
    grid-column: 2;
    grid-row: 1;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    padding: 10px 10px 10px 30px;
    background: linear-gradient(-90deg, #ecebde 0%, #fafafa 96%, #d6d2c3 98%, rgb(74, 70, 64) 100%);
    overflow-y: auto;
    overflow-x: visible;
    backface-visibility: hidden;
    transform-origin: left;
  }
  .logbook .logbook-entry .page-right.old {
    animation: fold-left 0.8s ease-in forwards;
    clip-path: polygon(0% 0%, 100% 0, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0% 100%);
  }
  .logbook .logbook-entry .page-right.old .page-flip {
    width: 60px;
    height: 60px;
  }
}
@media (min-width: 1000px) and (prefers-reduced-motion: reduce) {
  .logbook .logbook-entry .page-right.old {
    animation: none;
  }
}
@media (min-width: 1000px) {
  @keyframes fold-left {
    0% {
      transform: rotate3d(0, 1, 0, 0deg);
    }
    100% {
      transform: rotate3d(0, 1, 0, -180deg);
    }
  }
  .logbook .logbook-entry .page-right.new {
    transform: rotate3d(0, 1, 0, -180deg);
    animation: unfold-left 0.8s ease-in forwards;
  }
}
@media (min-width: 1000px) and (prefers-reduced-motion: reduce) {
  .logbook .logbook-entry .page-right.new {
    transform: unset;
    animation: none;
  }
}
@media (min-width: 1000px) {
  @keyframes unfold-left {
    0% {
      transform: rotate3d(0, 1, 0, -180deg);
    }
    100% {
      transform: rotate3d(0, 1, 0, 0deg);
    }
  }
}
.logbook .logbook-entry .page-right .month-calendar,
.logbook .logbook-entry .page-right .year-calendar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 10px;
  justify-content: center;
}
.logbook .logbook-entry .page-right .month-calendar .day,
.logbook .logbook-entry .page-right .month-calendar .month,
.logbook .logbook-entry .page-right .year-calendar .day,
.logbook .logbook-entry .page-right .year-calendar .month {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: solid 1px #000000;
  flex: 1 1 160px;
  padding: 10px 10px;
}
.logbook .logbook-entry .page-right .month-calendar .day h2,
.logbook .logbook-entry .page-right .month-calendar .month h2,
.logbook .logbook-entry .page-right .year-calendar .day h2,
.logbook .logbook-entry .page-right .year-calendar .month h2 {
  font-size: 1.2em;
  color: #061538;
}
.logbook .logbook-entry .page-right .month-calendar .day p,
.logbook .logbook-entry .page-right .month-calendar .month p,
.logbook .logbook-entry .page-right .year-calendar .day p,
.logbook .logbook-entry .page-right .year-calendar .month p {
  margin-bottom: 2px;
}
.logbook .logbook-entry .page-right .month-calendar .day .btn,
.logbook .logbook-entry .page-right .month-calendar .month .btn,
.logbook .logbook-entry .page-right .year-calendar .day .btn,
.logbook .logbook-entry .page-right .year-calendar .month .btn {
  width: 100%;
}
.logbook .logbook-entry .page-right .month-calendar .day .day-number,
.logbook .logbook-entry .page-right .month-calendar .day .day-entry-content,
.logbook .logbook-entry .page-right .month-calendar .day .month-name,
.logbook .logbook-entry .page-right .month-calendar .day .month-entries-content,
.logbook .logbook-entry .page-right .month-calendar .month .day-number,
.logbook .logbook-entry .page-right .month-calendar .month .day-entry-content,
.logbook .logbook-entry .page-right .month-calendar .month .month-name,
.logbook .logbook-entry .page-right .month-calendar .month .month-entries-content,
.logbook .logbook-entry .page-right .year-calendar .day .day-number,
.logbook .logbook-entry .page-right .year-calendar .day .day-entry-content,
.logbook .logbook-entry .page-right .year-calendar .day .month-name,
.logbook .logbook-entry .page-right .year-calendar .day .month-entries-content,
.logbook .logbook-entry .page-right .year-calendar .month .day-number,
.logbook .logbook-entry .page-right .year-calendar .month .day-entry-content,
.logbook .logbook-entry .page-right .year-calendar .month .month-name,
.logbook .logbook-entry .page-right .year-calendar .month .month-entries-content {
  z-index: 2;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
}
.logbook .logbook-entry .page-right .month-calendar .day .entry-backdrop-image,
.logbook .logbook-entry .page-right .month-calendar .month .entry-backdrop-image,
.logbook .logbook-entry .page-right .year-calendar .day .entry-backdrop-image,
.logbook .logbook-entry .page-right .year-calendar .month .entry-backdrop-image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  opacity: 0.5;
}
.logbook .logbook-entry .page-right .month-calendar .day .entry-backdrop-image::after,
.logbook .logbook-entry .page-right .month-calendar .month .entry-backdrop-image::after,
.logbook .logbook-entry .page-right .year-calendar .day .entry-backdrop-image::after,
.logbook .logbook-entry .page-right .year-calendar .month .entry-backdrop-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 4px black, inset 0 0 7px black;
}
.logbook .logbook-entry .page-right .month-calendar .day .entry-backdrop-image img,
.logbook .logbook-entry .page-right .month-calendar .month .entry-backdrop-image img,
.logbook .logbook-entry .page-right .year-calendar .day .entry-backdrop-image img,
.logbook .logbook-entry .page-right .year-calendar .month .entry-backdrop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logbook .logbook-entry .page-right .month-calendar .month,
.logbook .logbook-entry .page-right .year-calendar .month {
  min-width: 25%;
}
.logbook .logbook-entry .page-right .gallery {
  margin-bottom: 30px;
}
@media (min-width: 1000px) {
  .logbook .logbook-entry .page-right .gallery {
    margin-left: 10px;
  }
}
.logbook .logbook-entry .page-right .gallery:focus {
  outline: dashed 2px #888;
  outline: 5px auto -webkit-focus-ring-color;
  border-radius: 5px;
}
.logbook .logbook-entry .page-right .gallery .img-container {
  width: 80%;
  height: 360px;
  margin-right: 10px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.logbook .logbook-entry .page-right .gallery .img-container img, .logbook .logbook-entry .page-right .gallery .img-container video {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.logbook .logbook-entry .page-right .gallery .flickity-page-dots {
  bottom: -35px;
}
.logbook .logbook-entry .page-right .gallery .flickity-page-dots .dot {
  transition: all 0.3s ease;
}
.logbook .logbook-entry .page-right .gallery .flickity-page-dots .dot.is-selected {
  background-color: #1b2d5c;
  width: 12px;
  height: 12px;
  margin-bottom: 2px;
}
.logbook .logbook-entry .page-right .content {
  padding: 5px;
  font-family: "Inter", "Arial", sans-serif;
  color: #050642;
  font-size: 1.1em;
}
@media (min-width: 1000px) {
  .logbook .logbook-entry .page-right .content {
    margin: 10px;
  }
}
.logbook .logbook-entry .page-right .content p {
  margin-bottom: 6px;
}
.logbook .logbook-entry .page-right .tags p {
  padding: 10px;
}
.logbook .logbook-entry .page-right .tags p .label {
  font-family: "Inter", "Arial", sans-serif;
  color: #000000;
}
.logbook .logbook-entry .page-right .tags p .tag {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 2px 5px;
  border-radius: 3px;
  margin-right: 5px;
  font-size: 0.9em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.logbook .logbook-entry .page-right .tags p .tag:hover {
  background-color: #0056b3;
}
.logbook .logbook-entry .page-right .tag-entries {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 10px;
}
.logbook .logbook-entry .page-right .tag-entries .tag-entry {
  background-color: #f8f9fa;
  border: solid 1px #ced4da;
  padding: 10px;
  border-radius: 5px;
  font-size: 0.9em;
  position: relative;
}
.logbook .logbook-entry .page-right .tag-entries .tag-entry p {
  margin-bottom: 5px;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
}
.logbook .logbook-entry .page-right .tag-entries .tag-entry .tag-entry-content {
  position: relative;
  z-index: 2;
}
.logbook .logbook-entry .page-right .tag-entries .tag-entry .entry-backdrop-image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  opacity: 0.5;
  border-radius: 5px;
}
.logbook .logbook-entry .page-right .tag-entries .tag-entry .entry-backdrop-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 4px black, inset 0 0 7px black;
  border-radius: 5px;
}
.logbook .logbook-entry .page-right .tag-entries .tag-entry .entry-backdrop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.logbook .logbook-entry .page-right h2.reaction-heading {
  font-size: 1.2em;
  margin-top: 20px;
}
.logbook .logbook-entry .page-right .reactions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 10px;
  margin-bottom: 20px;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes jump {
  0% {
    transform: translateY(0);
    background-color: #fff;
    color: black;
  }
  50% {
    transform: translateY(-5px);
    background-color: #da0000;
    color: white;
  }
  100% {
    transform: translateY(0);
    background-color: #fff;
    color: black;
  }
}
.logbook .logbook-entry .page-right .reactions .reaction {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.logbook .logbook-entry .page-right .reactions .reaction:hover {
  transform: scale(1.1);
}
.logbook .logbook-entry .page-right .reactions .reaction:nth-child(even) {
  top: 10px;
}
.logbook .logbook-entry .page-right .reactions .reaction i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 18px;
  border-radius: 50%;
  margin-right: 5px;
  border: solid 4px #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.logbook .logbook-entry .page-right .reactions .reaction i.fa-sailboat {
  background-color: #1b2d5c;
  color: white;
}
.logbook .logbook-entry .page-right .reactions .reaction i.fa-anchor {
  background-color: #18212b;
  color: white;
}
.logbook .logbook-entry .page-right .reactions .reaction i.fa-thumbs-up {
  background-color: #5bff81;
  color: black;
}
.logbook .logbook-entry .page-right .reactions .reaction i.fa-heart {
  background-color: #bd0432;
  color: white;
}
.logbook .logbook-entry .page-right .reactions .reaction i.fa-life-ring {
  background-color: #e62200;
  color: white;
}
.logbook .logbook-entry .page-right .reactions .reaction i.fa-water {
  background-color: #008eec;
  color: white;
}
.logbook .logbook-entry .page-right .reactions .reaction i.fa-sun {
  background-color: #ffd900;
  color: black;
}
.logbook .logbook-entry .page-right .reactions .reaction i.fa-wind {
  background-color: #73c5e6;
  color: black;
}
.logbook .logbook-entry .page-right .reactions .reaction i.fa-face-smile-beam {
  background-color: #f3c853;
  color: black;
}
.logbook .logbook-entry .page-right .reactions .reaction i.fa-face-grin-squint {
  background-color: #f3c853;
  color: black;
}
.logbook .logbook-entry .page-right .reactions .reaction .reaction-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  font-size: 0.8em;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.logbook .logbook-entry .page-right .reactions .reaction.animate-reaction i::before {
  animation: pulse 1s ease-in-out;
}
.logbook .logbook-entry .page-right .reactions .reaction.animate-reaction .reaction-count {
  animation: jump 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.logbook .logbook-entry .page-right .reactions .reaction.new-reaction.active {
  transform: scale(1.1);
}
.logbook .logbook-entry .page-right .reactions .reaction.new-reaction.active .new-reactions-modal {
  display: flex;
}
.logbook .logbook-entry .page-right .reactions .reaction.new-reaction .new-reactions-modal {
  display: none;
  position: absolute;
  bottom: -22px;
  left: -15px;
  width: 116px;
  gap: 5px;
  flex-wrap: wrap;
}
.logbook .logbook-entry .page-right .reactions .reaction.new-reaction .new-reactions-modal .reaction {
  top: 0;
  margin-bottom: 5px;
}
.logbook .logbook-entry .page-right .reactions .reaction.new-reaction .new-reactions-modal .reaction i {
  width: 35px;
  height: 35px;
  font-size: 12px;
}
.logbook .logbook-entry .page-left .page-flip,
.logbook .logbook-entry .page-right .page-flip {
  display: none;
}
@media (min-width: 1000px) {
  .logbook .logbook-entry .page-left .page-flip,
  .logbook .logbook-entry .page-right .page-flip {
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10000;
    background-color: #ecebde;
  }
  .logbook .logbook-entry .page-left .page-flip .page-flip-corner,
  .logbook .logbook-entry .page-right .page-flip .page-flip-corner {
    width: 100%;
    height: 100%;
    padding: 0 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
  }
  .logbook .logbook-entry .page-left .page-flip:hover,
  .logbook .logbook-entry .page-right .page-flip:hover {
    width: 60px;
    height: 60px;
  }
  .logbook .logbook-entry .page-left .page-flip:hover .page-flip-corner,
  .logbook .logbook-entry .page-right .page-flip:hover .page-flip-corner {
    padding: 8px 10px;
  }
  .logbook .logbook-entry .page-left .page-flip.bottom-right,
  .logbook .logbook-entry .page-right .page-flip.bottom-right {
    right: 0;
    bottom: 0;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #ecebde;
    background: linear-gradient(-45deg, rgb(236, 235, 222) 0%, rgb(234, 234, 221) 40%, rgb(0, 0, 0) 60%);
  }
  .logbook .logbook-entry .page-left .page-flip.bottom-right .page-flip-corner,
  .logbook .logbook-entry .page-right .page-flip.bottom-right .page-flip-corner {
    border-top-left-radius: 10px;
    box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.1333333333);
    clip-path: polygon(-10px -10px, 0 100%, 100% 0);
  }
  .logbook .logbook-entry .page-left .page-flip.bottom-right:hover .page-flip-corner,
  .logbook .logbook-entry .page-right .page-flip.bottom-right:hover .page-flip-corner {
    box-shadow: -4px -4px 4px rgba(0, 0, 0, 0.2);
  }
  .logbook .logbook-entry .page-left .page-flip.bottom-left,
  .logbook .logbook-entry .page-right .page-flip.bottom-left {
    left: 0;
    bottom: 0;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    background: #ecebde;
    background: linear-gradient(45deg, rgb(236, 235, 222) 0%, rgb(234, 234, 221) 40%, rgb(0, 0, 0) 60%);
  }
  .logbook .logbook-entry .page-left .page-flip.bottom-left .page-flip-corner,
  .logbook .logbook-entry .page-right .page-flip.bottom-left .page-flip-corner {
    border-top-right-radius: 10px;
    box-shadow: 1px -1px 2px rgba(0, 0, 0, 0.1333333333);
    clip-path: polygon(0 0, 100% 100%, calc(100% + 10px) -10px);
    display: flex;
    align-items: right;
    justify-content: right;
  }
  .logbook .logbook-entry .page-left .page-flip.bottom-left:hover .page-flip-corner,
  .logbook .logbook-entry .page-right .page-flip.bottom-left:hover .page-flip-corner {
    box-shadow: 4px -4px 4px rgba(0, 0, 0, 0.2);
  }
}

footer {
  text-align: center;
  padding: 10px;
  font-size: 0.8em;
  color: #666;
  background-color: #f8f9fa;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 10px;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}
@media (min-width: 1000px) {
  footer {
    margin-top: 0;
  }
}
footer a {
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

.image-full-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.662745098);
  align-items: center;
  justify-content: center;
  z-index: 10002;
  display: none;
}
.image-full-modal.active {
  display: flex;
}
.image-full-modal .image-full-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.image-full-modal .image-full-modal-content img {
  display: none;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: scale-down;
  border-radius: 10px;
}
.image-full-modal .image-full-modal-content img.active {
  display: block;
}
.image-full-modal .image-full-modal-content video {
  display: none;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: scale-down;
  border-radius: 10px;
}
.image-full-modal .image-full-modal-content video.active {
  display: block;
}
.image-full-modal span.close {
  position: absolute;
  top: 5px;
  right: 10px;
  color: #e0e0e0;
  font-size: 2em;
  cursor: pointer;
  z-index: 1003;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.image-full-modal span.close:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
.image-full-modal span.prev-image-btn,
.image-full-modal span.next-image-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #e0e0e0;
  font-size: 2em;
  cursor: pointer;
  z-index: 1003;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 0, 0, 0.662745098);
  border-radius: 100%;
  width: 40px;
  height: 40px;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.image-full-modal span.prev-image-btn:hover,
.image-full-modal span.next-image-btn:hover {
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.8509803922);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.image-full-modal span.prev-image-btn {
  left: 10px;
}
.image-full-modal span.next-image-btn {
  right: 10px;
}
.image-full-modal .image-full-caption {
  color: #e0e0e0;
  font-size: 1em;
  text-align: center;
  padding: 10px;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0 0 10px 10px;
  cursor: pointer;
  transition: all 0.5s ease;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.image-full-modal .image-full-caption.closed {
  background: rgba(0, 0, 0, 0.2);
  width: unset;
  border-radius: 20px;
  bottom: 10px;
}
.image-full-modal .image-full-caption.closed:hover {
  background: rgba(0, 0, 0, 0.5);
}
.image-full-modal .image-full-caption p.closed {
  display: none;
}
.image-full-modal .image-full-caption span.toggle-caption-btn:hover {
  color: #ffffff;
}
.image-full-modal .image-full-caption span.toggle-caption-btn .fa-chevron-down {
  transition: all 0.5s ease;
}
.image-full-modal .image-full-caption span.toggle-caption-btn.closed .fa-chevron-down {
  transform: rotate(180deg);
}

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