@import "basis-styling.css";
main {
  padding-left: 20%;
  padding-right: 20%;
  gap: 3vh;
}

#hoofdtitel {
  font-size: 4vh;
  font-weight: 800;
  color: #2a3a42;
  font-family: "atrament";
}

#hoofd-input-outer-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5vh;
}

.inputveld-kaarten {
  padding-left: 2vh;
  padding-right: 2vh;
  height: 4.5vh;
  border-radius: 50px;
  font-size: 1.5vh;
  border: none;
  background-color: rgba(255, 255, 255, 0.175);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
  border-bottom: 1.3px solid rgba(255, 255, 255, 0.352);
}

.inputveld-kaarten:focus {
  outline: none;
}

#onder-outer-hoofd-inputvelden {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 3vh;
}

.inner-hoofd-inputveld {
  width: 100%;
}

.inner-hoofd-inputveld input {
  width: 100%;
}
select {
  width: 100%;
}

#button-outer-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 2vh;
}

#buttons-inner-container-right {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 2vh;
}

#buttons-inner-container-left {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.import-button {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6em;

  height: 4.5vh;
  padding: 0 2em;

  font-family: "atrament", sans-serif;
  font-weight: normal;
  font-size: 1.8vh;
  color: #2a3a42;

  border-radius: 50px;

  background-color: #e7e7e747;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform-origin: center;
  transition: 0.3s ease-out;
  border-width: 0.5px;
  border-style: solid;
  border-color: #8181812f;
  border-top-color: #ffffff;
  border-left-color: #f2f2f2;
  border-image-slice: 1;
  border-radius: 50px;
  filter: drop-shadow(3px 3px 6px #35557138)
    drop-shadow(-3px -3px 6px #ffffff4a);
}

.import-button p {
  background: linear-gradient(
    90deg,
    rgba(42, 123, 155, 1) 0%,
    rgba(85, 182, 133, 1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4),
    0 0 10px rgba(255, 255, 255, 0.2);
}
.import-button:hover {
  transition: 0.3s ease-out;
  transform: scale(0.97);
}
.import-button img {
  width: 1em;
  height: 1em;
  display: block;
}

#outer-container-head {
  display: flex;
  flex-direction: column;
  gap: 3vh;
}

.custom-select {
  min-width: 350px;
  position: relative;
}

.custom-select select {
  padding-left: 2vh;
  padding-right: 4vh;
  height: 4.5vh;
  border-radius: 50px;
  font-size: 1.5vh;
  outline: none;
  border: none;
  background-color: rgba(213, 213, 213, 0.175);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
  border-bottom: 1.3px solid rgba(255, 255, 255, 0.352);
  appearance: none;
}

.custom-select::before,
.custom-select::after {
  --size: 0.3rem;
  content: "";
  position: absolute;
  right: 1rem;
  pointer-events: none;
}

.custom-select::before {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-bottom: var(--size) solid black;
  top: 40%;
}

.custom-select::after {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-top: var(--size) solid black;
  top: 55%;
}

#create-set {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6em;

  height: 4.5vh;
  padding: 0 2em;

  font-family: "atrament", sans-serif;
  font-weight: normal;
  font-size: 1.8vh;
  color: #2a3a42;

  border-radius: 50px;

  background: #006aff5d;
  box-shadow: 5px 5px 10px #768fb231, -5px -5px 10px #a0c1f03d;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform-origin: center;
  transition: 0.3s ease-out;

  border-image-slice: 1;
  border-radius: 50px;
  filter: drop-shadow(3px 3px 6px #35557138)
    drop-shadow(-3px -3px 6px #ffffff4a);
}

#create-set:hover {
  transition: 0.3s ease-out;
  transform: scale(0.97);
}

#card-overzicht-outer-container {
  width: 100%;
  padding: 5% 0;
  display: flex;
  flex-direction: column;
  gap: 3vh;
}

.new-card-outer-container {
  width: 100%;
  height: 17vh;
  background: #a1bdd930;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  box-shadow: 8px 8px 16px #bebebe, -8px -8px 16px #ffffff53;
  animation: bounceIn 1s ease-in-out;
}

.new-card-header {
  width: 100%;
  height: 5vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #2a3a4241;
  position: relative;
  padding: 0 4%;
}

.buttons-header {
  height: 5vh;
  width: 100%;
  padding: 1.7%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 3vh;
}

.new-card-header img {
  height: 1.8vh;
  width: auto;
  cursor: pointer;
}

#grab {
  cursor: grab;
  opacity: 50%;
  user-select: none;
}
.new-card-body {
  display: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.ghost {
  opacity: 0.4;
}

.input-cards-termen,
.input-cards-definities {
  width: 100%;
  height: 4.5vh;
  padding: 0 3%;
  border-radius: 50px;
  border: none;
  background-color: rgba(255, 255, 255, 0.175);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
  border: 1px solid #a1bdd930;
  border-bottom: 1.3px solid rgba(255, 255, 255, 0.352);
}

.input-cards-termen:focus,
.input-cards-definities:focus {
  outline: none;
  border: 1.3px solid #2a3a4238;
}

.new-card-input {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2%;
  gap: 1vh;
}

.new-card-term {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2%;
  gap: 1vh;
}

.new-card-def {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2%;
  gap: 1vh;
}

.selection-taal {
  width: 100%;
  background-color: green;
}

.taal-dropdown {
  position: relative;
  width: 100%;
}

.taal-toggle-term {
  width: 100%;
  border-radius: 50px;
  border: none;
  background-color: transparent;
  font-size: 1.5vh;
  font-family: "atrament";
  color: #2a3a42;
  cursor: pointer;
  text-align: center;
  position: absolute;
  padding-left: 85%;
}

.taal-toggle-definitie {
  width: 100%;
  border-radius: 50px;
  border: none;
  background-color: transparent;
  font-size: 1.5vh;
  font-family: "atrament";
  color: #2a3a42;
  cursor: pointer;
  text-align: center;
  position: absolute;
  padding-left: 85%;
}

.taal-menu {
  position: absolute;
  bottom: calc(100% + 10px); /* boven de hele container */
  right: 0;
  width: 250px;
  background-color: #e1f1fd;
  padding: 1em;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.176);
  z-index: 999;
  display: none; /* of flex/grid als je dat gebruikt */
}

.taal-menu.active {
  display: block;
}
.taal-zoekveld {
  width: 100%;
  padding: 0.5em;
  font-size: 1em;
  border: none;
  border-bottom: 2px solid #2a3a425c;
  background-color: transparent;
  color: #2a3a42;
  font-family: "atrament";
  margin-bottom: 0.5em;
}

.taal-zoekveld:focus {
  outline: none;
}

.taal-lijst {
  list-style: none;
  padding: 0;
  margin: 0.5em 0;
  max-height: 15vh;
  overflow-y: auto;
}

.taal-lijst li {
  padding: 0.3em 0.5em;
  cursor: pointer;
  font-family: "atrament";
  color: #2a3a42;
  border-radius: 5px;
}

.taal-lijst li:hover {
  background-color: #d4e3ef;
  border-radius: 5px;
}

#add-card-button {
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2%;
  background-color: #a4c6f6;
  font-size: 2vh;
  transition: 0.5s ease-in-out;
  font-family: "atrament", sans-serif;
  font-weight: normal;
  border-radius: 50px;

  background: #006aff5d;
  box-shadow: 5px 5px 10px #768fb231, -5px -5px 10px #a0c1f03d;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform-origin: center;
  transition: 0.3s ease-out;

  border-image-slice: 1;
  border-radius: 50px;
  filter: drop-shadow(3px 3px 6px #35557138)
    drop-shadow(-3px -3px 6px #ffffff4a);
}

#add-card-button:hover {
  transform: scale(0.97);
  transition: 0.5s ease-in-out;
}

#create-set-container {
  width: 100%;
  height: 6vh;
  display: flex;
  justify-content: flex-end;
}

#create-set-container span {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6em;

  height: 5.5vh;
  padding: 0 3em;

  font-family: "atrament", sans-serif;
  font-weight: normal;
  font-size: 2.3vh;
  color: #2a3a42;

  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  transition: transform 0.3s ease-out;
  border-radius: 50px;

  background: #76cea0;
  box-shadow: 5px 5px 10px #768fb231, -5px -5px 10px #a0c1f03d;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform-origin: center;
  transition: 0.3s ease-out;

  border-image-slice: 1;
  border-radius: 50px;
  filter: drop-shadow(3px 3px 6px #35557138)
    drop-shadow(-3px -3px 6px #ffffff4a);
}

#create-set-container span:hover {
  transition: transform 0.3s ease-out;
  transform: scale(0.97);
}

#import-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #e1f1fd;
  display: none;
  flex-direction: column;
  animation: slideInDown 0.5s ease-out;
}

.header-import-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 2vh;
}

.close {
  height: 3vh;
  width: auto;
  cursor: pointer;
  transition: 1s ease-in-out;
}

.close:hover {
  transform: scale(0.9);
  transition: 1s ease-in-out;
}

.body-import-container {
  padding: 0 4vh;
  display: flex;
  flex-direction: column;
  gap: 1vh;
}

.inner-body-import {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* fix: specificeer kolombreedte */
  justify-content: center;
  align-items: center;
  height: 100%;
}

.side-card:first-child {
  width: 100%;
  height: 100%;
  padding-right: 3%;
}

.side-card:last-child {
  width: 100%;
  height: 100%;
  padding-left: 3%;
  color: #2a3a42;
  font-size: 2vh;
  display: flex;
  flex-direction: column;
  gap: 1vh;
}

#import-termen-field,
#import-pdf-field,
#import-picture-field {
  width: 100%;
  height: 70vh;
  resize: none;
  outline: none;
  border-radius: 15px;
  border: none;
  padding: 2vh;
  font-family: "SF Pro", sans-serif;
  color: #2a3a42;
  border: 1.5px solid #cef4e2;
  scrollbar-width: none;
  border: none;
  background-color: rgba(255, 255, 255, 0.175);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
  border-bottom: 1.3px solid rgba(255, 255, 255, 0.352);
}

.title {
  font-family: "atrament";
  color: #2a3a42;
  font-size: 3.5vh;
  text-overflow: ellipsis;
}

.body-import-footer {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer-inner-container {
  width: 100%;
  height: 10vh;
  border-top: 2px solid #2a3a42;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 2vh;
}

.import {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6em;

  height: 5.5vh;
  padding: 0 3em;

  font-family: "atrament", sans-serif;
  font-weight: normal;
  font-size: 2.3vh;
  color: #2a3a42;

  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  transition: transform 0.3s ease-out;
  border-radius: 50px;

  background: #76cea0;
  box-shadow: 5px 5px 10px #768fb231, -5px -5px 10px #a0c1f03d;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform-origin: center;
  transition: 0.3s ease-out;

  border-image-slice: 1;
  border-radius: 50px;
  filter: drop-shadow(3px 3px 6px #35557138)
    drop-shadow(-3px -3px 6px #ffffff4a);
}

.import:hover {
  background-color: #a1d9bc;
  transition: all 1s ease-in-out;
}

.trigger-span {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 2vh;
  width: 100%;
  cursor: pointer;
}

.checkbox-wrapper-2 {
  background: transparent; /* neutraal lichtblauw-grijs – dichter bij #e1f1fd */
  padding: 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  box-shadow: none; /* Verwijder visuele gloed */
}

.checkbox-wrapper-2 .ikxBAC {
  appearance: none;
  background: #ecf0f3;
  border-radius: 72px;
  width: 50px;
  height: 28px;
  position: relative;
  box-shadow: inset 2px 2px 4px #d1d9e6,
    inset -1px -1px 2px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease-in-out;
}

/* De bol */
.checkbox-wrapper-2 .ikxBAC::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ecf0f3;
  box-shadow: 2px 2px 4px #d1d9e6, -1px -1px 2px rgba(255, 255, 255, 0.3); /* subtiel wit randje */
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

/* Bij togglen: groen met inset effect */
.checkbox-wrapper-2 .ikxBAC:checked {
  background: #76cea0;
  box-shadow: inset 2px 2px 4px #5fb18a, inset -2px -2px 4px #9ff8c6;
}

/* Bol verschuiven */
.checkbox-wrapper-2 .ikxBAC:checked::after {
  left: 26px;
  background: #ecf0f3;
  box-shadow: 1px 1px 3px #5fb18a, -1px -1px 2px rgba(255, 255, 255, 0.1); /* héél lichte wit */
}

.checkbox-wrapper-2 :focus:not(.focus-visible) {
  outline: 0;
}
.titel-body {
  font-family: "atrament";
  font-size: 2.3vh;
}

#tweede-titel-body {
  padding-top: 3vh;
}

#import-from-pdf-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #e1f1fd;
  display: none;
  flex-direction: column;
  animation: slideInDown 0.5s ease-out;
}

#import-from-picture-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #e1f1fd;
  display: none;
  flex-direction: column;
  animation: slideInDown 0.5s ease-out;
}

.file-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  color: #2a3a42;
  font-weight: 600;
  border-radius: 1rem;
  font-family: "atrament";
  font-size: 2.5vh;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  height: 100%;
  border: dashed 2px #2a3a42;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
}

.file-upload:hover {
  background-color: #d4e2ed;
}

.file-upload input[type="file"] {
  display: none;
}

#pdf-upload-field {
  height: 100%;
  padding: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-message {
  color: rgb(255, 94, 94);
  font-size: 0.8rem;
  height: 0.8rem;
  display: block;
  margin-bottom: 2vh;
  padding-left: 2vh;
  padding-top: 0.2vh;
}
.taal-alert {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: #e1f1fd;
  padding: 1rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  font-family: "SF Pro", sans-serif;
  font-size: 1rem;
  color: #222;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transition: top 0.6s ease, opacity 0.6s ease;
  z-index: 9999;
}

.taal-alert.show {
  top: 20px;
  opacity: 1;
}

.taal-alert .alert-sluit {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: #666;
  padding: 0 0.5rem;
}

.new-card-image {
  width: 10%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-right: 2%;
  padding-top: 2%;
}

.imagelink-container {
  position: relative; /* zodat de absolute positionering werkt */
  height: 7vh;
  width: 7vh;
  border-radius: 15px;
  background: rgba(224, 224, 224, 0.19);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 8px 8px 16px #bebebe, -8px -8px 16px #ffffff42;
  backdrop-filter: blur(5px);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.uploaded-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 10; /* hoger dan camera-icon */
  display: none;
}

.camera-icon {
  width: 40%;
  height: auto;
  position: relative;
  z-index: 1;
}

.image-menu {
  position: absolute;
  bottom: calc(70% + 10px); /* boven de hele container */
  right: 0;
  width: 250px;
  background-color: #e1f1fd;
  padding: 1em;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.176);
  z-index: 999;
  display: none; /* of flex/grid als je dat gebruikt */
  color: #2a3a42;
  background: rgba(224, 224, 224, 0.632);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  box-shadow: 8px 8px 16px #bebebe, -8px -8px 16px #ffffff;
  backdrop-filter: blur(15px);
  overflow: hidden;
}

.image-menu.active {
  display: block;
}
.image-pastveld {
  width: 100%;
  padding: 0.5em;
  font-size: 1em;
  border: none;
  border-bottom: 2px solid #2a3a425c;
  background-color: transparent;
  color: #2a3a42;
  font-family: "atrament";
  margin-bottom: 0.5em;
}

.image-pastveld:focus {
  outline: none;
}


@media screen and (max-width: 768px) {
  main {
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 10%;
    padding-bottom: 10%;
    gap: 2.5vh;
    box-shadow: none;
  }

  #hoofdtitel {
    font-size: 5vh;
  }

  #onder-outer-hoofd-inputvelden {
    flex-direction: column;
    gap: 2vh;
  }

  .import-button {
    display: none;
  }

  .new-card-outer-container {
    height: 20vh;
  }

  .custom-select {
    min-width: auto;
  }

  .inner-body-import {
    grid-template-columns: 1fr;
    gap: 2vh;
  }

  .side-card:first-child,
  .side-card:last-child {
    padding: 1vh;
  }
  .inputveld-kaarten {
    height: 6vh;
    border: 2px solid #2a3a4215;
    box-shadow: none;
  }

  #folder-select {
    height: 6vh;
    border: 2px solid #2a3a4215;
    box-shadow: none;
  }

  #create-set {
    font-size: 2vh;
    box-shadow: none;
    height: 6vh;
    background: #4f83ff;
    color: white;
    border: none;
  }

  .new-card-outer-container {
    height: fit-content;
  }

  .new-card-header {
    padding: 3vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .buttons-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3vh;
  }

  #grab {
    width: auto;
  }
  .new-card-body {
    height: fit-content;
    padding: 1vh;
    grid-row-gap: 2vh;
    margin-bottom: 2vh;
    display: grid;
    grid-template-columns: 75% 25%; /* i.p.v. repeat(2, 1fr) */
    grid-template-rows: repeat(2, 1fr);
  }

  .new-card-term {
    width: 100%;
    grid-area: 1 / 1 / 2 / 3;
  }

  .new-card-def {
    width: 100%;
    grid-area: 2 / 1 / 3 / 2;
  }

  .new-card-image {
    grid-area: 2 / 2 / 3 / 3;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 0.4vh;
    padding-right: 1vh;
  }

  .imagelink-container {
    height: 6vh;
    box-shadow: none;
    border: 2px solid #2a3a4215;
  }
  .input-cards-termen,
  .input-cards-definities {
    height: 6vh;
    border: 2px solid #2a3a4215;
    box-shadow: none;
    transition: 1s;
  }

  .input-cards-termen:focus,
  .input-cards-definities:focus {
    border: 2px solid #0a70b315;
    transition: 1s;
  }

  .taal-toggle-definitie {
    width: 100%;
    border-radius: 50px;
    border: none;
    background-color: transparent;
    font-size: 1.5vh;
    font-family: "atrament";
    color: #2a3a42;
    cursor: pointer;
    text-align: center;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    padding-right: 5%;
  }

  .image-menu {
    position: absolute;
    bottom: calc(40%); /* boven de hele container */
    right: calc(4%);
    width: 250px;
    padding: 1em;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.176);
    z-index: 999;
    display: none; /* of flex/grid als je dat gebruikt */
    color: #2a3a42;
    background: #e1f2fd;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    box-shadow: none;
    backdrop-filter: blur(15px);
    overflow: hidden;
  }

  #add-card-button {
    font-size: 2vh;
    border: none;
    box-shadow: none;
    height: 7vh;
    color: white;
    background: #76cea0;
  }

  #create-set-container span {
    font-size: 2vh;
    box-shadow: none;
    height: 7vh;
    width: 100%;
    justify-content: center;
    background: #4f83ff;
    color: white;
    border: none;
  }
}
