/* Augmenter la hauteur du calendrier */


/* Hauteur mini du calendrier */
.fc .fc-scrollgrid{
	min-height:330px;
}
/* Margin en dessous si affichage sur une colonne */
.fc .fc-view-harness{
margin-bottom:30px;
}
	
/* hauteur de l'entete */
.fc-col-header-cell {
    padding: 5px 0 !important;
	line-height: 0px !important;
}
.fc-col-header{
	margin:0px !important;
	padding:0px !important;
}
.fc .fc-toolbar.fc-header-toolbar{
margin-bottom: 0px;
font-size: 12px;
}
/* Pour définir les style du mois */
.fc .fc-toolbar-title {
    font-size:1.5em;
	bottom: 0px;
    top: 20px;
    position: relative !important;
    text-transform: capitalize;
	padding-right:30px;
	
}

.fc .fc-daygrid-day-top{
	display:block;
	text-align:center;
}
.fc-daygrid-day .fc-day .fc-day-fri .fc-day-future td{
	border:0px;
	margin:0px;
	padding:0px;
}

/*Couleur des jours dans l'entete */
.fc .fc-col-header-cell-cushion {
color:white;
font-size:12px;
}

/* Réduire la hauteur des cases */
.fc-daygrid-day-frame {
  height: 40px !important; /* Ajuste selon ton besoin */
    display: flex;
    align-items: center;
    justify-content: center;
	border:1px solid #ebebeb;
	background-color:white;
}
/* Masquer les scroller */
.fc .fc-scroller {
overflow : hidden !important;
}


/* Rétablir l'alignement du numéro du jour */
.fc-daygrid-day-number {
    position: absolute;
    top: 5px; /* Ajuste si besoin */
    left: 5px;
    font-size: 12px !important;
    font-weight: bold !important;
    color: #333 !important;
	text-decoration:none !important;
}

/* Optionnel : Ajuster la hauteur des événements pour mieux s'intégrer */
.fc-daygrid-event {
    height: 15px !important; /* Ajuste selon ton besoin */
    line-height: 15px !important;
}

/* Style pour les jours complets avec hachures rouge et gris */
.reservation-full::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Prend toute la case */
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        red,
        red 5px,
        gray 5px,
        gray 10px
    );
    z-index: 1;
    pointer-events: none; /* Ne bloque pas les interactions */
}

/* Enlever le fond vert par défaut */
.reservation-arrival, .reservation-departure {
    background-color: transparent !important;
}

/* Style pour le jour d'arrivée : hachures rouge et gris sur la moitié droite */
.reservation-arrival::before {
    content: "";
    position: absolute;
    top: 0;
    left: 70%; 
    width: 30%; 
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        red,
        red 5px,
        gray 5px,
        gray 10px
    );
    z-index: 1; /* S'assurer qu'il reste visible */
    pointer-events: none; /* Ne bloque pas les interactions */
}

/* Style pour le jour de départ : hachures rouge et gris sur la moitié gauche */
.reservation-departure::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%; 
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        red,
        red 5px,
        gray 5px,
        gray 10px
    );
    z-index: 1;
    pointer-events: none;
}



/* Assurez-vous que le texte reste lisible */
.fc-daygrid-day {
    
    align-items: center !important;
    justify-content: center !important;
   
	 padding: 0 !important;
    margin: 0 !important;
    border: none !important;
	
}
/* enlevé le mot réservé */
.fc-daygrid-day .fc-event-title {
    display: none !important;
}

