 /* [!code start] */
        /* --- New styles for filters --- */
        /* Make search bar and dropdowns work together */
        #exploreSearchWrapper {
            max-width: none; /* Override layout.css */
            margin-bottom: 0;
        }

        .dropdown-divider {
            height: 1px;
            background-color: var(--border-color);
            margin: 5px 0;
        }
        
        .dropdown-menu {
             max-height: 400px;
             overflow-y: auto;
        }

       .explore-card {
            background-color: var(--surface-color);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            cursor: pointer; /* Now clickable to open modal */
            transition: border-color 0.2s;
        }
        .explore-card:hover {
            border-color: var(--primary-color);
        }
        .explore-card img {
            width: 100%;
            height: auto;
            aspect-ratio: 210 / 295;
            object-fit: cover;
            pointer-events: none; /* Make click fall through to card */
        }
        .explore-card-content {
            padding: 10px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            pointer-events: none; /* Make click fall through to card */
        }
        .explore-card h3 {
            font-size: 1.1rem;
            color: var(--primary-color);
            margin: 0 0 8px 0;
            flex-grow: 1; 
        }
        .explore-card .star-rating-container {
             margin-bottom: 10px;
        }
		
		  .explore-filters {
            max-width: 900px;
            margin: 0 auto 25px auto;
        }

        .explore-controls {
            display: flex;
            flex-wrap: wrap; 
            gap: 20px;
            justify-content: center;
        }
		
		
        .add-show-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 8px;
            width: 100%;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.2s;
            pointer-events: all; /* Allow button to be clicked */
        }
        .add-show-btn:hover {
            background-color: #3593d6;
        }
        .add-show-btn.added {
            background-color: var(--success-color);
            cursor: not-allowed;
        }



		
