.fixed-toolbar {
    position: fixed;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    background-color: rgba(0,0,0, 0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.fixed-toolbar-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
}

.fixed-toolbar-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
}

.fixed-toolbar-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.fixed-toolbar-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.widget {
    margin: 10px 0;
}