
.no-hours {
  white-space: nowrap;
}

#kalendarz-ankieta-kwalifikacyjna {
    width: 100%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 12px;
    overflow: auto;
    display: flex;
    flex-direction: row;
    border: solid 1px;
  }
  
  .day-container {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
  }
  
  .day {
    flex-grow: 1;
    padding: 10px;
    color: #CCCCCC; /* Kolor tekstu */
    text-align: center;
    border-right: 1px solid #333; /* Oddzielenie dni */
  }
  
  .day:last-child {
    border-right: none;
  }
  
  .day-of-week {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: bold;
  }
  
  .date {
    margin: 5px 0 0 0;
    padding: 0;
    font-size: 14px;
    margin-bottom: 10px;
    border-bottom: solid 1px;
    padding-bottom: 10px;
  }
  
  .day-number {
    font-weight: bold;
  }
  
  .month {
    margin-left: 5px;
  }
  
  /* Stylizacja godzin pozostaje bez zmian */
  .hour {
    font-size: 14px;
    color: #CCCCCC;
    padding: 5px;
    border-bottom: 1px solid #404040;
  }
  
  .hour:last-child {
    border-bottom: none;
  }
  

  
  /* Stylizacja przycisków i kontenerów dla motywu ciemnego */
  .nav-btn {
    cursor: pointer;
    padding: 10px 15px;
    background-color: #F5821A; /* Niebieski akcent */
    color: white; /* Ciemne tło tekstu */
    border: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s; /* Animacja dla przycisku */
  }
  
  .nav-btn:hover {
    background-color: #c46818; /* Ciemniejszy niebieski przy najechaniu */
  }
  
  .nav-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-bottom: 0.5rem;
    gap: 0.5rem;
    width: 100%;
  }

  .hour.clickable {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hour.clickable:hover {
    background-color: #F5821E; /* Jasnoszary tło przy najechaniu */
    color: white;
}


.hour.active {
    background-color: #F5821E; /* Przykładowy kolor tła dla aktywnej godziny */
    color: white;
}

@media (max-width: 768px) {

    #kalendarz-ankieta-kwalifikacyjna {
        flex-direction: column;
      }

    .day {
      width: 100%;
      border-right: none;
      border-bottom: 1px solid #333;
      padding: 12px 6px;
    }
  
    .day:last-child {
      border-bottom: none;
    }
  
    .day-container {
      flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
      }
  }
