body {
    font-family: Montserrat, sans-serif;
    background: #fff;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
}

h1 {
    text-align: center;
    margin: 50px 0 25px 0;
    font-weight: 400;
}

.title{
    color : #fff;
    background-color: #0a5250;
    padding: 5px 50px;
}

label{
    color: #000;
}

.form{
    width: 100%;
    margin-top: 50px;
}

form{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

input{
    height: 40px;
    width: 300px;
    border: none;
    border: solid 1px #0a5250;
}

button{
    color : #fff;
    font-size: 16px;
    font-weight: 600; 
    background-color: #0a5250;
    padding: 15px 50px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    margin-bottom: 50px;
    cursor: pointer;
    transform:scale(1);
    transition: .3s;
}

button:hover{
    transform:scale(0.9);
    transition: .3s;

}

.link{
    color: #0a5250;
    text-decoration: none;
    transition :.3s;
    padding: 5px; 

}

.link:hover{
    text-decoration: underline;
}

.link_grise{
    color: #0a5250;
    text-decoration: none;
    transition :.3s;
    padding: 5px; 

}

.link:hover{
    text-decoration: underline;
}

.footer_link{
    margin-bottom: 50px;
}

#calendar {
    width: 70vw;
    margin: 50px auto;
    height: 750px;
}

.fc .fc-view-harness{
    background-color: #fff !important;
}

#fc-dom-1{
    color : #fff;
    background-color: #0a5250;
    padding: 5px 50px;
    text-align: center;
}

.fc .fc-button-primary:not(:disabled).fc-button-active{
    background-color: #063433 !important;
    border-color: #063433 !important;
}

.fc .fc-button-primary{
    background-color: #0a5250 !important;
    border-color: #0a5250 !important;
    border-radius: 0px !important;
}

#event-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 10;
}

#event-modal form {
    display: flex;
    flex-direction: column;
}

#event-modal form input, #event-modal form button {
    margin: 10px 0;
}

.fc-past {
    background-color: rgba(232, 232, 232, 0.5);
}

#event-form label{
    color: #0a5250;
}

#event-form input{
    border: #0a5250 solid 1px;
}
 
.fc-timegrid-slot {
    height: 30px !important; /* Ajuste la hauteur des créneaux horaires*/
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(6, 30px);
    gap: 5px;
}
.color-option {
    width: 30px;
    height: 30px;
    border: 2px solid transparent;
    cursor: pointer;
}

.color-option.selected {
    border: 2px solid #000;
}

/*#start_time, #end_time{
    font-size: 20px;
    background-color: red;
    cursor: pointer;
}*/

input[type="datetime-local"] {
            width: 100%;
            padding: 8px;
            margin: 5px 0;
            box-sizing: border-box;
            font-size: 20px;
            cursor: pointer;
        }
input[type="datetime-local"]:focus {
            border-color: red;
            outline: none;
        }
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
            font-size: 25px;
            color: #fff;
            cursor: pointer;
        }

.logocoloc{
    width: 10%;
}

.head_logo{
    margin: 0 auto;
    text-align: center;
}

#head_titre{
    font-weight: 400;
    margin-top: 10px;
}

.dott{
    border-bottom: dotted 10px;
    border-color: #fff;
    width: 30%;
}





/* Styles pour les appareils mobiles */
@media (max-width: 767px) {

    .fc-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .fc .fc-toolbar-title {
        font-size: 1.5em;
        margin-bottom: 0.5em;
    }

    .fc .fc-toolbar-chunk {
        margin-bottom: 0.5em;
    }

    .fc-timegrid {
        font-size: 0.8em;
    }

    .fc-event {
        font-size: 0.8em;
    }

    .fc-col-header-cell-cushion {
        padding: 0.5em;
    }

    .fc-daygrid-dot-event {
        font-size: 0.7em;
    }

    .fc .fc-button {
        font-size: 0.8em;
        padding: 0.5em;
    }

    .fc-toolbar.fc-header-toolbar {
        margin-bottom: 1em;
    }

    #calendar {
        width: 90vw;
        margin: 50px auto;
        height: 850px;
    }

    .logocoloc{
    width: 45%;
    }


}

