html, body {
    margin: 0;
    padding: 0;
}

#map {
    height: 650px;
    width: 100%;
}

.custom-icon {
    background: white;
    border: 2px solid #333;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 28px;
    font-size: 18px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.map-icon {
    filter:
        drop-shadow(0 0 3px white)
        drop-shadow(0 0 3px white);
}

.legend {
    background: white;
    padding: 10px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    font-size: 14px;
    line-height: 1.35;
    max-width: 240px;
}

.legend h4 {
    margin: 0 0 8px;
    font-size: 15px;
}

.legend-toggle {
    cursor: pointer;
    user-select: none;
}

.legend-toggle input {
    margin: 0 7px 0 0;
    flex: 0 0 auto;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 7px;
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-item img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex: 0 0 18px;
}

.legend-item span:last-child {
    flex: 1;
}

.parking-label {
    color: #0066cc;
    font-weight: 800;
    font-size: 17px;
    font-family: Arial, sans-serif;
    line-height: 1;
    white-space: nowrap;

    filter:
        drop-shadow(0 0 3px white)
        drop-shadow(0 0 3px white)
        drop-shadow(0 0 2px white);
}

.legend-parking-label {
    color: #0066cc;
    font-weight: 800;
    font-size: 18px;
    margin-right: 8px;

    filter:
        drop-shadow(0 0 3px white)
        drop-shadow(0 0 3px white);
}

.parking-list {
    background: white;
    padding: 10px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    font-size: 14px;
    max-width: 230px;
}

.parking-list h4 {
    margin: 0 0 8px 0;
    font-size: 15px;
}

.parking-list-item {
    cursor: pointer;
    padding: 4px 0;
}

.parking-list-item:hover {
    text-decoration: underline;
}