/* Estilos para la lista de eventos */
.events-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.event-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.event-image {
    flex-shrink: 0;
    width: 150px;
}

.event-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.event-text {
    flex: 1;
    min-width: 0; /* Permite que se reduzca si necesario */
}

.event-item h3 {
    margin-top: 0;
    color: #0056b3;
}

.event-item p {
    margin-bottom: 0.5rem;
}

.event-item strong {
    color: #333;
}

.event-item-details {
    margin-bottom: 1rem;
}

.btn-details {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.btn-details:hover {
    background-color: #0056b3;
}

/* Estilos para el calendario de eventos */
.calendar-month-header {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-left: 4px solid #007bff;
    margin: 15px 0 10px 0;
    font-weight: bold;
    font-size: 1.2em;
}

/* Ajustar el ancho de la tarjeta de verificación de eventos */
.event-verification-card {
    width: auto !important; /* Permitir que el ancho se ajuste al contenido */
    max-width: 100%;
    display: inline-block;
}
