.section {
    pointer-events: auto;
}

.fp-noscroll {
    pointer-events: none;
}


/* Button Styling */
.map-arrow-button {
    position: absolute;
    z-index: 10;
    padding: 15px; /* Increase padding for better touch target */
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%; /* Make them circular */
    cursor: pointer;
    font-size: 20px; /* Adjust icon size */
    color: #333; /* Icon color */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease; /* Add transition for hover effect */
}

.map-arrow-button:hover {
    background-color: rgba(255, 255, 255, 1); /* Slightly brighter on hover */
}

.up-arrow {
    top: 100px;
    left: 20px;
}

.down-arrow {
    bottom: 20px;
    right: 20px;
}

body {
    margin: 0;
    padding: 0;
}
#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}