/* Events Container */
.eae-events-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 20px;
}

/* Event Row */
.eae-event-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #222;
    padding: 0 20px;
    transition: background-color 0.3s ease;
    height: 80px;
}

.eae-event-row:hover {
    background-color: #333 !important;
}

/* Event Date */
.eae-event-date {
    flex: 0 0 200px;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* Event Venue */
.eae-event-venue {
    flex: 1;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

/* Button Container */
.eae-event-button-container {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Event Button */
.eae-event-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #951a03;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.eae-event-button:hover {
    background-color: #7b1502;
    text-decoration: none;
    color: #fff;
}

/* Gradient Effect */
.eae-events-container.gradient-enabled .eae-event-row {
    transition: background-color 0.3s ease;
}

/* Responsive */
@media (max-width: 767px) {
    .eae-event-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 15px;
        height: auto;
    }
    
    .eae-event-date,
    .eae-event-venue,
    .eae-event-button-container {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .eae-event-date {
        justify-content: center;
    }
    
    .eae-event-button {
        display: block;
        text-align: center;
        width: 100%;
    }
} 