body {
    background-color: #f8f9fa;
}

#map {
    height: 400px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#legend {
    padding: 10px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.legend-color {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border: 1px solid #333;
}

.modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

#deleteBtn {
    width: 100px;
}

.btn {
    min-width: 120px;
}

.locationBtn {
    min-width: 0px;
}

@media (max-width: 768px) {
    .btn {
        width: 100%;
    }

    #deleteBtn {
        width: 100%;
    }
}