#company-schedule-form {
    max-width: 800px;
    margin: 20px auto;
   background-color: #ffffff; /* Fond blanc */
    border: none; /* Pas de bordure */
    padding: 20px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.5); /* Ombre */
  font-family: "Poppins", sans-serif;
   font-weight: 500;
	 border-radius: 13px; /* Coins arrondis */

}
#company-schedule-form label {
  font-size: 20px; /* Taille des labels */
  color: #F97758; /* Couleur des labels */
  display: block;
  margin-bottom: 8px;
}

#company-schedule-form input,
#company-schedule-form select,
#company-schedule-form textarea {
  font-size: 15px; /* Taille du texte dans les champs */
  border-radius: 13px; /* Coins arrondis des champs */
  border: 1px solid #ccc;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 15px;
}

#company-schedule-form h3 {
    margin-top: 20px;
    padding-bottom: 5px;
    border-bottom: 2px solid #ccc;
}

#company-schedule-form h4 {
    margin: 10px 0 5px;
}

.work-day, .day-off {
    margin-bottom: 15px;
    padding: 10px;
    background: #fff;
    border: 1px solid #ccc;
}

.slot, .day-off {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 5px;
}

.slot input[type="time"],
.day-off input[type="date"],
.day-off input[type="text"] {
    padding: 3px;
}

button.add-slot,
button#add-day-off {
    background: #4CAF50;
    color: white;
    padding: 5px 10px;
    border: none;
    margin-top: 5px;
    cursor: pointer;
}

button.remove-slot,
button.remove-day-off {
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
}

button[type="submit"] {
    background: #0073aa;
    color: white;
    padding: 10px 15px;
    border: none;
    margin-top: 20px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    opacity: 0.9;
}