/* Event Selection Modal Styles */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
}

.event-option {
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-option:hover {
    border-color: #d8aa6a;
    background: #fef9f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(216, 170, 106, 0.2);
}

.event-date {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-date strong {
    font-size: 16px;
    color: #1a1a1a;
}

.event-time {
    font-size: 13px;
    color: #666;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

.event-location {
    font-size: 13px;
    color: #666;
}

.event-seats {
    font-size: 14px;
    font-weight: 600;
    color: #4caf50;
}

.event-seats.low {
    color: #f44336;
}

@media (max-width: 768px) {
    .event-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .event-details {
        text-align: left;
        width: 100%;
    }
}
