
@layer lime, ui;

.change-list {
    gap: 8px;
    padding: 8px;
}

.change-list div {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid var(--theme-fg-divider);
    cursor: pointer;
}

.change-list div.selected {
    background-color: var(--theme-bg-focused-button);
}

iframe.seamless {
    flex: 1;
    border: 0;
}

.page-section + iframe.seamless {
    border-top: 1px solid var(--theme-fg-divider);
}

.top-separator {
    border-top: 1px solid var(--theme-fg-divider);
}

.search-form {
    gap: 5px;
}

.search-form > * {
    gap: 5px;
    flex: 1;
}

.search-form .form-label {
    width: auto !important;
}

.search-form input {
    border: 1px solid var(--theme-fg-divider);
    margin: 0 5px;
    box-sizing: border-box;
    flex: 1;
    padding: 4px 5px;
    line-height: 26px;
}

.user-listbox {
    flex: 1;
    height: 300px;
    background-color: white !important;
    padding: 4px;
    box-sizing: border-box;
    border: 1px solid var(--theme-fg-divider);
    border-radius: 4px;
}

.user-add {
    padding: 4px 5px;
    line-height: 26px;
    flex: 1;
}

.blueprint-checkbox {
    cursor: pointer;
    user-select: none;
    align-items: center;
    margin-right: 5px;
}

.sidepanel {
    background-color: white;
    width: 550px;
    border-left: 1px solid var(--theme-fg-divider);
    padding: 1.5rem 3rem;
    box-sizing: border-box;
    overflow-y: scroll;
}

.divider {
    border-top: 1px solid var(--theme-fg-divider);
}

.audit-label {
    color: var(--theme-fg-secondary-text);
    margin: 5px 0;
}

.field-content {
    background-color: var(--theme-bg-app-bar);
    padding: .6rem;
    border: 1px solid var(--theme-info-light);
    border-radius: 4px;
    word-break: break-all;
    font-family: monospace;
    white-space: pre;
}

.locked {
    pointer-events: none;
}

.error-message {
    color: var(--theme-warn);
}