body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

#map {
    width: 100%;
    height: 100%;
}

/* Khung thông tin địa điểm */
.place-info {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    font-size: 14px;
}

.place-info .title {
    font-weight: bold;
    margin-bottom: 4px;
}

.place-info .address {
    color: #444;
    font-size: 13px;
}

/* Nút zoom */
.zoom-controls {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: flex;
    flex-direction: column;
}

.zoom-controls button {
    background: #fff;
    border: 1px solid #ccc;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 4px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.zoom-controls button:hover {
    background: #f0f0f0;
}