/* Update Button Component Styles */
.floating-button {
    position: fixed;
    z-index: 1000;
    right: 2rem;
    bottom: 2rem;
    padding: 1rem 1.5rem;
    animation: fadein 1s ease-out;
    color: black !important;
}

@keyframes fadein {
    from {
        right: -100%;
    }
    to {
        right: 2rem;
    }
}


