:root {
  --bg: #000000;
  --bg-accent: #272727;
  --bg-accent-light: #474747;
  --bg-accent-light-hover: #5f5f5f;
  --panel: #eef2f6;
  --white: #ffffff;
  --text: #111111;
  --muted: #737373;
  --line: #e7e7e7;
  --lime: #e0fd59;
  --soft-green: #dfe7d8;
  --soft-blue: #e2edf5;
  --soft-purple: #d8d0ff;
  --accent: #8b7dff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
}

@font-face {
  font-family: 'Chillax';
  src: url('../assets/fonts/chillax/Chillax-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

* {
  box-sizing: border-box;
  cursor: default;
}

body {
  margin: 0;
  font-family: 'Chillax', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
}

/* LOADING */

.loading {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 9999999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-accent);
  top: 0;
  left: 0;
  font-family: 'Chillax', sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  color: var(--lime);
  transition: all 0.8s cubic-bezier(0.3, 1.1, 0.4, 1), opacity ease .6s;
}

.loading.done {
  height: 80px;
  width: calc(110px + 40px);
  margin: 20px;
  padding: 20px;
  padding-left: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 35px;
  background-color: var(--bg-accent);
  font-size: 1.8rem;
  opacity: 0;
}

.loading.done-hide {
  display: none;
}

.loading-logo span {
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.loading-logo span {
  animation: pumpLoading 2s ease infinite;
}

.loading.done .loading-logo span {
  animation: none !important;
}

.loading-logo span:nth-child(1) { animation-delay: 0s; }
.loading-logo span:nth-child(2) { animation-delay: 0.05s; }
.loading-logo span:nth-child(3) { animation-delay: 0.1s; }
.loading-logo span:nth-child(4) { animation-delay: 0.15s; }
.loading-logo span:nth-child(5) { animation-delay: 0.2s; }

@keyframes pumpLoading {
  0%   { 
    transform: scale(1) translateY(0);
    filter: blur(0);
    color: var(--lime);
  }
  15%  { 
    transform: scale(1.15) translateY(-3px);
    filter: blur(3px);
    color: #cbc9ec;
  }
  30%  { 
    transform: scale(1) translateY(0);
    filter: blur(0);
    color: var(--lime);
  }
  100% { 
    transform: scale(1) translateY(0);
    filter: blur(0);
    color: var(--lime);
  }
}

/* LOADING END */
/* HEADER */

header {
  height: 80px;
  width: calc(100% - 40px);
  margin: 20px;
  padding: 20px;
  padding-left: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-radius: 35px;
  background-color: var(--bg-accent);
}

a.header-logo {
  height: 120px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Chillax', sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--lime);
  text-decoration: none;
  cursor: pointer;
  opacity: 0;
  transition: opacity ease .6s;
}

.header-logo span {
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.header-logo:hover span {
  animation: pump 2s ease infinite;
}

.header-logo:hover span:nth-child(1) { animation-delay: 0s; }
.header-logo:hover span:nth-child(2) { animation-delay: 0.05s; }
.header-logo:hover span:nth-child(3) { animation-delay: 0.1s; }
.header-logo:hover span:nth-child(4) { animation-delay: 0.15s; }
.header-logo:hover span:nth-child(5) { animation-delay: 0.2s; }

@keyframes pump {
  0%   { 
    transform: scale(1) translateY(0);
    filter: blur(0);
    color: var(--lime);
  }
  15%  { 
    transform: scale(1.15) translateY(-3px);
    filter: blur(3px);
    color: #cbc9ec;
  }
  30%  { 
    transform: scale(1) translateY(0);
    filter: blur(0);
    color: var(--lime);
  }
  100% { 
    transform: scale(1) translateY(0);
    filter: blur(0);
    color: var(--lime);
  }
}

.header-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.header-button {
  all: unset;
  height: 40px;
  width: auto;
  padding: 0px 15px;
  color: white;
  background-color: var(--bg-accent-light);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-wrap: nowrap;
  overflow: hidden;
  font-size: .9rem;
  transition: all 0.6s cubic-bezier(0.3, 1.1, 0.4, 1), border-radius 1s cubic-bezier(0.3, 1.1, 0.4, 1);
}

.header-button.current {
  background-color: var(--lime);
  color: var(--bg-accent);
}

.header-button.filters {
  height: 40px;
  padding: 0px 15px;
  font-size: .9rem;
}

a.header-button {
  text-decoration: none;
  color: white;
}

.header-button.hidden {
  width: 0px;
  margin-left: -5px;
  padding: 0px 0px;
  opacity: 0;
}

.header-button.fixed { 
  width: 40px;
  padding: 0 0;
}

.header-button:hover {
  border-radius: 20px;
  background-color: var(--bg-accent-light-hover);
  color: white;
}

img.cal-filter-operator {
  height: 15px;
  cursor: pointer;
}

/* MULTI DAY CALENDAR EVENT */

.calendar-grid {
  display: grid;
  grid-template-columns: 
    10px 
    repeat(7, calc((100% - 20px) / 7)) 
    10px;
  grid-auto-rows: 55px;
  width: 100%;
  min-height: 100%;
  column-gap: 0;
  row-gap: 10px;
  position: relative;
  padding: 20px 0px;
}

.calendar-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: calc(100% - 20px);
  pointer-events: none;
  z-index: 0;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08));

  background-repeat: no-repeat;

  background-size:
    1px 100%,
    1px 100%,
    1px 100%,
    1px 100%,
    1px 100%,
    1px 100%;

  background-position:
    calc((100% / 7) * 1) 0,
    calc((100% / 7) * 2) 0,
    calc((100% / 7) * 3) 0,
    calc((100% / 7) * 4) 0,
    calc((100% / 7) * 5) 0,
    calc((100% / 7) * 6) 0;
}

.calendar-event {
  height: auto;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
  gap: 3px;
  z-index: 1;
  margin-left: 5px;
  margin-right: 5px;
  overflow: hidden;
  transition: opacity .5s ease, transform .25s ease;
}

.calendar-event.cut {
  padding-left: 30px;
}

.cal-content-multiday-single-title {
  font-size: 1rem;
  line-height: 1.1;
}

.cal-content-multiday-single-description {
  font-size: .8rem;
  line-height: 1.15;
}

.cal-content-multiday-single-title,
.cal-content-multiday-single-description {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.cal-content-multiday-single-description:empty {
  display: none;
}

/* HEADER END */

main {
  height: calc(100svh - 140px);
  width: calc(100% - 40px);
  margin: 20px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

section.cal {
  height: calc(100svh - 140px);
  width: calc(100%);
  margin-top: 0px;
  border-radius: 35px;
  background: #DDF96F;
  background: linear-gradient(162deg,rgba(221, 249, 111, 1) 19%, rgba(201, 222, 231, 1) 53%, rgba(203, 201, 236, 1) 99%);
  transition: all 0.8s cubic-bezier(0.3, 1.4, 0.4, 1);
}

.calendar-days-grid {
  display: grid;
  grid-template-columns: 25px 1fr 25px;
  grid-template-rows: 40px 100px;
  gap: 10px;
  padding: 20px 0 0 0;
  align-items: center;
}

.calendar-months-spacer {
  width: 100%;
  height: 100%;
}

.calendar-months-inner {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
  align-self: stretch;
}

.cal-month-block {
  height: 40px;
  width: 100%;
  border-radius: 15px;
  background-color: rgb(0, 0, 0, .2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--bg-accent);
  font-family: 'Chillax', sans-serif;
  font-weight: 500;
  font-size: .9rem;
  text-align: center;
  transition: all ease .5s, border-radius ease .8s;
}

.calendar-days-inner {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.cal-days-weekswitch {
  all: unset;
  height: 75%;
  width: 100%;
  border-radius: 25px;
  background-color: rgb(0, 0, 0, .8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: var(--bg-accent);
  font-family: 'Chillax', sans-serif;
  font-weight: 500;
  cursor: pointer;
  color: var(--lime);
  font-size: 1.5rem;
  transition: all .6s ease-in-out;
  z-index: 3;
}

.cal-days-weekswitch:hover {
  height: 90%;
  width: 55px;
  border-radius: 20px;
  background-color: rgb(0, 0, 0, .9);
}

img.cal-days-weekswitch-icon {
  height: auto;
  width: 8px;
  cursor: pointer;
}

.cal-days-weekswitch.prev {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.cal-days-weekswitch.frvd {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.cal-days-weekswitch.frvd:hover {
  margin-left: -30px;
}

.cal-day {
  height: 100px;
  width: calc(100%);
  border-radius: 25px;
  background-color: rgb(0, 0, 0, .2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--bg-accent);
  font-family: 'Chillax', sans-serif;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  transition: all ease .5s, border-radius ease .8s, color ease .3s;
}

.cal-day:hover {
  background-color: rgb(0, 0, 0, .8);
  color: var(--lime);
  border-radius: 30px;
}

.cal-day.today {
  background-color: var(--bg-accent);
  color: var(--lime);
  transition: all ease .5s, border-radius ease .8s, color ease .3s;
}

.cal-day.today:hover {
  background-color: rgb(0, 0, 0, .8);
  color: var(--lime);
  border-radius: 30px;
}

.cal-day-letters {
  font-size: 1.5rem;
  cursor: pointer;
  transform: translateX(0px);
  opacity: 1;
  transition: all ease-in-out .5s, color ease .3s;
}

.cal-day-number {
  font-size: 3rem;
  cursor: pointer;
  transform: translateX(0px);
  opacity: 1;
  transition: all ease-in-out .5s, color ease .3s;
}

.cal-day.prev .cal-day-letters,
.cal-day.prev .cal-day-number {
  transform: translateX(40px);
  opacity: 0;
}

.cal-day.frvd .cal-day-letters,
.cal-day.frvd .cal-day-number {
  transform: translateX(-40px);
  opacity: 0;
}

.cal-content {
  height: calc(100% - 210px);
  width: calc(100% - 40px);
  margin: 20px;
  border-radius: 25px;
  background-color: var(--panel);
  box-shadow: 0px 0px 40px var(--panel);
  position: relative;
  overflow: hidden;
  overflow-y: auto;
}

/* FILTERS */

section.cal-filters {
  height: calc(100svh - 140px);
  width: calc(0px);
  overflow: hidden;
  background-color: var(--panel);
  border-radius: 95px;
  margin-left: -20px;
  transform: translateX(120px);
  padding: 0px;
  transition: all .8s cubic-bezier(0.3, 1.4, 0.4, 1);
}

section.cal-filters.open {
  width: calc(500px);
  transform: translateX(0px);
  margin-left: 0px;
  border-radius: 35px;
  padding: 20px;

  overflow-y: auto;

  /* Scrollbars verstecken */
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE / Edge */
}

section.cal-filters.open::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.cal-filter-sep {
  height: 1px;
  flex-shrink: 0;
  background-color: var(--muted);
  margin-top: 20px;
  margin-bottom: 20px;
}

.cal-filter-single-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.cal-filter-title {
  color: var(--muted);
  margin-bottom: 10px;
}

.cal-filter-single {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 2px solid var(--filter-bg-color, #dddddd);
  background-color: transparent;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease-in-out;
}

.cal-filter-single span {
  cursor: pointer;
  color: inherit;
}

.cal-filter-single input[type="checkbox"] {
  margin: 0;
  display: none;
}

.cal-filter-single:has(input[type="checkbox"]:checked) {
  border: 2px solid var(--filter-bg-color, #dddddd);
  background-color: var(--filter-bg-color, #dddddd);
  color: var(--filter-text-color, #000000);
}

.cal-filter-single:not(:has(input[type="checkbox"]:checked)) {
  border: 2px solid var(--filter-bg-color, #dddddd);
  background-color: transparent;
  color: var(--muted);
}

.cal-location-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cal-location-current {
  padding: 10px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
}

.cal-location-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.geo-search-input {
  all: unset;
  width: calc(100% - 28px);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  font: inherit;
}

.geo-search-results {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.geo-result-item {
  all: unset;
  width: calc(100% - 24px);
  text-align: left;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  cursor: pointer;
  font: inherit;
}

/* FILTERS END */

section.footer {
  display: none;
}

/* FOOTER */

footer.footer {
  height: 15px;
  width: 100px;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-accent);
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  color: var(--panel);
  text-decoration: none;
  overflow: hidden;
  transition: all ease .3s;
  z-index: 999999;
}

footer.footer.open {
  height: 135px;
  width: calc(100%);
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-accent-light);
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  color: var(--panel);
  text-decoration: none;
  overflow: hidden;
}

.footer-toggle {
  height: 15px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  margin-bottom: 5px;
  font-size: .6rem;
  text-wrap: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: all ease .3s;
}

footer.footer.open .footer-toggle {
  height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  border-bottom: 1px solid var(--muted);
  margin-bottom: 5px;
  font-size: 1rem;
  flex-shrink: 0;
  cursor: pointer;
}

.footer-content {
  height: 0px;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .8rem;
  color: var(--muted);
  overflow: hidden;
  transition: all ease .3s;
}

footer.footer.open .footer-content {
  height: 20px;
  width: 100%;
  padding: 10px;
}

.footer-content.open.legal {
  margin-top: 5px;
}

a.footer-button {
  color: var(--panel);
  text-decoration: none;
  font-size: .9rem;
  cursor: pointer;
}

a.footer-button:hover {
  color: var(--lime);
}

.footer-sep {
  height: 1rem;
  width: 1px;
  background-color: var(--muted);
  flex-shrink: 0;
}

/* FOOTER END */

@media (max-width: 1100px) {
  .week-strip {
    grid-template-columns: 58px repeat(6, 1fr);
  }

  
}

@media (max-width: 768px) {

  body {
    overflow: hidden;
  }

  header {
    height: 60px;
    width: calc(100% - 20px);
    margin: 10px;
    padding: 15px;
    padding-left: 15px;
    border-radius: 25px;
    justify-content: center;
    justify-content: center;
    background-color: transparent;
  }

  .header-right {
    display: none;
  }

  main {
    height: calc(100svh - 80px - 100px);
    width: calc(100% - 20px);
    margin: 10px;
    flex-direction: column;
    gap: 10px;
  }

  section.cal {
    height: calc(100svh - 180px);
    border-radius: 25px;
    overflow: hidden;
  }

  section.cal-filters {
    height: 0px;
    width: 100%;
    overflow: hidden;
    background-color: var(--panel);
    border-radius: 95px;
    margin-top: -20px;
    margin-left: 0px;
    transform: translateY(120px);
    transition: all ease-in-out .8s;
  }

  section.cal-filters.open {
    height: calc(100svh - 180px) !important;
    width: 100%;
    transform: translateY(0px);
    margin-top: -10px;
    border-radius: 35px;
    flex-shrink: 0;
    overflow-y: auto;
  }

  .calendar-days-grid {
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    grid-template-rows: 40px 90px;
    gap: 10px;
    padding: 10px 0 0 0;
    align-items: center;
  }

  .calendar-months-inner,
  #calendar-months-inner {
    grid-column: 1 / 4;
    grid-row: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr !important;
    padding: 0 12px;
    box-sizing: border-box;
  }

  .cal-month-block {
    width: 100%;
  }

  #calendar-prev {
    grid-column: 1;
    grid-row: 2;
  }

  #calendar-days-inner {
    grid-column: 2;
    grid-row: 2;
  }

  #calendar-next {
    grid-column: 3;
    grid-row: 2;
  }

  .cal-day {
    width: 100%;
    min-width: 0;
    height: 90px;
    border-radius: 18px;
    justify-content: center;
    text-align: center;
    gap: 8px;
    overflow: hidden;
    transition: all ease .5s, border-radius ease .8s, color ease .3s;
  }

  .cal-day-letters {
    font-size: 1.2rem;
    text-align: center;
  }

  .cal-day-number {
    font-size: 2.3rem;
    text-align: center;
  }

  .cal-days-weekswitch {
    height: 90px;
    width: 100%;
    border-radius: 18px;
    font-size: 1.2rem;
  }

  .cal-days-weekswitch:hover {
    height: 90px;
    width: 100%;
    border-radius: 18px;
    margin-left: 0;
  }

  .cal-days-weekswitch.prev {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .cal-days-weekswitch.frvd {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .cal-days-weekswitch.frvd:hover {
    margin-left: 0px;
  }

  .cal-content {
    height: calc(100% - 170px);
    width: calc(100% - 20px);
    margin: 10px;
    margin-top: 0px;
    border-radius: 20px;
    overflow-x: hidden;
  }

  /* Ganz wichtig:
     echtes 1-Tages-Grid statt 7 Tages-Spalten */
  .calendar-grid,
  #calendar-grid {
    grid-template-columns: 10px minmax(0, 1fr) 10px !important;
    grid-auto-rows: 55px;
    row-gap: 10px;
    column-gap: 0;
    width: 100%;
    padding: 15px 0;
  }

  /* Die 7 Trennlinien dürfen mobil nicht sichtbar sein */
  .calendar-grid::before,
  #calendar-grid::before {
    display: none;
  }

  .calendar-event {
    min-width: 0;
    margin-left: 5px;
    margin-right: 5px;
    padding: 10px 12px;
    gap: 3px;
  }

  /* WICHTIG:
     KEIN border-radius override für mobile,
     damit cut-left / cut-right sichtbar bleibt */

  .cal-content-multiday-single-title {
    font-size: 0.95rem;
    line-height: 1.15;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .cal-content-multiday-single-description {
    font-size: 0.78rem;
    line-height: 1.2;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .calendar-event {
    grid-column: 2 / 3 !important;
    width: auto !important;
    max-width: none !important;
    justify-self: stretch;
    align-self: stretch;
    margin-left: 5px !important;
    margin-right: 5px !important;
  }

  .calendar-event.cut-left {
    margin-left: -8px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding-left: 20px;
  }

  .calendar-event.cut-right {
    margin-right: -8px !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .calendar-event.cut-left.cut-right {
    margin-left: -8px !important;
    margin-right: -8px !important;
    border-radius: 0 !important;
    padding-left: 20px;
  }

  .calendar-event.mobile-cut-left {
    margin-left: -12px !important;
    width: calc(100% + 17px) !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding-left: 24px !important;
  }

  .calendar-event.mobile-cut-right {
    margin-right: -12px !important;
    width: calc(100% + 17px) !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .calendar-event.mobile-cut-left.mobile-cut-right {
    margin-left: -12px !important;
    margin-right: -12px !important;
    width: calc(100% + 24px) !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    padding-left: 24px !important;
  }

  .loading {
    background-color: var(--bg);
  }

  .loading.done {
    height: 80px;
    width: 100svw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
    background-color: transparent;
    font-size: 1.8rem;
    opacity: 0;
  }

  section.footer {
    height: 80px;
    width: calc(100% - 20px);
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-color: var(--bg-accent);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border-radius: 25px;
    z-index: 99999;
    padding-left: 10px;
  }

  .footer-options {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    overflow-x: auto; /* besser als scroll */
    padding-right: 10px;
    border-radius: 25px;

    /* Scrollbars verstecken */
    scrollbar-width: none;        /* Firefox */
    -ms-overflow-style: none;     /* IE / Edge */
  }

  .footer-options::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }

  .header-button {
    height: 60px;
    font-size: 1rem;
    padding: 0 25px;
    flex-shrink: 0;
    transition: all ease .3s;
  }

  .header-button.fixed {
    height: 60px !important;
    width: 60px !important;
    flex-shrink: 0;
    padding: 0;
    margin-right: 5px;
  }

  .header-button.hidden {
    display: none !important;
  }

  .header-button:hover {
    border-radius: 15px;
    background-color: var(--bg-accent-light);
  }

  .header-button:active {
    border-radius: 20px;
    background-color: var(--bg-accent-light-hover);
  }

  footer.footer {
    height: 0px;
  }
}

#calendar-root {
  opacity: 0;
  visibility: hidden;
}