body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f0f0;
}

#map {
    width: 100%;
    height: 100%;
    background-color: #ddd;
}

#location-list-container {
    position: absolute;
    top: 10px;
    left: 50px;
    z-index: 1000;
}

#toggle-list-btn {
    background-color: #ff7800;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
}

#location-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: block; /* Shown by default */
    max-height: 300px;
    overflow-y: auto;
}

#location-list li {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

#location-list li:hover {
    background-color: #f0f0f0;
}

#location-list img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    margin-right: 10px;
}

.location-popup b {
    color: #ff7800;
    font-size: 1.2em;
}

.location-popup a {
    color: #ff7800;
    text-decoration: none;
}

.location-popup a:hover {
    text-decoration: underline;
}

.location-popup img {
    border-radius: 8px;
    margin-top: 10px;
}

.leaflet-popup-content-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 100%);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.leaflet-popup-content {
    font-size: 1.1em;
    color: #333;
    line-height: 1.5;
    padding: 15px;
}

.leaflet-popup-tip-container {
    display: none;
}


