.global-toolbar-container {
    position: sticky;
    bottom: 10px;
    right: 10px;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 30px;
    z-index: 9999;
    display: flex;
    gap: 6px;
    align-items: center;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 1));
}


.global-toolbar {
    display: flex;
    width: 100%;
    margin: 0 auto;
    max-width: 1000px;
    flex-direction: row;
    align-items: center;
    /* gap: 2px; */
    padding: 8px;
    border-radius: 14px;
    background: white;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.04), 0 0 1px 0 rgba(0, 0, 0, 0.45);
}

.global-toolbar button {
    width: 100%;
}

/* ======================= */


.global-toolbar .divider {
    width: 1px;
    align-self: stretch;
    background-color: #0000000a;
    margin-block: 8px;
    /* margin-inline: 1px; */
    flex-shrink: 0;
    transition: opacity 0.1s ease;
}

/* Hide divider when an adjacent button is hovered */
.global-toolbar button:hover + .divider,
.global-toolbar .divider:has(+ button:hover) {
    opacity: 0;
}
