.floating-button {
    --floating-btn-size: 55px;
    
    position: fixed;
    color: white;
    right: 5%;
    bottom: 72px;
    width: var(--floating-btn-size);
    height: var(--floating-btn-size);
    border: none;
    background-color: var(--bs-primary);
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
    font-size: 1.25rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 100;
    
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.floating-button:hover {
    color: white;
    background-color: var(--bs-primary-dark);
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.floating-button-icon-big {
    font-size: 1.5rem; 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.floating-button-icon-standard {
    font-size: 1.25rem; 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

@media(min-width: 992px) {
    .floating-button {
        --floating-btn-size: 65px;
    }
    
    .floating-button-icon-big {
        font-size: 1.75rem; 
    } 

    .floating-button-icon-standard {
        font-size: 1.5rem; 
    }
}
