#cdeventos-container {
    margin-top: 20px;
    margin-bottom: 20px;
}

#cdeventos-calendar {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
}

#cdeventos-list .event-item {
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}

#cdeventos-list .event-item h4 {
    margin-top: 0;
}

#calendar {
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    margin-bottom: 30px;
    max-height: 600px;
}

.fc {
    max-width: 100%;
    font-size: 0.9em;
}

.fc .fc-toolbar-title {
    font-size: 1.2em;
}

.fc-event {
    display: none !important;
}

.fc-day-today {
    background-color: rgba(0,0,0,0.02) !important;
}

.fc-day:hover {
    background-color: rgba(0,0,0,0.05);
    cursor: pointer;
}

#events-list {
    padding: 15px;
}

.event-item {
    display: flex;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.event-image {
    flex: 0 0 100px;
    margin-right: 15px;
}

.event-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.event-content {
    flex: 1;
}

.event-item .event-time {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.event-item .event-title {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 10px;
}

.btn-reservar {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgb(149, 193, 41);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.btn-reservar:hover {
    background-color: rgb(129, 173, 21);
    color: white;
    text-decoration: none;
}

.event-reservation {
    margin-top: 15px;
}

.event-location {
    color: rgb(149, 193, 41);
    text-transform: uppercase;
    font-weight: 500;
    margin: 10px 0;
}

/* Estilo para los botones del calendario */
.fc .fc-button-primary {
    background-color: rgb(149, 193, 41) !important;
    border-color: rgb(149, 193, 41) !important;
    color: white !important;
}

.fc .fc-button-primary:hover {
    background-color: rgb(129, 173, 21) !important;
    border-color: rgb(129, 173, 21) !important;
}

.fc .fc-button-primary:disabled {
    background-color: rgba(149, 193, 41, 0.7) !important;
    border-color: rgba(149, 193, 41, 0.7) !important;
}

/* Estado activo del botón "today" */
.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active {
    background-color: rgb(129, 173, 21) !important;
    border-color: rgb(129, 173, 21) !important;
}

/* Estilo para el día seleccionado */
.fc .fc-day.selected-date {
    background-color: rgba(149, 193, 41, 0.2) !important;
}

.fc .fc-day.selected-date:hover {
    background-color: rgba(149, 193, 41, 0.3) !important;
}