.floating-button {
    position: fixed;
    right: 2.5rem; /* 10 */
    bottom: 2.5rem; /* 10 */
    height: 3.5rem; /* 14 */
    width: 3.5rem; /* 14 */
    display: flex;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.floating-button:hover {
    filter: saturate(0.75);
    transform: scale(1.01);
    cursor: pointer;
}

.whatsapp-button {
    background-color: #26D366;
    color: white;
    border-radius: 100%; /* full */
    padding: 0.5rem; /* 2 */
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}
.whatsapp-button:hover {
    cursor: pointer;
}

.whatsapp-icon {
    height: 100%;
    width: 100%;
}
