body {
  font-family: "Montserrat", sans-serif;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 98vh;
  font-weight: 400;
  font-size: 14px;
}

.card {
  background: #fff;
  box-shadow: 0 4px 15px rgba(20, 20, 20, 0.1);
  border: 1px solid rgba(238, 238, 238, 1);
  border-radius: 6px;
  width: 300px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 150px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pages::-webkit-scrollbar {
  display: none;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 1px 0;
}

.btn {
  background-color: #ffce22;
  border: none;
  border-radius: 4px;
  color: #1f2128;
  font-weight: 500;
  width: 100%;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: #ffd84d;
}
.custom-checkbox {
  display: inline-block;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.custom-checkbox input {
  opacity: 0;
  width: 0;
  height: 0;
}

.checkmark {
  width: 23px;
  height: 23px;
  background-color: white;
  border: 1px solid #cdcdcd;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #e3e3e3;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: border-color 0.2s ease;
}

.custom-checkbox:hover input:not(:checked) + .checkmark {
  border-color: #bdbdbd;
}
.custom-checkbox:hover input:not(:checked) + .checkmark::after {
  display: block;
  border-color: #e3e3e3;
}

.custom-checkbox:active input:not(:checked) + .checkmark {
  border-color: #bdbdbd;
}
.custom-checkbox:active input:not(:checked) + .checkmark::after {
  display: block;
  border-color: #878787;
}

.custom-checkbox input:checked + .checkmark {
  background-color: #2469f6;
  border: 1px solid #2469f6;
}

.custom-checkbox input:checked + .checkmark::after {
  display: block;
  border-color: #ffffff;
}

.custom-checkbox:hover input:checked + .checkmark {
  background-color: #5087f8;
  border: 1px solid #5087f8;
}

.custom-checkbox:active input:checked + .checkmark::after {
  border-color: #ffffff;
}
