/* Style the map-nav button */
.map-nav-button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 5px 10px;  /* Adjusted padding for smaller button */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;  /* Reduced font size to match other buttons */
    margin: 0px 4px;  /* Smaller margin for compact look */
    cursor: pointer;
    border-radius: 4px; /* More subtle rounded corners */
    box-shadow: none;  /* Remove extra shadow for simplicity */
    transition: all 0.3s ease;
}

/* Hover effects */
.map-nav-button:hover {
    background-color: #45a049;
    transform: translateY(-1px);
}

/* Active state */
.map-nav-button:active {
    background-color: #3e8e41;
    transform: translateY(1px);
}
