/* Conteneur */
.agenda-nextcloud {
    max-width: 1100px;
    margin: 2rem auto;
}

/* Barre d'outils */
.fc .fc-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Groupe de boutons */
.fc .fc-button-group {
    display: flex;
    gap: .4rem;
}

/* Boutons */
.fc .fc-button {
    background: #f5f5ef !important;
    color: #222 !important;
    border: 1px solid #d9d9d0 !important;
    border-radius: 8px !important;
    padding: .7rem 1.2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    box-shadow: none !important;
    transition: .2s;
}

/* Bouton actif */
.fc .fc-button-active,
.fc .fc-button:hover {
    background: #4d6b09 !important;
    color: #fff !important;
}

/* Titre */
.fc .fc-toolbar-title {
    font-size: 2rem !important;
    font-weight: 700;
    color: #222;
}

/* Entête des jours */
.fc-theme-standard th {
    background: #fafaf5;
    color: #4d6b09;
    font-weight: 700;
    text-transform: uppercase;
}

/* Cases */
.fc-theme-standard td,
.fc-theme-standard th {
    border-color: #e8e8e8;
}

/* Evènements */
/*
.fc-event {
    background: #2d7be5 !important;
    border: none !important;
    border-radius: 4px;
    padding: 2px 5px;
    font-size: .85rem;
}

.fc-event-title {
    font-weight: bold;
    font-size: 12px;
    color: #fff;
}
.fc-event-time{
    font-weight: bold;
    font-size: 12px;
    color: #fff;
}
*/
.fc-event {
    background: #ADD8E6 !important;
	border: none !important;
    border-radius: 4px;
    padding: 2px 5px;
    font-size: .85rem;
}

.fc-event-title {
    font-weight: bold;
    font-size: 12px;
    color: #222;
}
.fc-event-time{
    font-weight: bold;
    font-size: 12px;
    color: #222;
}

.evenement-journee {
    background: #ADD8E6 !important;
    border: none !important;
}
/*
.evenement-journee .fc-event-title::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 18px;
    background-color: #2d7be5;
    border-radius: 2px;
    margin-right: 8px;
    vertical-align: middle;
}*/

/* Aujourd'hui */
.fc-day-today {
    background: #fff8dc !important;
}

/* Carte */
.fc {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}