body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.header {
    height: 6vh;
    background-color: white;
    color: darkgrey;
    display: flex;
    justify-content: left;
    align-items: center;
}

.header .logo {
    height: 50px;
    margin-right: 20px;
}

.main {
    display: flex;
    width: 100%;
    height: 90vh;
}

h1 {
    text-align: center;
    color: darkslategrey;
    font-size: 16px;
    text-transform: uppercase;
}

.header h1 {
    margin-right: 40px;
    text-align: center;
    margin-left: 300px;
}

h2 {
    text-align: center;
    color: darkslategrey;
    font-size: 13px;
}

form {
    background: #fff;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin: 10px 0;
}

.checkbox-container label {
    margin: 0;
    background-color: #007BFF  ;
}

.company {
    text-decoration: uppercase;
    color: darkslategrey;
    font-size: 1.2em;
}

.dashboard-container {
    display: flex;
    margin: 20px;
    width: 80%;
}

.day-column {
    flex: 1;
    margin: 0 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.day-column h2 {
    text-align: center;
    color: darkslategrey;
    font-size: 13px;
}

.time-slot {
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid lightgrey;
    position: relative;
}

.time-slot.green {
    background-color: #d4edda;
}

.time-slot.orange {
    background-color: #fff3cd;
}

.time-slot.red {
    background-color: #f8d7da;
}

.time-slot .transport-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    color: white;
    padding: 5px;
}

.time-slot .slot-info {
    margin-left: 10px;
}

.time-slot .slot-info div {
    display: flex;
    color: #666;
    font-size: 10px;
}

.time-slot .slot-info div.horaire,
.time-slot .slot-info div.quais {
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.time-slot .status {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 2px 5px;
    border-radius: 3px;
    color: white;
    font-size: 10px;
}

.sidebar {
    width: 20%;
    background-color: #f0f0f0;
    padding: 20px;
    height: 100%;
    border-left: 1px solid #ddd;
}

.sidebar h3 {
    margin-top: 0;
    color: darkslategrey;
}

.sidebar input {
    width: auto;
    padding: 8px;
    margin-bottom: 10px;
}

.checkbox-group {
    display: flex;
    gap: 10px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    min-width: 50px;
    background-color: white;
    border: 1px solid #007BFF;
    border-radius: 5px;
    cursor: pointer;
}

.checkbox-container input[type="radio"] {
    margin-right: 10px;
    background-color: #007BFF;

}

input, select {
    padding: 10px;
    border: 1px solid #007BFF;
    border-radius: 5px;
}

.form-group input[type="text"] {
    min-width: 400px;
}

#datepicker {
    background-color: white;
    color: #007BFF;
    border: 1px solid #007BFF;
    border-radius: 5px;
    padding: 10px;
    width: 90%;
}



button {
    background-color: #007BFF;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background-color: #0056b3;
}

/* Styles pour le calendrier */

.reservation-info {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #e7f1ff;
    border-radius: 5px;
}

.reservation-info p {
    margin: 5px 0;
}

.main-container {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: top;   
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.calendar-container {
    flex: 1;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    max-width: 700px;

}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    color: darkslategrey;
    font-size: 20px;
    margin-bottom: 20px;
}

.calendar-weekdays {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
}

.calendar {
    display: flex;
    flex-wrap: wrap;
}

.calendar-day {
    width: calc(100% / 7);
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.calendar-day:hover {
    background-color: #e7f1ff;
}

.time-slots-container {
    width: 180px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-left: 20px;
}

.time-slot {
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.time-slot.available {
    background-color: #d4edda;
}

.time-slot.unavailable {
    background-color: #f8d7da;
    cursor: not-allowed;
}

.time-slot.available:hover {
    background-color: #c3e6cb;
}


.calendar-day.past {
    background-color: #f0f0f0;
    color: #a0a0a0;
}

.calendar-day.future {
    font-weight: bold;
    border-radius: 50px;
}

.calendar-day.today {
    background-color: #007BFF;
    color: white;
    font-weight: bold;
    border-radius: 50px;
}

     .header-info {
            background-color: #003366;
            color: white;
            padding: 10px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            max-height: 80px
        }
        .time-slots-header {
            padding: 10px;
            text-align: center;
            font-weight: bold;
            color: #007BFF;
        }
.time-slot.unavailable:hover {
    content: "🚫";
    position: absolute;
    font-size: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}