/**
 * @file
 * Estilos para el popup de licencias.
 */

/* Contenedor del listado */
.licencia-lista-container {
  max-width: 90%; /*change*/
  margin: 0 auto;
  padding: 20px;
}

.licencia-lista {
  list-style: none;
  padding: 0;
}

.licencia-item {
  margin-bottom: 10px;
  padding: 10px;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.licencia-link {
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
}

.licencia-link:hover {
  text-decoration: underline;
}

/* Estilos para el popup */
.licencia-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  max-width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.licencia-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.licencia-popup-content {
  position: relative;
}

.licencia-popup-close {
  position: absolute;
  top: -25px;
  right: -25px;
  background: #333;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.licencia-popup-close:hover {
  background: #555;
}

.licencia-popup-titulo {
  margin-top: 0;
  color: #333;
}

.licencia-popup-body {
  margin-top: 20px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .licencia-popup {
    max-width: 95%;
    padding: 20px;
  }
  
  .licencia-popup-close {
    top: -15px;
    right: -15px;
    width: 25px;
    height: 25px;
    font-size: 16px;
  }
}