/**
 * calendar.css
 * Stili calendario eventi
 */

#ultramod-calendar {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 20px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-bottom: 20px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-day {
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.calendar-day:hover {
  background: #e7f1ff;
}

.event-card {
  background: #f8f9ff;
  border-left: 3px solid #0073e6;
  padding: 10px 14px;
  margin-bottom: 10px;
  border-radius: 6px;
}

.event-card h4 {
  margin: 0 0 5px;
}
