/* Contenedor del carrusel */
.event-carousel-container {
  width: 100%;
  max-width: 900px;
  margin: 2rem auto;
  padding: 10px;
  box-sizing: border-box;
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
}

/* Carrusel */
.event-carousel {
  width: 100%;
}

/* Cada celda es una imagen */
.carousel-cell {
  width: 100%;
  height: 300px;
  margin-right: 10px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

/* Imagen dentro de cada celda */
.carousel-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.modal-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  cursor: default;
}

.modal-close {
  position: fixed;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 48px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  z-index: 10001;
}


