/* Default Style Preset - Minimal Modern Look */

/* Event List Container */
.ats_event_list_events_container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Event List Header */
.ats_event_list_events_header {
    background: #2c3e50;
    color: #fff;
    padding: 16px 20px;
    margin-bottom: 24px;
    border-radius: 8px 8px 0 0;
    font-size: 18px;
    font-weight: 600;
}

/* Event Items */
.ats_event_list_event_item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.ats_event_list_event_item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ats_event_list_event_content {
    display: flex;
    padding: 20px;
    gap: 20px;
}

/* Event Image */
.ats_event_list_event_image {
    flex-shrink: 0;
    width: 150px;
}

.ats_event_list_event_image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

/* Event Details */
.ats_event_list_event_details {
    flex: 1;
}

.ats_event_list_event_title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #2c3e50;
}

.ats_event_list_event_title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ats_event_list_event_title a:hover {
    color: #3498db;
}

.ats_event_list_event_description {
    color: #666;
    margin: 0 0 16px 0;
    line-height: 1.6;
}

/* Showtimes */
.ats_event_list_event_showtimes {
    margin-top: 16px;
}

.ats_event_list_showtime_row {
    display: grid;
    grid-template-columns: 70px repeat(auto-fit, 80px);
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.ats_event_list_showtime_date {
    font-weight: 600;
    color: #2c3e50;
}

.ats_event_list_showtime_time {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 6px 12px;
    text-align: center;
    transition: all 0.2s ease;
}

.ats_event_list_showtime_time:hover {
    background: #e9ecef;
    border-color: #3498db;
}

/* Timeline Container */
.ats_event_timeline_container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.ats_timeline_day {
    margin-bottom: 32px;
    border-left: 3px solid #3498db;
    padding-left: 20px;
}

.ats_timeline_date_header {
    margin-bottom: 16px;
}

.ats_timeline_day_name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.ats_timeline_events {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ats_timeline_event {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ats_timeline_event:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.ats_timeline_event_title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #2c3e50;
}

.ats_timeline_event_title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ats_timeline_event_title a:hover {
    color: #3498db;
}

.ats_timeline_event_description {
    color: #666;
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.ats_timeline_event_times {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.ats_timeline_time {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.ats_timeline_time:hover {
    background: #e9ecef;
    border-color: #3498db;
}

/* Purchase Links */
.agileLink {
    display: inline-block;
    padding: 12px 24px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
}

.agileLink:hover {
    background: #2980b9;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.4);
}

.agileLink:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Filter Buttons */
.ats_filter_btn {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px 16px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ats_filter_btn:hover {
    background: #f8f9fa;
    border-color: #3498db;
    color: #3498db;
}

.ats_filter_btn.active {
    background: #3498db;
    border-color: #3498db;
    color: #fff;
}