body {
  font-family: sans-serif;
  background: #f5f5f5;
}

#calendar-container {
  max-width: 900px;
  margin: 40px auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#calendar-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.fc-header-toolbar {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.fc-button-group > .fc-button {
  margin-left: 5px;
}

.fc-event {
  font-size: 12px !important;
  font-weight: normal !important;
}

.fc-daygrid-day-number {
  font-size: 15px !important;
}

#calendar-super-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

#calendar-super-header img {
  width: 32px;
  height: 32px;
}

#calendar-super-header h1 {
  font-size: 26px;
  font-weight: bold;
  margin: 0;
  color: #333;
}

/* Responsivo */
@media (max-width: 600px) {
  #calendar-super-header {
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    text-align: center;
  }

  #calendar-super-header h1 {
    font-size: 18px;
  }

  #calendar-super-header img {
    width: 28px;
    height: 28px;
  }

  #calendar-title {
    font-size: 18px;
  }

  #calendar-container {
    margin: 20px 10px;
    padding: 10px;
  }

  .fc-header-toolbar {
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
  }

  .fc-button-group {
    flex-wrap: wrap;
    justify-content: center;
  }

  .fc-event {
    font-size: 10px !important;
  }

  .fc-daygrid-day-number {
    font-size: 13px !important;
  }

}
