#addGroupBtn {
    margin: 10px; /* Adjust as needed */
    height: 100%;
    width: 90px;
    min-width: 90px;
    border: none;
    border-radius: 10px;
}

#addBoardBtn {
    flex-direction: column;
    cursor: pointer;
    width: stretch;
    height: 36px;
    align-items: center;    
    align-content: center;
    border-radius: var(--roundness-xs, 8px);
    background-color: var(--colors-button-secondary);
    padding-top: 5px;
    margin: 20px;
    margin-top: 10px;
    margin-bottom: 16px;
}

#addSubboardBtn {
    cursor: pointer;
    width: 220px;
    height: 36px;
    border-radius: var(--roundness-xs, 8px);
    background: var(--button-additional-1, #F2F2F2);
    margin: 10px 20px 16px 60px;
}

.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.2);
}
.dialog-overlay__header {
    /* width: 100%; */
    margin: var(--numbers-gaps-s);
}

.dialog-overlay__obj-name-wrapper {
    color: var(--colors-text-accent-accent);
    display: inline;
    /* text-decoration: underline; */
    max-width: 100%;
}

.dialog-overlay__message {
    margin: var(--numbers-gaps-s);
    font-size: var(--h-h4-font-size);
    font-weight: var(--h-h4-font-weight);
    line-height: var(--h-h4-line-height);
}

.inline-text {
    display: inline;
    text-overflow: ellipsis;
    max-width: 100%;
}
