.floating-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 10px;
    border-radius: 25px;
    background-color: #fff;
    color: white;
    font-size: 16px;
    border: none;
    text-decoration: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.floating-button:hover {
    background-color: #fffffa;
}
