body {
    font-family: Arial, sans-serif;
}

#map {
    height: 500px;
    width: 100%;
    border-radius: 10px;
}

.map-container {
    display: flex;
    justify-content: space-between;
    border: 1px solid #ccc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.store-list {
    flex: 1 1 35%;
    max-width: 35%;
    padding: 15px;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 500px;
    border-right: 1px solid #ddd;
}

.store-card {
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #fff;
    margin-bottom: 15px;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.store-card strong {
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.store-card p {
    margin: 5px 0;
    font-size: 13px;
    color: #666;
}

.region-btn {
    margin: 5px;
    padding: 8px 16px;
    border: 1px solid black;
    background-color: white;
    cursor: pointer;
}

.region-btn.active {
    background-color: #be1c68;
    color: white;
    border-color: #be1c68;
}

.overflow-auto {
    overflow-x: auto;
}

.d-inline-flex {
    display: inline-flex;
}

.gap-2 {
    gap: 0.5rem;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.text-center {
    text-align: center;
}

