.store-container {
    display: flex;
    flex-direction: column;
}
.store-search {
    padding: 10px 0px;
    text-align: center;
}
.store-search input {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.store-list-container {
    display: flex;
}
.store-list {
    width: 30%;
    overflow-y: auto;
    padding: 10px;
    height: 500px;
    border-right: 1px solid #ddd;
}
.store-map {
    width: 70%;
    height: 500px;
   
}
.store-item {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    transition: background 0.3s;
     font-size: 14px;
}
.store-item:hover {
    background-color: #f5f5f5;
}

.store-item h3 {
    font-size: 15px;
    font-weight: bold;
}

.store-item a {
    font-size: 14px;
}
#store-list {
    background: #f7f7f7;
    border: 1px solid #ddd;
}



/* Responsive cho màn hình nhỏ */
@media (max-width: 767px) {
    .store-container {
        flex-direction: column;
        height: auto;
    }
    .store-list-container {
        flex-direction: column;
    }
    .store-list {
        width: 100%;
        height: 300px;
    }
    .store-map {
        width: 100%;
        height: 400px;
    }
}
