html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
}

.content-alerts-efc {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 450px;
}

.content-body-contenido{
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .content-body-contenido {
    width: 100%;
  }
}

.popUps-conten {
  display: flex;
  position: fixed;
  inset: 0; /* Shorthand para top:0; right:0; bottom:0; left:0 */
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popUps-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh; /* Para evitar que el contenido se salga */
  overflow-y: auto;
  position: relative;
}

.popUps-close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  color: #555;
}

.fc-highlight {
  background: var(--fc-selection-color) !important;
}