.store-locator-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.store-map {
    height: 500px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
}

.store-list {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.store-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.store-list-items li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.store-list-items li:hover {
    color: #007bff;
}

.store-popup {
    min-width: 200px;
    font-size: 14px;
}

.store-popup h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.store-popup p {
    margin: 5px 0;
}