.App {
  text-align: center;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

/* styles.css */
.react-calendar .highlight3 {
  background-color: #4caf50; /* Verde para aprovado */
  color: white;
  border-radius: 50%;
}

.react-calendar .highlight2 {
  background-color: #f5df17; /* Vermelho para em aprovação */
  color: white;
  border-radius: 50%;
}

.react-calendar .highlight-selected {
  background-color: #4c56af;
  color: white;
  border-radius: 50%;
}

.react-calendar__tile .react-calendar__month-view__days__day .highlight2 {
  background-color: #f5df17 !important;
  color: white !important;
}

.react-calendar__tile .react-calendar__month-view__days__day .highlight3 {
  background-color: #68f517 !important;
  color: white !important;
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* CSS Classes para diferentes tipos de dias */
.selected-day {
  background-color: blue !important;
  color: white;
}

.ferias-day {
  background-color: red !important;
  color: white;
}

.falta-day {
  background-color: rgb(223, 145, 0) !important;
  color: white;
}

.normal-day {
  background-color: lightgreen !important;
}

.turno-alterado-day {
  background-color: darkgreen !important;
  color: white;
}


.feriado-day {
  background-color: white; /* Cor dos feriados */
  color: red;
}

.horas-extras-day {
  background-color: #ADD8E6; /* Azul clarinho */
}

.feriado-manual-day {
  background-color: #FFD700; /* Dourado para destacar feriados manuais */
}