.floating-button {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.floating-button__button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 20px; /* Se modificó el valor para redondear menos los bordes */
    width: auto; /* Se eliminó el ancho fijo */
    padding: 10px 20px; /* Se agregó padding para expandir horizontalmente el botón */
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    outline: none;
}

.floating-button__button:hover {
    background-color: #0056b3;
}
