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

#sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #f2f2f2;
    padding: 20px;
    overflow-y: auto;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 100;
}

#sidebar.visible {
    right: 0;
}

#toggleSidebar {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 101;
    padding: 10px 15px;
}

#map {
    border: 1px solid #ccc;
    margin-top: 10px;
}

.category-group {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    max-width: 300px;
    margin-bottom: 15px;
}

.category-group label {
    display: block;
    margin-bottom: 5px;
}

.category-group legend {
    font-weight: bold;
    margin-bottom: 5px;
}