.map-container {
    position: relative;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#map {
    height: 100%;
    width: 100%;
}

.search-bar {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 500px;
    display: flex;
}

.search-bar input {
    border-radius: 20px 0 0 20px;
    border-right: none;
}

.search-bar button {
    border-radius: 0 20px 20px 0;
}

.side-panel {
    position: absolute;
    top: 80px;
    left: 20px;
    z-index: 1100;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 16px;
    min-width: 260px;
    max-width: 320px;
    max-height: 70vh;
    overflow-y: auto;
    display: none;
}

.stall-list-item {
    cursor: pointer;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.stall-list-item:last-child {
    border-bottom: none;
}

.stall-list-item .stall-name {
    font-weight: bold;
}

.stall-list-item .stall-distance {
    color: #6c757d;
    font-size: 0.9em;
}
