/* Calendário */
.calendar-header {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .calendar-header select {
    background-color: #e3f2fd;
    border: 1px solid #ccc;
    font-size: 14px;
    padding: 5px;
  }
  
  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #ddd;
  }
  
  .calendar-grid div {
    background: #fff;
    min-height: 50px;
    text-align: center;
    padding-top: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .calendar-grid div:hover {
    background-color: #e0f7fa;
  }
  
  .calendar-grid .day-name {
    background: #f5f5f5;
    font-weight: bold;
    cursor: default;
  }
  
  .calendar-grid .today {
    background-color: #bbdefb;
    font-weight: bold;
    border: 2px solid #1976d2;
  }

  #calendar-days div.selected {
    background-color: #FFA500;
    color: white;
    border-radius: 4px;
  }
  