/* Estilos para o modal */
.event-layout-container .custom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
}

/* Conteúdo do modal */
.event-layout-container .custom-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 1024px;
  text-align: center;
}

/* Container de posicionamento para o botão de fechar */
#edit-content {
  position: relative;
}

.event-layout-container .custom-modal-close,
#edit-content .custom-modal-close {
  position: absolute;
  top: -33px;
  right: 0;
  font-size: 45px;
  cursor: pointer;
  z-index: 1001;
  line-height: 1;
  font-weight: bold;
  display: inline-block;
  width: auto;
  height: auto;
  line-height: 45px;
  text-align: center;
  border: none;
  outline: none;
  background: transparent;
}

.event-layout-container .custom-modal .slider {
  width: 100%;
  margin: auto;
}

.event-layout-container .custom-modal .slide {
  text-align: center;
}

.event-layout-container .custom-modal .slide img {
  width: 100%;
  border-radius: 8px;
  max-height: 450px;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots li button {
  font-size: 0;
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.slick-dots li.slick-active button {
  background: #fff;
  border: 1px solid #fff;
}

