/* Custom Scrollbar */
#wssl-list-container::-webkit-scrollbar { width: 6px; }
#wssl-list-container::-webkit-scrollbar-track { background: #f1f1f1; }
#wssl-list-container::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
#wssl-list-container::-webkit-scrollbar-thumb:hover { background: #94a3b8; }
.wssl-item.active { background-color: #eff6ff; border-left: 4px solid #3b82f6; }

/* Prevent Map conflicts - Only target images inside the map div */
#wssl-map img { max-width: none !important; box-shadow: none !important; }

/* Force visible borders for inputs */
#wssl-search, #wssl-province {
    border: 1px solid #cbd5e1 !important; /* gray-300+ */
    color: #334155 !important; /* slate-700 */
    font-size: 15px !important;
}
#wssl-search:focus, #wssl-province:focus {
    border-color: #3b82f6 !important; /* blue-500 */
    ring: 2px solid #3b82f6 !important;
}

/* Accordion Logic */
.wssl-store-details {
    display: none;
    transition: all 0.3s ease;
}
.wssl-item.active .wssl-store-details {
    display: block;
    animation: wssl-fade-in 0.3s ease-in-out;
}
@keyframes wssl-fade-in {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}