/* Main Container */
.shows-listing-container {
    max-width: 100%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

/* Filters Section */
.show-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.filter-item {
    flex: 1;
    min-width: 150px;
}

.filter-item select, 
.filter-item input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
}

.search-container {
    position: relative;
    flex: 1;
}

.search-container input {
    padding-right: 40px;
}

.search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #8B0000;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.clear-filter {
    margin-left: auto;
    white-space: nowrap;
}

.clear-filter a {
    color: #666;
    text-decoration: none;
}

/* Month Section */
.month-section {
    margin-bottom: 25px;
}

.month-title {
    color: #8B0000;
    font-size: 20px;
    position: relative;
    padding: 10px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    user-select: none;
}

.toggle-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

/* Show Item */
.show-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px dashed #ddd;
    border-radius: 4px;
}

.show-date {
    width: 60px;
    text-align: center;
    margin-right: 15px;
}

.weekday {
    font-size: 14px;
    color: #666;
    line-height: 1;
}

.day {
    font-size: 26px;
    font-weight: bold;
    color: #8B0000;
    line-height: 1.1;
}

.month {
    font-size: 14px;
    color: #666;
    line-height: 1;
}

.show-image {
    width: 100px;
    height: 70px;
    margin-right: 15px;
    overflow: hidden;
    border-radius: 3px;
}

.show-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image {
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
}

.show-details {
    flex: 1;
}

.show-title {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.show-title a {
    color: #8B0000;
    text-decoration: none;
}

.show-meta {
    font-size: 14px;
    color: #666;
}

.show-meta span:not(:last-child)::after {
    content: "•";
    margin: 0 5px;
}

.ticket-button {
    margin-left: 15px;
}

.buy-ticket {
    display: inline-block;
    background-color: #8B0000;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
}

/* Loading State */
.shows-listing-container.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* No Shows Message */
.no-shows {
    text-align: center;
    padding: 30px;
    color: #666;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .show-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-item {
        width: 100%;
    }
    
    .clear-filter {
        margin: 10px 0 0 0;
        text-align: center;
    }
    
    .show-item {
        flex-wrap: wrap;
    }
    
    .show-date {
        width: 50px;
    }
    
    .show-image {
        width: calc(100% - 65px);
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .show-details {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .ticket-button {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }
}