@import url(https://fonts.bunny.net/css?family=rubik:400|monoton:400);

:root {
  /* CSS custom properties*/
  --color-background: #2c3440;
  --color-background-light: #345;
  --color-background-dark: #14181c;
  --color-grey-font: #d2d2d2;
  --color-grey-input: #ced4da;
  --color-blue: #70b7eb;
  --color-slider: #ddd;
  --color-misc-title: #9ca3af;

  /* Green Shades */
  --color-success-rgb: 64, 192, 87;
  --color-success-font: #51cf66;

  /* Yellow Shades */
  --color-yellow-400: #facc15;
  --color-warning-rgb: 255, 213, 79;
  --color-yellow-warning-light: #ffc107;
  --color-yellow-warning: #e0a800;
  --color-yellow-warning-dark: #d39e00;

  /* Red Shades */
  --color-red-error: #ff6b6b;
  --color-danger-rgb: 200, 35, 51;
  --color-red-danger-light: #dc3545;
  --color-red-danger: #c82333;
  --color-red-danger-dark: #bd2130;
  --color-red-danger-darker: #b21f2d;

  /* Teal Shades */
  --color-teal-50: #f0fdfa;
  --color-teal-100: #ccfbf1;
  --color-teal-200: #99f6e4;
  --color-teal-300: #5eead4;
  --color-teal-400: #2dd4bf;
  --color-teal-500: #1abc9c; /* Logo */
  --color-teal-600: #0d9488;
  --color-teal-700: #0f766e;
  --color-teal-800: #115e59;
  --color-teal-900: #134e4a;
  --color-teal-1000: #0c3e3d;
  --color-teal-1100: #002b2b;
  --color-teal-1200: #081c1c;

  --input-rad: 0.7rem;
  --btn-width: 4rem;
  --btn-radius: 22px;
  --movie-card-radius: 0.75rem;
}

html,
* {
  margin: 0;
  padding: 0;
  scrollbar-color: var(--color-teal-700) var(--color-background-light);
}

body {
  display: grid;
  grid-template-areas:
    'header header'
    'sidebar main'
    'footer footer';
  grid-template-columns: 10rem 1fr;
  grid-template-rows: auto 1fr minmax(1.5rem, 2vh);
  height: 100vh;
  overflow: hidden;
  font-family:
    'Rubik',
    system-ui,
    -apple-system,
    'Segoe UI',
    sans-serif;
  color: var(--color-grey-font);
  font-size: 1rem;
  line-height: 1.5;
}

button {
  min-width: 40px;
}

.gradient {
  background-image: linear-gradient(
    90deg,
    hsl(210deg 17% 9%) 0%,
    hsl(210deg 18% 11%) 20%,
    hsl(210deg 19% 12%) 31%,
    hsl(210deg 20% 13%) 40%,
    hsl(210deg 21% 15%) 48%,
    hsl(210deg 22% 16%) 56%,
    hsl(210deg 22% 18%) 63%,
    hsl(210deg 23% 19%) 70%,
    hsl(210deg 24% 21%) 77%,
    hsl(210deg 24% 22%) 83%,
    hsl(210deg 24% 24%) 89%,
    hsl(210deg 25% 25%) 95%,
    hsl(210deg 25% 27%) 100%
  );
}

.highlight {
  color: var(--color-teal-500);
}

.required {
  color: var(--color-red-error);
}

.header {
  flex-wrap: wrap;
  grid-area: header;
  position: sticky;
  top: 0;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0.5rem 1rem;
}

.header .logo {
  max-height: 3rem;
  padding-right: 0.5rem;
}

.header .logo-container {
  align-items: center;
  text-decoration: none;
  text-shadow: 4px 2px 8px black;
  color: var(--color-teal-500);
  font-weight: normal;
  font-family: 'Monoton', sans-serif;
  font-size: 2.5rem;
}

.search-form {
  position: relative;
  min-width: 200px;
  max-width: 500px;
  flex: 0.8;
  border-radius: var(--input-rad);
  background-color: var(--color-teal-500);
}

.search,
.search-button {
  height: 2.2rem;
  border: 0;
}

.search {
  outline: 0;
  width: 100%;
  padding: 0 1.2rem;
  border-radius: var(--input-rad);
  appearance: none;
  transition: all 0.3s cubic-bezier(0, 0, 0.43, 1.49);
  transition-property: width, border-radius;
  z-index: 1;
  position: relative;
  background-color: var(--color-grey-input);
}

.search-button {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: var(--btn-width);
  font-weight: bold;
  background: var(--color-teal-500);
  color: var(--color-teal-1000);
  border-radius: 0 var(--input-rad) var(--input-rad) 0;
}

.search-button:hover {
  background-color: var(--color-teal-600);
  cursor: pointer;
}

.search:not(:placeholder-shown) {
  border-radius: var(--input-rad) 0 0 var(--input-rad);
  width: calc(100% - var(--btn-width));
}

.search:not(:placeholder-shown) + .search-button {
  display: block;
}

.search-label {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.footer {
  grid-area: footer;
  position: sticky;
  bottom: 0;
  justify-content: center;
  align-items: center;
}

.footer a {
  color: var(--color-teal-500);
  text-decoration: none;
}

.flex {
  display: flex;
}

@media (max-width: 30rem) {
  .header {
    flex-direction: column;
  }
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flexitem {
  flex: 1;
}

.spacer {
  flex: 1;
}

.gap-1 {
  gap: 1rem;
}

.padding-1 {
  padding: 1rem;
}

.error {
  color: var(--color-red-error);
}

.sidebar {
  grid-area: sidebar;
  align-items: stretch;
  background-color: var(--color-background-dark);
}

.sidebar a,
.login,
.add,
.link404,
.genre-btn {
  text-decoration: none;
  padding: 0.5rem 1rem;
  background-color: var(--color-teal-1000);
  border-radius: var(--btn-radius);
  color: var(--color-teal-500);
  min-width: 40px;
  transition: 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.5);
}

.login,
.add,
.link404,
.genre-btn {
  min-width: auto;
}

.genre-btn {
  max-width: 200px;
}

.sidebar a:hover,
.login:hover,
.add:hover,
.link404:hover,
.genre-btn:hover {
  background-color: var(--color-teal-700);
  color: var(--color-teal-100);
  transform: scale(1.15);
}

#app-container {
  grid-area: main;
  overflow-y: auto;
  place-items: center;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 0.65fr));
  justify-content: center;
}

.movie-card {
  border-radius: var(--movie-card-radius);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  background-image: linear-gradient(to top, rgba(20, 24, 28, 0.8), transparent);
}

.movie-card:hover {
  transform: scale(1.05);
}

.movie-poster {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-top-left-radius: var(--movie-card-radius);
  border-top-right-radius: var(--movie-card-radius);
}

.movie-info {
  padding: 1rem;
  padding-top: 0.25rem;
  gap: 0.5rem;
  flex-grow: 1;
  justify-content: flex-start;
}

.movie-title {
  max-width: 100%;
  color: inherit;
  text-decoration: none;
  align-self: flex-start;
  font-size: large;
  flex-grow: 1;
}

.movie-title h4 {
  overflow: hidden;
  text-overflow: ellipsis;
}

.movie-rating {
  align-items: center;
  font-weight: bold;
  color: var(--color-teal-500);
  text-shadow: 1px 1px 2px black;
  gap: 8px;
}

.movie-checkboxes {
  align-items: center;
  gap: 0.5rem;
}

.movie-checkbox {
  align-items: center;
  gap: 0.25rem;
}

.subtitle {
  color: var(--color-teal-100);
  font-size: 0.9rem;
}

.tag {
  padding: 4px 12px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--btn-radius);
  font-size: 0.9rem;
}

.colored-tag {
  padding: 4px 12px;
  background-color: var(--color-teal-1000);
  color: var(--color-teal-500);
  border-radius: var(--btn-radius);
  font-size: 0.9rem;
}

.movie-rating svg,
.movie-data-rating svg {
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--color-yellow-400);
  fill: var(--color-yellow-400);
  vertical-align: text-top;
}

.movie-detailpage {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
  border-radius: 24px;
}

.movie-detail-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

.movie-detail-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--btn-radius);
  /* Fully transparent in the center and darker at the edges */
  background: radial-gradient(ellipse at center, rgba(20, 24, 28, 0) 40%, rgba(20, 24, 28, 0.8) 100%);
  z-index: 1;
}

.movie-detail-background .blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px) brightness(0.5);
}

.movie-detail-grid {
  position: relative;
  z-index: 1;
  padding: 1rem;
  display: grid;
  gap: 32px;
  justify-self: center;
}

.movie-artwork {
  width: 70%;
  border-radius: var(--movie-card-radius);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
@media (min-width: 900px) {
  .movie-detail-grid {
    grid-template-columns: 400px 1fr;
  }

  .movie-artwork {
    width: 100%;
  }
}

.movie-detail-text h1 {
  max-width: 450px;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 16px;
  text-shadow: 5px 2px 2px black;
}

.movie-rating-year-length {
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 1rem;
}

.movie-detail-rating {
  font-size: 1.25rem;
}

.movie-detail {
  font-size: 1rem;
  white-space: nowrap;
}

.movie-description {
  max-width: 450px;
  font-size: 1.25rem;
  margin-bottom: 32px;
}

.movie-misc-title {
  color: var(--color-teal-500);
  font-size: 0.95rem;
  text-shadow: 2px 2px 1px black;
}

.movie-misc-genre {
  padding-bottom: 0.25rem;
}

.movie-director {
  font-size: 1.125rem;
}

.movie-genre {
  font-size: 1rem;
}

.movie-nav {
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 1rem;
  gap: 32px;
  justify-self: center;
}

.movie-arrow {
  display: inline-block;
  color: var(--color-teal-500);
}

.movie-arrow-left {
  transform: rotate(180deg);
}

.movie-detailpage button {
  padding: 0.5rem 1rem;
  min-width: 8rem;
  background-color: var(--color-teal-1000);
  border: 2px solid var(--color-teal-800);
  border-radius: var(--btn-radius);
  color: var(--color-grey-font);
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.5);
}

.movie-detailpage button:hover {
  background-color: var(--color-teal-700);
  color: var(--color-teal-100);
  transform: scale(1.15);
}

.about {
  max-width: 70%;
}

.about-map {
  max-width: 1400px;
}

.about-map iframe {
  aspect-ratio: 3.5/2;
}

.imprint-section {
  padding: 1rem;
  padding-left: 0;
}

.imprint-section h2 {
  font-size: 1.5rem;
}

.imprint-section p {
  padding: 0.25rem 0;
  padding-left: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.imprint-section-details {
  padding-top: 1rem;
}

.imprint-section-details p {
  padding: 0.25rem 0;
  font-size: 1rem;
  line-height: 1.5;
}

.glass {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.5);
}

.hide {
  display: none;
}

.search-results,
.watchlist-results {
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
}

.contact,
.crud,
.page404,
.genres {
  width: 100%;
  align-items: center;
  /* justify-content: center;
  height: 100%; zentriert auf der Y-Achse*/
}

.contact-form,
.crud-form {
  width: 100%;
  max-width: 600px;
  align-items: center;
  justify-content: center;
}

.contact-form input,
.crud-form input,
.crud-form select,
textarea {
  padding: 0.5rem;
  border-radius: var(--input-rad);
  border-color: transparent;
  resize: none;
}

.contact-form input:focus,
.crud-form input:focus,
.crud-form select:focus,
.filter-sort select:focus,
textarea:focus {
  outline: 3px solid var(--color-teal-500);
}

.crud-form select,
.filter-sort select {
  cursor: pointer;
}

.contact-form textarea,
.crud-form textarea {
  min-height: 100px;
}

.contact-form button,
.crud-form button {
  background-color: var(--color-teal-1000);
  border: 2px solid var(--color-teal-800);
  border-radius: var(--btn-radius);
  color: var(--color-teal-500);
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover,
.crud-form button:hover {
  background-color: var(--color-teal-700);
  color: var(--color-teal-100);
  transform: scale(1.15);
}

.contact-form-row-split,
.contact-form-row,
.crud-form-row-split,
.crud-form-row {
  justify-content: center;
  width: 100%;
  gap: 0.3rem;
  text-shadow: 2px 2px 4px black;
}

.contact-form-row-split,
.crud-form-row-split {
  gap: 2.5rem;
}

/* Pfeile für Zahl verstecken in Chrome, Safari, Edge */
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Pfeile für Zahl verstecken in Firefox */
input[type='number'] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.movie-overview {
  width: 83.3%;
}

.movie-data-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 1rem 0;
  padding: 0.5rem;
  border-radius: var(--input-rad);
  text-align: left;
}

.movie-data-table caption {
  caption-side: top;
  padding: 10px;
  font-weight: bold;
  font-size: larger;
}

/* Farbe für table header zellen */
.movie-data-table thead th {
  color: var(--color-teal-500);
  background-color: var(--color-teal-1000);
  padding: 5px;
}
/* erste Zelle abrunden */
.movie-data-table thead th:first-child {
  border-top-left-radius: var(--input-rad);
  border-bottom-left-radius: var(--input-rad);
}
/* letzte Zelle abrunden */
.movie-data-table thead th:last-child {
  border-top-right-radius: var(--input-rad);
  border-bottom-right-radius: var(--input-rad);
}
/* Zeilenfarbe  für ungerade Zeilen */
.movie-data-table tbody > tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
/* erste Zelle abrunden */
.movie-data-table tbody td:first-child {
  border-top-left-radius: var(--input-rad);
  border-bottom-left-radius: var(--input-rad);
}
/* letzte Zelle abrunden */
.movie-data-table tbody td:last-child {
  border-top-right-radius: var(--input-rad);
  border-bottom-right-radius: var(--input-rad);
}

.movie-data-table img {
  max-height: 100px;
  border-radius: var(--movie-card-radius);
  aspect-ratio: 2/3;
  object-fit: cover;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.movie-data-table img:hover {
  transform: scale(1.15);
}

.movie-data-table td {
  display: table-cell;
  padding: 0.625rem;
}

.movie-data-table td:first-child {
  color: var(--color-blue);
  font-weight: bold;
}

.movie-data-table td .btn-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  @media (width > 1712px) {
    justify-content: flex-start;
  }
}

.movie-data-rating {
  color: revert;
}

.movie-data-rating svg {
  vertical-align: text-top;
  padding-right: 0.1rem;
}

.runtime-col {
  width: 6rem;
}

.genre-data-table {
  max-width: 700px;
}

.genre-data-table td:first-child {
  width: 7.5%;
}

.genre-data-table td:last-child {
  width: 9rem;
}

.genre-data-table td .btn-container {
  justify-content: start;
}

.btn {
  display: inline-block;
  width: auto;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: var(--btn-radius);
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out,
    transform 0.3s ease;
}

.crud-form > .update-btn {
  color: var(--color-yellow-warning-dark);
  background-color: rgba(var(--color-warning-rgb), 0.2);
  border-color: var(--color-yellow-warning-light);
  border-radius: var(--btn-radius);
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.crud-form > .update-btn:hover {
  color: #000;
  background-color: var(--color-yellow-warning-dark);
  border-color: var(--color-yellow-warning-dark);
}

.edit {
  color: #000;
  background-color: var(--color-yellow-warning-light);
  border-color: var(--color-yellow-warning-light);
}

.edit:hover {
  background-color: var(--color-yellow-warning);
  border-color: var(--color-yellow-warning-dark);
  transform: scale(1.15);
}

.edit:focus {
  color: #000;
  background-color: var(--color-yellow-warning);
  border-color: var(--color-yellow-warning-dark);
  box-shadow: 0 0 0 0.25rem rgba(222, 160, 0, 0.5);
}

.delete {
  color: #fff;
  background-color: var(--color-red-danger-light);
  border-color: var(--color-red-danger-light);
}

.delete:hover {
  background-color: var(--color-red-danger);
  border-color: var(--color-red-danger-dark);
  transform: scale(1.15);
}

.delete:focus {
  background-color: var(--color-red-danger);
  border-color: var(--color-red-danger-dark);
  box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}

.delete:active {
  background-color: var(--color-red-danger-dark);
  border-color: var(--color-red-danger-darker);
}

.delete:disabled {
  background-color: rgba(255, 107, 107, 0.5); /* Light red background with reduced opacity */
  border-color: transparent; /* no visible border */
  color: rgba(255, 255, 255, 0.7); /* Light grey text */
  cursor: not-allowed;
}

.alert {
  width: 40%;
  max-width: 500px;
  padding: 16px;
  border-left: 4px solid transparent;
  background-color: transparent;
  border-radius: 0 var(--input-rad) var(--input-rad) 0;
  text-align: center;
}

.alert-success {
  border-left: 4px solid rgb(var(--color-success-rgb));
  background-color: rgba(var(--color-success-rgb), 0.1);
}

.alert-success-font {
  color: var(--color-success-font);
}

.alert-warning {
  border-left: 4px solid rgb(var(--color-warning-rgb));
  background-color: rgba(var(--color-warning-rgb), 0.1);
}

.alert-warning-font {
  color: var(--color-yellow-warning-dark);
}

.alert-danger {
  border-left: 4px solid rgb(var(--color-danger-rgb));
  background-color: rgba(var(--color-danger-rgb), 0.1);
}

.alert-danger-font {
  color: var(--color-red-danger);
}

.filter {
  justify-content: center;
  color: var(--color-teal-400);
}

.filter-checkbox {
  align-items: stretch;
  gap: 0.25rem;
}

.filter-year {
  align-items: center;
  gap: 0rem;
}

.filter-year span {
  white-space: nowrap;
}

.year-input {
  justify-content: center;
  gap: 0.5rem;
}

.year-input .field {
  height: 45px;
  width: 100%;
  align-items: center;
  gap: 0rem;
}

.field input {
  width: 60px;
  min-height: 30px;
  outline: none;
  text-align: center;
  border-radius: var(--input-rad);
  border: 1px solid #999;
  -moz-appearance: textfield;
  appearance: textfield;
  background: var(--color-grey-input);
}

.slider {
  height: 5px;
  border-radius: 5px;
  background: var(--color-slider);
  position: relative;
  width: 120px;
  margin-top: 1.2rem; /* Creates vertical space above slider */
}

.slider .progress {
  position: absolute;
  height: 5px;
  left: 0%;
  right: 0%;
  border-radius: 5px;
  background: var(--color-blue);
}

.range-input {
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.range-input input {
  position: absolute;
  height: 5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  margin-top: -0.2rem;
}

input[type='range']::-webkit-slider-thumb {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  pointer-events: auto;
  -webkit-appearance: none;
  background: var(--color-blue);
}

input[type='range']::-moz-range-thumb {
  width: 17px;
  height: 17px;
  border: none;
  border-radius: 50%;
  pointer-events: auto;
  -moz-appearance: none;
  appearance: none;
  background: var(--color-blue);
}

.filter-sort select {
  width: fit-content;
  min-height: 30px;
  padding: 0.25rem;
  border-radius: var(--input-rad);
  border-color: transparent;
  background: var(--color-grey-input);
}

.filter-sort {
  align-items: center;
  gap: 0.25rem;
}

.genre-grid {
  display: grid;
  width: 80%;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
}

.genres > .genre-btn {
  display: block;
}

.genre-btn {
  justify-self: center;
  width: 100%;
}

.genre-overview {
  all: inherit;
}

.offlineImg {
  max-width: 20%;
  min-width: 100px;
}

input[type='checkbox'] {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  margin: 0;
  font: inherit;
  color: var(--color-teal-500);
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid currentColor;
  border-radius: var(--input-rad);
  cursor: pointer;
  display: grid;
  place-content: center;
}

input[type='checkbox']::before {
  content: '';
  width: 0.65em;
  height: 0.65em;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--color-grey-input);
  /* Windows High Contrast Mode */
  background-color: CanvasText;
}

input[type='checkbox']:checked::before {
  transform: scale(0.95);
}

input[type='checkbox']:focus {
  outline: max(2px, 0.15em) solid currentColor;
  outline-offset: max(2px, 0.15em);
}

input[type='checkbox']:disabled {
  color: var(--color-background-light);
  cursor: not-allowed;
}

.movie-checkbox input[type='checkbox'] + label {
  padding: 4px 12px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--btn-radius);
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.movie-checkbox input[type='checkbox']:checked + label {
  padding: 4px 12px;
  background-color: var(--color-teal-1000);
  color: var(--color-teal-500);
  border-radius: var(--btn-radius);
  font-size: 0.9rem;
}

.filter-checkbox input[type='checkbox'] + label {
  padding: 4px 12px;
  color: var(--color-grey-font);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--btn-radius);
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.filter-checkbox input[type='checkbox']:checked + label {
  padding: 4px 12px;
  background-color: var(--color-teal-1000);
  color: var(--color-teal-500);
  border-radius: var(--btn-radius);
  font-size: 0.9rem;
}

.movie-detail-text .movie-checkboxes {
  padding-top: 2rem;
  align-items: start;
}

#watched-filter {
  transform: translateY(0.3em);
}
