:root {
  --color-cajeme: #910d49;
}

/* CONTENEDOR PRINCIPAL */
.options {
  background-color: #f5f5f5;
  text-align: center;
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
  width: 90%;
  /*max-width: 500px;*/
  padding: 20px;
}

.top {
  display: flex;
  flex-direction: column;
}

.top p {
  text-align: center;
  font-size: 26px;
  margin: 2vh auto;
}

.options-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2vh;
  max-width: 100%;
  margin: 0 auto;
}

.option-card {
  width: calc(50% - 2vh);

  /* background-color: white;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); */
  border-radius: 15px;
  display: flex;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
  max-width: 267px;
  /*padding: 2vh;*/
}

.option-card .img {
  width: 100%;
}

.prueba {
  display: flex;
  justify-content: flex-end;
}

/*Aviso si no tienes perfil*/

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  width: 80%;
  max-width: 400px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.modal-content h3 {
  margin-bottom: 10px;
}
.modal-button {
  background: #8b243d;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 1rem;
  font-size: 20px;
}
.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}
