.alert-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.alert-buttons img {
  margin-left: 5vw;
  margin-right: 5vw;
  width: 3vw;
  border: 1.5px solid black;
  border-radius: 4vw;
  cursor: pointer;
  transition: background-color 0.15s;
}

.alert-button-cancel:hover, .alert-button-cancel-text:hover {
  background-color: #ffb1b1;
}

.alert-button-confirm:hover, .alert-button-confirm-text:hover {
  background-color: #bbffb1;
}

.alert-button-cancel-text, .alert-button-confirm-text {
  border: 1.5px solid black;
  width: 9vw;
  height: 3vw;
  border-radius: 3vw;
  background-color: white;
  cursor: pointer;
  font-family: "Roboto", Arial;
  font-size: 1.4vw;
  margin-left: 2vw;
  margin-right: 2vw;
}

.alert-checkbox-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", Arial;
  font-size: 1.5vw;
  cursor: pointer;
}

.alert-checkbox-option img {
  width: 2.5vw;
  margin-right: 0.5vw;
}

.alert-collection-colors {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5vw;
  width: 90%;
}

.alert-collection-colors span {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 2vw;
  cursor: pointer;
}

.alert-collection-color-orange {
  background-color: rgb(255, 196, 0);
  border: 3px solid white;
  transition: border 0.15s;
}

.alert-collection-color-orange:hover {
  border: 3px solid rgb(226, 121, 1);
}

.alert-collection-color-red {
  background-color: rgb(255, 51, 44);
  border: 3px solid white;
  transition: border 0.15s;
}

.alert-collection-color-red:hover {
  border: 3px solid rgb(172, 0, 0);
}

.alert-collection-color-purple {
  background-color: rgb(238, 0, 255);
  border: 3px solid white;
  transition: border 0.15s;
}

.alert-collection-color-purple:hover {
  border: 3px solid rgb(125, 0, 214);
}

.alert-collection-color-blue {
  background-color: rgb(0, 157, 255);
  border: 3px solid white;
  transition: border 0.15s;
}

.alert-collection-color-blue:hover {
  border: 3px solid rgb(0, 8, 165);
}

.alert-collection-color-green {
  background-color: rgb(137, 235, 0);
  border: 2px solid white;
  transition: border 0.15s;
}

.alert-collection-color-green:hover {
  border: 3px solid rgb(0, 119, 34);
}

.alert-collection-color-active {
  border: 3px solid black;
}

.alert-collection-delete {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", Arial;
  font-size: 1.3vw;
  font-weight: 500;
  width: 100%;
  margin-top: 4vw;
  margin-bottom: 1vw;
}

.alert-collection-delete p {
  background-color: rgba(255, 0, 0, 0.4);
  padding: 1vw;
  border-radius: 3vw;
  border: 2px solid rgb(255, 255, 255);
  color: black;
  cursor: pointer;
  transition: background-color 0.15s;
}

.alert-collection-delete p:hover {
  background-color: white;
  border: 2px solid rgb(255, 0, 0);
  color: rgb(255, 0, 0);
}

.alert-collection-error {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.alert-collection-input {
  box-sizing: border-box;
  width: 100%;
  height: 3vw;
  border: 1.5px solid black;
  border-radius: 4vw;
  padding-left: 1vw;
  font-family: "Roboto", Arial;
  font-size: 1.5vw;
  margin-bottom: 1.5vw;
}

.alert-collection-input::placeholder {
  font-family: "Roboto", Arial;
  font-size: 1.5vw;
}

.alert-collection-subtitle {
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 1.5vw;
  margin-bottom: 1.5vw;
  text-align: left;
  width: 100%;
}

.alert-container {
  background-color: white;
  width: 35vw;
  height: auto;
  border: 2px solid black;
  border-radius: 3.5vw;
  z-index: 60;
  padding: 3vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.alert-container-blur {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.alert-message {
  font-family: "Roboto", Arial;
  font-weight: 400;
  font-size: 1.3vw;
  text-align: center;
  margin-bottom: 3vw;
  max-width: 35vw;
}

.alert-quiz-list {
  border: 1.5px solid black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  border-radius: 1vw;
  margin-bottom: 2vw;
  max-height: 6.5vw;
  overflow-y: scroll;
  width: 90%;
}

.alert-quiz-list-item {
  font-family: "Roboto", Arial;
  font-size: 1.3vw;
  width: 100%;
  padding: 0.5vw;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.15s;
  border-radius: 1vw;
  box-sizing: border-box;
}

.alert-quiz-list-item:hover {
  background-color: #f0f0f0;
}

.alert-title {
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 2.5vw;
  margin-bottom: 3vw;
  text-align: center;
}

.popup-error-message {
  font-family: Arial;
  font-size: 1.1vw;
  color: red;
  margin-top: 1vw;
  margin-bottom: 2vw;
}