
      .floating-buttons {
        position: fixed;
        top: 50%;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 9999;
        transform: translateY(-50%);
    }
    .fab-button {
        width: 50px;
        height: 50px;
        background-color: #ff5722;
        color: #fff;
        text-align: center;
        line-height: 50px;
        border-radius: 50%;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
        text-decoration: none;
        font-size: 24px;
        transition: transform 0.3s;
    }
    .fab-button:hover {
        transform: scale(1.1);
    }
    