.availability-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 2em;
  }
  
  .availability-day {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: 12.8%;
    text-align: center;
    background: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .day-toggle {
    margin-bottom: 10px;
  }
  
  .time-options {
    margin-top: 10px;
  }
  
  .time-options.hidden {
    display: none;
  }
  
  .form-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
  }
  