.direction-button {
    background-color: #ff8c00; /* Orange background */
    color: white; /* White text */
    padding: 10px 20px; /* Padding for button */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer on hover */
    font-size: 16px; /* Font size */
    transition: background-color 0.3s ease; /* Smooth transition */
}

.direction-button:hover {
    background-color: #e07b00; /* Darker orange on hover */
}
