.floating-button {
    height: 60px;
    width: 60px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 15px;
    cursor: pointer;
    transition: width 0.3s, padding 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background-color: #bfa23f;
}

.floating-button:hover {
    width: 200px;
    padding: 15px 20px;
    border-radius: 30px;
}

.floating-button .text {
    display: none;
    margin-left: 10px;
}

.floating-button:hover .text {
    display: inline;
}