body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 10px;
}

p {
    margin-bottom: 20px;
}

#sidebar {
    width: 300px;
    margin: 0 auto 20px auto;
    padding: 15px;
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: left;
}

#map {
    width: 100%;
    max-width: 800px;
    height: 600px;
    margin: 0 auto;
    border: 1px solid #ccc;
}

input, button {
    margin: 8px 0;
    padding: 8px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

#photoDisplay {
    max-width: 100%;
    margin: 20px auto;
    display: block;
}

#status {
    margin-top: 10px;
    font-size: 16px;
    color: #222;
}

#modeContainer, #proximityContainer, #streetContainer, #multiContainer, #multiSettings, #timeControls {
    margin-bottom: 10px;
}

#streetCheckbox, #multiCheckbox, #hideTimer {
    width: auto;
    vertical-align: middle;
    margin-right: 5px;
}

#multiSettings label, #timeControls label {
    display: block;
    margin-top: 5px;
}

#progress, #countdown {
    margin-top: 10px;
    font-size: 16px;
    color: #222;
}

/* Leaflet draw toolbar styles */
.leaflet-draw-toolbar a {
    background-color: #f4f4f4;
    color: #333;
    border: 1px solid #ccc;
}

.leaflet-draw-toolbar a:hover {
    background-color: #e0e0e0;
}

.leaflet-draw-actions a {
    color: #333;
    background-color: #f4f4f4;
}

.leaflet-draw-actions a:hover {
    background-color: #e0e0e0;
}