.sidebar-gradient {
  background: linear-gradient(
    173deg,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(255, 255, 255, 0.75) 34.77%,
    #fff 84.37%,
    #fff 100%
  );
  backdrop-filter: blur(12.5px);
  border: 1px solid #f2f2f2;
}

.closed {
  transform: translateX(-214px);
}

.rotate {
  transform: rotate(180deg);
}

.sidebar-list li {
  cursor: pointer;
}

.sidebar-list li:hover {
  color: #e09650;
}

.default-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background: linear-gradient(
    173deg,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(255, 255, 255, 0.75) 34.77%,
    #fff 84.37%,
    #fff 100%
  );
  text-align: center;
  backdrop-filter: blur(12.5px);
  border: 1px solid #f2f2f2;
  border-radius: 12px;
  z-index: 999;
  color: #324A51;
}
/* Contenedor del Modal (fondo oscuro) */
.modal {
  display: none; /* Oculto por defecto */
  position: fixed;
  z-index: 1000; /* Se superpone a otros elementos */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Habilita scroll si es necesario */
  background-color: rgba(0, 0, 0, 0.8); /* Fondo semi-transparente */
}

/* Contenido del Modal */
.modal-content {
  position: relative;
  margin: 5% auto;
  padding: 0;
  width: 80%;
  max-width: 600px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  text-align: center;
}

/* Imagen dentro del Modal */
.modal-content img {
  width: 100%;
  height: auto;
}

/* Botón para cerrar */
.close {
  color: #aaa;
  float: right;
  font-size: 12px;
  font-weight: bold;
  margin: 6px;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #000;
}
