/* 🔹 Estilos generales */
body, .fc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

/* 🔹 Contenedor principal */
#kcbf-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

#kcbf-calendar {
  margin-top: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  min-height: 600px;
  width: 100%;
  overflow-x: auto;
}

/* 🔹 Botones del calendario */
.fc-button {
  background-color: #8e61a5;
  border: none;
  color: #fff;
  border-radius: 4px;
  padding: 6px 12px;
  font-weight: 500;
}
.fc-button:hover { background-color: #7a4d91; }
.fc-button:disabled { opacity: 0.6; cursor: not-allowed; }

/* 🔹 Título y encabezados */
.fc-toolbar-title { font-size: 1.5rem; color: #4a4a4a; }
.fc-col-header-cell { font-size: 13px; }

/* 🔹 Eventos en modo "mes" */
.fc-daygrid-event {
  padding: 6px 8px;
  font-size: 13px;
  border-radius: 4px;
  background-color: #725CB2;
  color: white;
  white-space: normal;
  display: block;
}
.fc .fc-daygrid-event:hover,
.fc .fc-timegrid-event:hover {
  background-color: #7093e5 !important;
  color: #fff !important;
  cursor: pointer;
}

.fc-event-title { font-size: 13px; font-weight: 500; }
.fc-event-time { font-size: 13px !important; font-weight: bold; }

/* 🔹 Vistas de semana/día */
.fc-timegrid-slot { height: 60px !important; }
.fc-timegrid-slot-label { width: 60px !important; }

/* 🔹 Quitar el dot azul */
.fc-daygrid-event-dot { display: none !important; }

#kcbf-title h4 { color: #fff !important; }

#kcbf-breadcrumb {
  background-color: #725cb2;
  color: white;
  padding: 1rem;
  border-radius: 12px 12px 0 0;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#kcbf-breadcrumb-info { font-size: 1rem; line-height: 1.4; }

#kcbf-boton-atras {
  background: white;
  color: #7e57c2;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 8px;
}

/* Cards */
.kcbf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 10px;
  width: 100%;
}

.kcbf-card {
  background: #f9f9f9;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #ddd;
}

.kcbf-card:hover {
  background: #e0d7f3;
  transform: translateY(-2px);
}
.kcbf-card h3 { margin: 0 0 10px; font-size: 18px; }
.kcbf-card p { margin: 5px 0; font-size: 14px; }
.kcbf-card strong { color: #2c3e50; font-size: 16px; }



@media (max-width: 768px) {
  .kcbf-grid {
    grid-template-columns: 1fr !important;
  }
}