#float-toolbar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 1000;
}

#main_toolbar {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#float-toolbar button {
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    width: 50px;
}

#float-toolbar button:hover {
    background-color: #0056b3;
}