/* 🎨 Estilos para el Calendario */
#calendar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  color: #fff;
  margin-top: 1px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  width:500px;
  height:110px;
}

#calendar h2 {
  margin-bottom: 10px;
}

#calendar-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

#calendar-controls button {
  background: #4facfe;
  border: none;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

#calendar-controls button:hover {
  background: #00c6ff;
}

#calendarTable {
  width: 100%;
  border-collapse: collapse;
}

#calendarTable th, #calendarTable td {
  padding: 10px;
  text-align: center;
  border-radius: 8px;
}

#calendarTable td {
  cursor: pointer;
  transition: 0.3s;
}

#calendarTable td:hover {
  background: rgba(255, 255, 255, 0.2);
}

#calendarTable .today {
  background: #ff9800;
  color: white;
  font-weight: bold;
}

#calendarTable .event {
  background: #4caf50;
  color: white;
  font-weight: bold;
}
