html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
}
header {
  background-color: #2F5334;
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 1.5rem;
}
.titulo-principal {
  font-family: 'Poppins', sans-serif;
  font-size: 1.0rem;
  font-weight: 100;
  color: white;
}
.main-container {
  flex: 1;
  display: flex;
  overflow: hidden;
}
.offcanvas-start {
  background-color: #343a40;
  color: white;
}
.offcanvas-title {
  color: #2F5334;
}
.item-lateral {
  color: #2F5334 !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-decoration: none;
}
.item-lateral:hover {
  text-decoration: underline;
}
.tipo-letra{
  font-family: 'Poppins', sans-serif;
}
.tipo-letra-verde{
  color: #2F5334 !important;
  font-family: 'Poppins', sans-serif;
}
.fondo-verde{
  background-color : #2F5334 !important;
}
.offcanvas-body a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 1rem;
}
.offcanvas-body a:hover {
  text-decoration: underline;
}
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  overflow-y: auto;
}
#calendar {
  flex: 1;
  min-height: 0; /* importante para que flex funcione bien */
  width: 100%;
  background-color: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.offcanvas-body .list-group-item a {
  color: violet;
}
.btn-close.custom-cllose {
  color: #2F5334;
}
.fc-toolbar-title {
  font-size: 1.2rem !important; /* Ajusta el tamaño del texto (por defecto es ~1.75rem) */
  font-family: 'Poppins', sans-serif !important; /* Cambia el tipo de letra si lo deseas */
  color: #343a40 !important; /* Color oscuro legible */

}


.fc-col-header {
  border-radius: 16px !important;
}

.fc-scrollgrid-section > td {
  border-radius: 0px 0px 16px 16px !important;
}

.fc-scrollgrid-section > th {
  border-radius: 0px 16px 0px 0px !important;
}

.fc-scrollgrid {
  border-radius: 16px !important;
}
.fc-today-button {
  display: none !important;
}
.fc-prev-button {
  background-color: #2F5334 !important;
}
.fc-next-button {
  background-color: #2F5334 !important;
}
/* Cambiar el color de los números de los días */
.fc-daygrid-day-number {
  color: #000; /* Cambia a negro u otro color */
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
}
.fc-dayGridMonth-button {
  background-color: #2F5334 !important;
}
.fc-timeGridDay-button {
  background-color: #2F5334 !important;
}
/* Cambiar el color del texto de los días de la semana (encabezado: Lunes, Martes, etc.) */
.fc-col-header-cell-cushion {
  color: #2F5334; /* Violeta u otro color */
  font-family: 'Poppins', sans-serif;
}

.modal-header-custom {
    background-color: #2F5334;
    color: white;
  }

  .extra-small-text {
    font-size: 0.625rem !important; /* 10px */
  }











/* Para cambiar el color del texto en la vista de mes */
.fc-daygrid-event .fc-daygrid-dot-event .fc-event-title .fc-event-time a {
  color: #000 !important;
  text-decoration: none !important;
}






.image-overlay-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.image-overlay-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.5); /* fondo semitransparente */
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
}














