﻿.floating-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    /*background-color: #002686;*/
    background-color: #6e2a2a;
    color: white;
    padding: 12px 12px;
    border: none;
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    outline: 3px solid #ffffff;
    outline-offset: 2px;
}

    .floating-button img {
        width: 20px;
        height: 20px;
        display: inline-block;
    }

    .floating-button i {
        font-size: 12px;
        color: white;
    }

    .floating-button:hover {
        transform: scale(1.05);
        /*background-color: #0A69C9;*/
        background-color: rgb(255, 0, 0);
    }
