@import url("style.css");

body {
  margin: 0;
  padding: 0;
}

#modal-container {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
}

.modal {
  width: 50%;
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
}

.modal-title {
  margin-bottom: 10px;
}

.modal-text {
  margin-bottom: 40px;
}

.modal-checkbox {
  margin-bottom: 14px;
}

input[type="checkbox"] {
  transform: scale(1.5); /* Aumenta el tamaño en un 150% */
  margin: 5px;
  cursor: pointer;
}

.modal-button-container {
  display: flex;
  flex-direction: row-reverse;
}

#modal-button {
  background-color: var(--color-azul);
  color: var(--color-blanco);
  font-weight: bold;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  padding: 14px;
  border-radius: 5px;
  cursor: pointer;
}

#modal-button:disabled {
  background-color: var(--color-blanco-hover);
  cursor: not-allowed;
}

@media screen and (max-width: 768px) {
  .modal {
    width: 90%;
  }
}
