h1 {
    text-align: center;
}

#map {
    width: 100%;
    height: 500px;
    border: 2px solid black;
}

#sidebar {
    max-width: 300px;
    background: #f4f4f4;
    overflow-y: auto;
    padding: 10px;
    margin: 10px;
    border: 5px solid black;
}

#searchInput {
    max-width: 100%;
    padding: 5px 10px;
    margin-bottom: 10px;
    font-size: 1em;
}

.pin-item {
    background: white;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.pin-item:hover {
    background: #eaeaea;
}

.edit,
.delete {
    cursor: pointer;
}

.edit:hover {
    background-color: aqua;
}

.delete:hover {
    background-color: red;
}