/* Map styles */

/* Map container */
#map {
    height: 500px;
    width: 100%;
    border: 1px solid #ccc;
}

/* Map controls */
.map-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

.map-controls button {
    display: block;
    margin-bottom: 5px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

.map-controls button:hover {
    background: #f5f5f5;
}