:root {
  --blue: #5f9cfb;
  --blueish: #bbd4fe;
  --bluebackground: #edf4f5;
  --bluelight: #edf2fa;
  --bluedark: #3081fe;
  --green: #31d675;
  --greenlight: #c8ebb5;
  --grey: #9499a0;
  --greyish: #d1d5da;
  --greylight: #ededed;
  --greylightest: #f5f5f5;
  --greydark: #4f545a;
  --red: #ff0d0d;
  --yellow: #f8d91d;
  --purple: #7923ef;
  --purplelight: #d3c0d2;
  --black: #000;
  --white: #fff;
}

body {
  font-family: Geomanist, Arial, sans-serif;
  font-size: 12px;
  color: #000;
  background-color: var(--bluebackground);
  padding: 10px 20px 10px 20px;
  z-index: 0;
  margin: 0;
  transition: background-color 0.5s ease;
}

h1,
h2,
h3,
h4 {
  margin: 5px 0 10px 0;
  font-family: Geomanist, Arial;
}

h1 {
  font-size: 24px;
}

h1 i {
  font-size: 18px;
}
h2 {
  font-size: clamp(18px, 22px, 22px);
  line-height: 1.2;
  white-space: nowrap;
}
h3 {
  font-size: 16px;
}

h4 {
  font-size: 15px;
}

h1,
h2,
h3 {
  font-weight: 500;
}

#days h2 {
  overflow: initial;
  white-space: initial;
}

#days h3 {
  width: fit-content;
  height: fit-content;
  inline-size: fit-content;
  block-size: fit-content;
  margin-left: 34px;
}

li h3 {
  font-weight: 400;
  display: inline-table;
  padding: 3px;
  margin-top: 15px;
}
li h4 {
  font-weight: 400;
  font-size: 80%;
  background-color: var(--greylight);
  display: inline-table;
  padding: 3px;
}
.smallText {
  font-size: 11px !important;
  font-weight: normal;
}
.smallerText {
  font-size: 85% !important;
  font-weight: normal;
}

.verySmallText {
  font-size: 9px !important;
  font-weight: normal;
}

h3.searchResult {
  cursor: pointer;
  padding-top: 15px;
}

.listOfDates li,
.listOfPeople li {
  font-size: 14px;
  margin: 15px;
}
a {
  border-bottom: 1px var(--greyish) dashed;
  text-decoration: none;
  color: black;
}

h1 a,
h2 a,
.menu-items a,
.no_underline {
  border: 0;
}

h1 a {
  text-decoration: none;
  color: black;
  white-space: nowrap;
}
h2 a {
  text-decoration: none;
}

.menu-items .icon,
.hidden {
  display: none;
}

label {
  position: relative;
  top: 25px;
  margin-left: 10px;
}
.form-wrap label {
  top: 17px;
  left: 3px;
  font-size: 9px;
}
.form-wrap label .text::first-letter {
  text-transform: lowercase;
}
label[for="saveCheckin"],
label[for="saveLatLng"] {
  top: 2px;
  margin: 8px 0 8px 30px;
  font-size: 14px;
}
input,
textarea {
  width: 100%;
  display: block;
  border: none;
  border-bottom: 1px solid var(--greyish);
  padding: 10px 10px 10px 30px;
  box-sizing: border-box;
  font-family: Geomanist, Arial;
  font-size: 14px;
  background-color: var(--greylight);
}

form[name="commentForm"] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

form[name="commentForm"] textarea {
  font-size: 16px !important;
  height: 40px;
  overflow-y: hidden;
  resize: none;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  resize: vertical;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}
form[name^="commentForm"] textarea:focus {
  border-color: var(--blue); /* blauw */
  outline: none;
}

form[name="commentForm"] button {
  padding: 8px !important;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form[name^="commentForm"] button:hover {
  background-color: var(--blueish);
}

/* Container met marge en afgeronde hoeken */
.comment-wrapper {
  margin: 10px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.comment-box {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.comment-image {
  position: relative;
  border-radius: 12px 12px 0 0;
}

.image-clip {
  height: 80px;
  border-radius: 12px 12px 0 0;
}

.image-clip img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px 12px 0 0;
  display: block;
  opacity: 0.5;
}

#editthing input[type="text"],
select {
  width: 85%;
  font-family: Geomanist, Arial;
  font-size: 18px;
  padding: 10px;
}

input[type="checkbox"] {
  width: 2em;
  margin: 0;
  padding: 0;
  font-size: 1em;
  display: inline-block;
  vertical-align: middle;
}
button,
input[type="submit"],
.fakeButton {
  display: inline-block;
  background-color: var(--blue);
  color: #fff;
  width: auto;
  border: 1px solid var(--blue);
  border-radius: 5px;
  margin-top: 25px;
  margin-right: 20px;
  cursor: pointer;
  font-family: Geomanist, Arial;
  font-size: 14px;
}
button,
input[type="submit"] {
  padding: 15px 39px 15px 39px;
}
input[type="range"] {
  width: 30%;
  display: unset;
  padding: 0 10px 0 10px;
}

.fakeButton {
  padding: 17px 30px 17px 30px;
}
.fakeButtonSmall {
  display: inline-block;
  background-color: var(--grey);
  color: #fff;
  width: auto;
  border: 1px solid var(--grey);
  border-radius: 5px;
  margin: 2px;
  cursor: pointer;
  font-family: Geomanist, Arial;
  font-size: 12px;
  padding: 3px 15px 3px 15px;
}
.fakeButtonExtraSmall {
  display: inline-block;
  background-color: var(--purple);
  color: #fff;
  width: auto;
  border: 1px solid var(--purplelight);
  border-radius: 5px;
  margin: 2px;
  cursor: pointer;
  font-family: Geomanist, Arial;
  font-size: 12px;
  padding: 3px;
}
.other {
  font-family: "Courier New", Courier;
  font-size: 11px;
}

form {
  margin-bottom: 30px;
}

.photoLikes form {
  margin: 0;
}

form h3 {
  margin: 25px 0 0 0;
}

.v {
  padding: 2px;
  border: 0;
}
.box {
  line-height: 9px;
  color: var(--grey);
  font-size: 10px;
  font-weight: normal;
  letter-spacing: 0.2px;
  border: 1px solid var(--grey);
  border-radius: 5px;
  background-color: var(--greylightest);
  padding: 2px 10px 2px 10px;
  margin: 0 5px 2px 0;
}
.category {
  color: var(--black);
  font-variant: small-caps;
  background-color: var(--greylight);
  padding: 0 10px 0 10px;
}

.locationTitle,
.searchItem {
  margin: 5px 0 5px 30px;
}
.locationText {
  margin: 0 5px 10px 30px;
}

#mainMapTransparent {
  width: 320px;
  height: 340px;
  background-color: #fff;
  margin: 10px auto;
  border: 0;
  border-radius: 5px;
  box-shadow: 0px 3px 15px #deebed;
}

.menu-item i,
#footer i {
  color: var(--grey);
}

.menu-item {
  padding: 0 10px 0 10px;
}

table#top2000 {
  font-size: 14px;
}

table#top2000 tr.header td {
  color: var(--grey);
  white-space: nowrap;
}

table#top2000 .position {
  font-family: "Syne Mono", "Courier New", Courier;
  color: var(--blue);
  background-color: var(--greylightest);
  text-align: right;
}
table#top2000 td.position {
  border: 1px solid white;
}
table#top2000 td.position a.position {
  border: 0;
}

table#top2000 td {
  padding: 3px 7px 3px 7px;
  border-bottom: 1px solid var(--bluelight);
}

@media only screen and (max-width: 1079px) {
  /* For mobile phones: */
  table#top2000 {
    font-size: 11px;
  }
  table#top2000 td {
    padding: 3px 3px 3px 3px;
  }
}

#photos .line {
  padding: 20px;
  margin-top: 45px;
}
p,
.generalText p {
  font-family: Geomanist, Arial;
  padding: 10px 0 10px 0;
}
p.locationText {
  font-size: 12px;
}
#photos .line p img {
  width: 100%;
  text-align: center;
  --margin: 20px 7% 20px 7%;
  border: 0;
  border-radius: 10px;
  box-shadow: 0px 3px 15px #deebed;
}

#photos .photoBlock {
  --border-top: 10px solid var(--bluebackground);
  margin: 40px 0 50px 0;
  background-color: var(--greylightest);
}
#photos .photoBlock .w100c {
  float: left;
  width: 100%;
  display: block;
  margin: 10px 0 0 0;
}

.photoWrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 3px 15px #deebed;
}

.photoWrapper img {
  width: 100%;
  display: block;
}

.photoOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-left: 4%;
  padding-right: 4%;
  padding-top: 50px;
  padding-bottom: 5px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  color: white;
  box-sizing: border-box;
  transition: opacity 2s ease;
  opacity: 1;
  pointer-events: none;
}

@media only screen and (min-width: 1080px) {
  .photoOverlay {
    padding-bottom: 13px;
  }
}

.photoInteractions span {
  margin-top: 15px;
}

.photoOverlay .title,
.photo-title,
.photoOverlay .photoText,
.recapDate,
.photo-meta {
  margin: 0;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}


.photoOverlay:has(.title:empty) {
    background: none;
    padding-top: 0;
}

#photos .title {
  font-size: 26px;
  font-weight: 500;
}

#photos .photoText {
  font-size: 14px;
}

.photo-title {
  font-size: 20px;
  font-weight: 450;
  padding: 5px 5px 0 5px;
}

.photo-meta {
  font-size: 12px;
  font-weight: normal;
  color: var(--greylight);
  padding: 5px;
}

.photo-meta .date {
  font-size: 11px;
  color: var(--greyish);
  float: right;
}

@media only screen and (max-width: 1079px) {
  /* For mobile phones: */
  .photoWrapper img {
    width: 100%;
    display: block;
  }

  #photos .title {
    font-size: 20px;
    padding: 0 0 7px 7px;
  }
  #photos .photoText {
    font-size: 11px;
    padding: 0 0 7px 7px;
  }
}

p,
.generalText p,
.headerText {
  font-size: 14px;
}
.headerText {
  margin: 0 0 5px 38px;
  padding: 0;
}

td.thing {
  padding: 7px 10px 5px 10px;
  font-size: 16px;
}

@media only screen and (min-width: 1080px) {
  #container {
    width: 1080px;
    margin: 0 auto;
  }
  div.w100,
  div.w100c {
    width: 100%;
    overflow: hidden;
    display: flex;
  }
  #photos div.w100,
  #recap div.w100 {
    display: block;
  }
  div.w50:not(:first-child) {
    margin-left: 2%;
  }
  div.w50 {
    width: 50%;
    float: left;
  }

  p,
  .generalText p,
  .headerText {
    --padding: 0;
  }

  .searchItemImg {
    width: 75px;
    height: 75px;
  }
  .recapImage {
    width: 100px;
    height: 100px;
    margin: 15px;
  }
  td.thing {
    --padding: 10px 10px 0 10px;
    --font-size: 15px;
  }
  .hideOnLargeScreens {
    display: none;
  }
}

@media only screen and (max-width: 1079px) {
  /* For mobile phones: */
  #container {
    width: 100%;
    margin: 0 auto;
  }
  div.w100c,
  div.w100c div.w50 {
    width: 100%;
    display: block;
  }
  div.w50:not(:first-child) {
    margin-left: 0;
  }
  div.w50 {
    width: 48%;
    float: left;
    flex: 1;
  }
  li h4 {
    margin: 0;
    padding: 6px 12px 6px 12px;
  }
  input {
    padding-left: 55px;
  }
  .locationText {
    --margin: 0 5px 10px 40px;
  }
  .menu-items a.icon {
    float: right;
    display: block;
  }
  .menu-item {
    display: none;
    width: 100%;
  }
  .menu-item-responsive {
    position: relative;
    float: right;
    display: block;
    width: 100%;
    text-align: right;
    margin: 0 0 10px 0;
  }
  .recapImage {
    width: 90px;
    height: 90px;
  }
  .recapImage div {
    margin: 3px 0 0 0;
  }

  #cijfers ul li span {
    line-height: 1.3;
  }
  td.thing {
    --padding: 20px 10px 10px 10px;
  }

  table.statsGraph tr th,
  table.statsGraph tr td {
    height: 120px;
  }

  .hideOnSmallScreens {
    display: none;
  }
}

div.w50inside {
  width: 48%;
  float: left;
  padding-right: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
div.w50inside:nth-child(2) {
  padding-left: 15px;
}

div.panel {
  overflow: hidden;
  margin: 10px 0 10px 0;
  padding: 20px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0px 3px 15px #deebed;
}
div.panel2 {
  margin: 10px 10px 10px 0;
  padding: 20px 20px 20px 0;
}
@media only screen and (max-width: 1079px) {
  /* For mobile phones: */
  div.panel {
    padding: 5px 15px 5px 15px;
  }
  div.panel2 {
    padding: 5px;
  }
}

div.w99 {
  width: 99%;
  float: left;
  flex: 1;
}
div.line {
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid var(--greylightest);
  margin: 0 0 10px 0;
}
div.location,
div.generalText {
  padding: 2px 10px 2px 10px;
  margin: 5px 0 5px 0;
}
.iconbox {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  line-height: 24px;
  padding: 2px;
  float: left;
}
.iconbox img {
  width: 20px;
  height: 20px;
}

.iconbox i {
  text-shadow: 2px 2px 4px var(--greylight);
  color: white;
  margin-left: 2px;
  margin-top: 4px;
}

.like,
li.pointer {
  cursor: pointer;
}
li.pointer {
  border-bottom: 1px solid var(--bluelight);
}
#cijfers ul,
.comments ul,
#weather ul {
  list-style-position: outside;
}
#cijfers ul li,
#weather ul li {
  padding-left: 45px;
  font-size: 14px;
  margin-top: 6px;
  margin-bottom: 5px;
}

#cijfers ul li.mainStat,
#weather ul li.mainStat {
  margin-top: 8px;
  margin-bottom: 8px;
}

#cijfers ul li span.content,
.locationText,
#footer p {
  font-size: 12px;
}

#cijfers ul li span.stat,
#weather ul li span.stat {
  color: var(--blue);
  float: left;
  text-align: right;
  font-weight: 500;
  padding-right: 6px;
  width: 50px;
  margin-left: -50px;
  line-height: 14px;
  font-size: 21px;
}

#cijfers ul li span.content {
  font-weight: normal;
}

canvas {
  display: block;
  width: 95%;
  height: auto;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.locationTitle {
  margin: 5px 0 5px 30px;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.locationTitle .title {
  flex: 1 1 auto;
  min-width: 0; /* 🔑 mag krimpen naast de tijd */
  overflow-wrap: anywhere;
  font-weight: normal;
}

.locationTitle .time {
  margin-left: auto;
  margin-right: 0;
  white-space: nowrap;
  flex: 0 0 auto;
  font-size: 11px !important;
  font-weight: normal;
}

@media (max-width: 768px) {
  .locationTitle .time {
    font-size: 10px !important;
  }
}

.searchItem {
  width: 90%;
  font-weight: normal;
  line-height: 16px;
  font-size: 14px;
}
.locationTitle span,
.searchItem span {
  font-weight: normal;
}
p.inl {
  clear: both;
  float: left;
  padding: 3px;
}
.locationText a i {
  color: var(--grey);
}
.headerText {
  font-family: Geomanist, Arial;
}
.timelocation {
  float: right;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 50%;
}
#menu .menu-items {
  color: var(--grey);
  text-align: right;
  float: right;
}

#log {
  font-family: "Courier New", Courier;
  font-size: 10px;
  background-color: var(--bluelight);
}
p.profile_service {
  margin-top: 20px;
}

.info {
  border: 1px solid var(--grey);
  border-radius: 2px;
  margin: 10px 20px 10px 20px;
  padding: 5px;
  background-color: var(--bluelight);
}
.info i {
  margin: 0 10px 0 10px;
}
span.button,
a.button {
  border: 1px solid var(--grey);
  border-radius: 5px;
  padding: 0 5px 0 5px;
  margin: 0 10px 0 10px;
  background-color: var(--greylight);
  cursor: pointer;
  font-size: 12px;
}
div.notification {
  width: 100%;
  max-width: 480px;
  margin: 10px auto;
  padding: 8px 10px;
  border: 1px solid var(--grey);
  border-radius: 5px;
  background-color: white;
  overflow: hidden;
  font-size: 14px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

div.notification .text {
  margin-left: 10px;
  flex: 1;
  overflow-wrap: break-word;
}

div.notification .text a {
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-decoration-style: dashed;
}
div.closeNotification {
  flex-shrink: 0;
  width: 25px;
  float: left;
}
div.closeNotification i {
  color: var(--blue);
  padding-left: 10px;
}
a.closeNotification {
  color: var(--blue);
}
#nog_geen_inlog p {
  margin: 10px;
}
.form-control {
  float: right;
  margin-right: 150px;
}
form h3 {
  margin-bottom: 15px;
}
.starRating {
  white-space: nowrap;
}
.starRatingNumeric {
  font-family: "Kalam";
  font-size: 130%;
  font-weight: normal;
  font-style: normal;
  line-height: 0.5;
  padding: 0 5px 0 5px;
  color: var(--bluedark);
  background-color: transparent;
}
.starRatingNumeric i {
  font-size: 80%;
  color: var(--blue);
}
#footer,
#footer p,
#footer p a {
  width: 100%;
  padding: 10px;
  text-align: right;
  text-decoration: none;
  border: 0;
}
.friend i,
.notification i {
  color: var(--green);
}
.friendNotVerified i {
  color: var(--red);
}

.help-block:not(:empty) {
  border: 1px solid var(--grey);
  border-radius: 3px;
  padding: 5px;
  margin: 30px 5px 5px 5px;
  color: red;
  width: 100%;
  font-size: 15px;
  display: block;
}

@media only screen and (min-width: 1080px) {
  #travels div.w100,
  #travels div.w100c {
    display: block !important;
  }
}

.recapDate {
  font-size: 20px;
  font-weight: 500;
}

a .recapText {
  margin: 5px 0 5px 0;
  font-size: 11px;
  color: white;
}

.recapImage {
  background-position: center;
  border-radius: 5px;
  filter: grayscale(10%);
  margin: 5px 20px 5px 0;
  display: block;
  float: left;
}
.recapImage div {
  background-color: white;
  margin: 8px 0 0 0;
  text-align: center;
  padding: 1px;
}

ul.statsThing,
ul#venuesToCheckInTo {
  padding-left: 5px;
  font-size: 14px;
}
ul.statsThing {
  margin: 15px 0 30px 0;
}
ul.statsThing li,
ul#venuesToCheckInTo li {
  padding: 3px 3px 3px 15px;
}

table.order-table {
  margin: 25px 5px 25px 5px;
  width: 100%;
}
table.order-table tr {
  height: 15px;
  border: 0px;
  border-bottom: 1px solid var(--greyish);
  padding: 2px 20px 0 10px;
  width: 450px;
  width: 100%;
}

table.statsGraph {
  margin: 20px auto;
}

table.statsGraph tr th,
table.statsGraph tr td {
  font-family: "Syne Mono", "Courier New", Courier;
  color: var(--purple);
  font-weight: normal;
  font-size: 9px;
  width: 15px;
  height: 15px;
  padding: 5px;
}
#linksToSongs li {
  padding: 10px 0 10px 0;
  font-size: 120%;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  background-color: var(--bluebackground);
  overflow-x: hidden;
  opacity: 1;
  transition: opacity 3s ease;
}

.overlay-content {
  position: relative;
  top: 15%;
  width: 100%;
  text-align: left;
  margin-top: 30px;
  max-height: 99vh;
  overflow-y: auto;
}

#nav .overlay-content {
  padding-left: 20%;
}

.photoBlock .overlay-content {
  padding: 30px;
  top: 0;
  max-width: 700px;
  margin: 0 auto;
}

@media only screen and (min-width: 1080px) {
  .photoBlock .overlay-content {
    padding: 30px;
    top: 0;
    margin-top: 40px;
  }
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 20px;
  color: black;
  display: block;
  transition: 0.3s;
}

.overlay a.sub {
  font-size: 14px;
  padding-left: 20px;
}

.overlay a:hover,
.overlay a:focus {
  color: var(--bluedark) !important;
  text-decoration: underline;
}

.overlay .closebtn {
  position: absolute;
  top: 3px;
  right: 3px;
  font-size: 28px;
  padding: 0 8px 0 8px;
  background-color: var(--white);
  border-radius: 50%;
  border-color: var(--greylight);
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  z-index: 11;
  pointer-events: auto;
}

.overlay .closebtn:hover {
  background-color: var(--grey);
}

#hamburger {
  font-weight: bold;
  color: var(--grey);
  float: right;
  font-size: 20px;
  cursor: pointer;
  margin-top: 10px;
  text-align: center;
  vertical-align: center;
  border: 0px;
  height: 29px;
  width: 29px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}
#hamburger:hover {
  color: var(--black);
  background-color: white;
  transition-duration: 1s;
}

p.friend {
  padding: 10px 0 10px 0;
}

.bgpurple,
.bg_ult {
  background-color: var(--purple);
}
.bgpurplelight,
.bg_rou {
  background-color: var(--purplelight);
}
.bgblue,
.bg_str {
  background-color: var(--blue);
}
.bgbluedark {
  background-color: var(--bluedark);
}
.bgbluelight {
  background-color: var(--bluelight);
}
.bgred {
  background-color: var(--red);
}
.bgyellow {
  background-color: var(--yellow);
}
.bggreen,
.bg_cus {
  background-color: var(--green);
}
.bggrey,
.bg_goo {
  background-color: var(--grey);
}
.bggreyish {
  background-color: var(--greyish);
}
.bggreylight {
  background-color: var(--greylight);
}
.bgwhite {
  background-color: var(--white);
}
.textgrey {
  color: var(--grey);
}
.textgreyish {
  color: var(--greyish);
}
.textgreylight {
  color: var(--greylight);
}
.textblue {
  color: var(--blue);
}
.textbluelight {
  color: var(--bluelight);
  --background: white;
}
.textred {
  color: var(--red);
}
.textyellow {
  color: var(--yellow);
}
.textgreen {
  color: var(--green);
}
.textpurple {
  color: var(--purple);
}
.textblack {
  color: var(--black);
}
.textwhite {
  color: var(--white);
}

.commentSection {
  --margin: 20px;
}
.comments h2 {
  margin-bottom: 30px;
}

.comments ul li {
  margin: 25px 0 25px 0;
  line-height: 18px;
}

q:before {
  content: "“";
}

q:after {
  content: "”";
}

q.commentText {
  font-size: 14px;
}
.photoLikes,
.toggleComments {
  display: inline-block;
  margin-right: 20px;
  font-size: 14px;
}

.toggleComments {
  color: var(--grey);
}
.toggleComments:hover {
  cursor: pointer;
}

input,
textarea {
  touch-action: manipulation;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  border: 1px solid #ccc;
  z-index: 1;
  padding: 10px;
  max-height: 150px; /* <-- Maximale hoogte */
  overflow-y: auto; /* <-- Scrollen inschakelen */
}

.dropdown-content label {
  position: initial;
  display: flex;
  align-items: center;
  padding-left: 0; /* Verwijder standaard padding */
  margin: 4px 0;
}

.dropdown-content input[type="checkbox"] {
  margin-right: 8px; /* Ruimte tussen checkbox en naam */
  width: initial;
  font-size: initial;
}

.dropdown.show .dropdown-content {
  display: block;
}
.fade-out {
  opacity: 0;
  transition: opacity 3s ease;
}
.adminLinks a {
  margin-left: 8px;
  font-size: 10px;
  color: var(--greyish);
}

.name-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 10px;
}

.name-tag,
#showMoreTags {
  margin: 0;
  top: 0;
  font-size: 12px;
  padding: 5px 8px;
  border: 1px solid var(--greylight);
  border-radius: 8px;
  cursor: pointer;
  background-color: var(--greylightest);
  transition: background-color 0.2s;
  white-space: nowrap;
}

.name-tags-visible,
.name-tags-hidden {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 5px;
}

.name-tags-hidden {
  display: none;
}

.name-tag:hover {
  background-color: var(--greylight);
}

.name-tag.selected {
  background-color: var(--greenlight);
}

#recap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}

.dayBlock {
  width: 90%;
  max-width: 600px;
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 12px;
  margin: 20px auto 20px auto;
}

.dayImage {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  border-radius: 12px;
}

.dayOverlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: white;
  padding: 0.75rem;
  width: 100%;
  font-size: 0.95rem;
  border-radius: 0 0 12px 12px;
}

#results-panel {
  flex-direction: column;
}

.results-header {
  flex: 1;
  width: 100%;
}
.search-photo-block {
  margin-bottom: 20px;
}

.photo-wrapper {
  position: relative;
  width: 100%;
  padding-top: 40%;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
}

#save-result {
  margin: 20px auto;
  max-width: 800px;
  padding: 15px;
  background: #f4f4f4;
  border: 1px solid #ccc;
  border-radius: 6px;
}

#save-result .status-message {
  margin-bottom: 10px;
}

#save-result .epguides-btn {
  margin-top: 10px;
  display: inline-block;
}
.se {
  font-family: "Syne Mono", "Courier New", Courier;
  font-size: 12px;
}

#namenlijst {
  padding: 10px 10px 10px 30px;
}
.naam-chip {
  display: inline-block;
  background-color: var(--greylightest);
  border-radius: 4px;
  padding: 5px 7px;
  margin: 2px;
  cursor: pointer;
  font-size: 10px;
  border: 1px solid var(--greylight);
  transition: background-color 0.3s;
  color: black;
}

.naam-chip:hover {
  background: var(--grey);
  color: white;
  transform: translateY(-1px);
}

.naam-chip.selected {
  background-color: var(--greenlight);
  border: 1px solid var(--black);
  color: black;
}

.ellipsis130 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 130px;
}

/* VERBETERDE SUCCESS MESSAGE */
.success-message {
  background: linear-gradient(135deg, #ffffff 0%, var(--greylightest) 100%);
  color: #333;
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--greylight);
  position: relative;
  overflow: hidden;
}

.success-message h2 i {
  font-size: 1rem;
  color: var(--green);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.result-grid {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.result-item {
  background: var(--greylightest);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  border: 1px solid var(--greylight);
  transition: all 0.3s ease;
}

.result-item:hover {
  background: var(--greylight);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.result-item strong {
  margin-right: 0.5rem;
  color: black;
  font-weight: 600;
}

.result-item a {
  color: var(--bluedark) !important;
  border: 0 !important;
  text-decoration: none !important;
  font-weight: normal !important;
  border-radius: 4px;
  background: var(--greylightest);
  transition: all 0.3s ease;
}

.result-item a:hover {
  background: var(--greylight);
  transform: translateY(-1px);
}

.success-message .action-buttons {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--greylight);
}

.success-message .btn {
  background: var(--blue);
  color: white;
  border: 1px solid var(--blue);
  font-weight: 600;
  transition: all 0.3s ease;
}

.success-message .btn:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
}

.success-message .btn i {
  margin-right: 0.5rem;
}

/* Responsieve aanpassingen */
@media (max-width: 768px) {
  .result-grid {
    gap: 0.5rem;
  }

  .result-item {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }
}

.heartrate-zones-widget {
  max-width: 600px;
  margin: 10px auto;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
}
.chart-container {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto 15px auto;
}
.zone-info {
  text-align: center;
  margin: 10px 0;
}
.zone-info h3 {
  margin: 5px 0;
  font-size: 18px;
  color: #333;
}
.zone-info p {
  margin: 5px 0;
  font-size: 14px;
  color: #666;
}
.zone-legend {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  margin: 15px 0;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 5px;
  background: white;
  border-radius: 4px;
}
.legend-color {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  flex-shrink: 0;
}
.legend-text {
  font-weight: 500;
  color: #333;
}
@media (max-width: 600px) {
  .heartrate-zones-widget {
    margin: 10px;
    padding: 10px;
  }
  .chart-container {
    width: 200px;
    height: 200px;
  }
  .zone-legend {
    grid-template-columns: 1fr 1fr;
  }
}
.hour-a {
  background-color: var(--white);
}
.hour-b {
  background-color: var(--greylightest);
}
