.bpmn-header-icon-button {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: transparent;
    color: var(--bpmn-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-color: transparent;
}

.bpmn-header-icon-button:hover {
    background: rgba(82, 106, 122, 0.08);
    border-color: rgba(82, 106, 122, 0.34);
}

.bpmn-change-request-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 100vw);
    height: 100vh;
    z-index: 1200;
    background: #fff;
    border-left: 1px solid var(--bpmn-border);
    box-shadow: -18px 0 36px rgba(36, 49, 58, 0.16);
    transform: translateX(100%);
    transition: transform 180ms ease;
    display: flex;
    flex-direction: column;
}

body.bpmn-change-request-open .bpmn-change-request-sidebar {
    transform: translateX(0);
}

.bpmn-change-request-sidebar__header {
    min-height: 82px;
    padding: 18px 18px 14px;
    border-bottom: 1px solid var(--bpmn-border);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.bpmn-change-request-sidebar__eyebrow {
    color: var(--bpmn-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.bpmn-change-request-sidebar__header h2 {
    margin: 2px 0 0;
    color: var(--bpmn-ink);
    font-size: 18px;
    line-height: 1.25;
}

.bpmn-change-request-close,
.bpmn-change-request-shot-remove {
    border: 0;
    background: transparent;
    color: var(--bpmn-muted);
}

.bpmn-change-request-close {
    width: 34px;
    height: 34px;
}

.bpmn-change-request-sidebar__body {
    overflow: auto;
    padding: 18px;
}

.bpmn-change-request-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bpmn-change-request-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: var(--bpmn-ink);
    font-weight: 600;
}

.bpmn-change-request-field-label {
    display: block;
    margin-bottom: 7px;
    color: var(--bpmn-ink);
    font-weight: 600;
}

.bpmn-change-request-type-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--bpmn-border);
    border-radius: 8px;
    background: rgba(238, 243, 246, 0.72);
}

.bpmn-change-request-type-option {
    min-height: 38px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--bpmn-muted);
    font-weight: 600;
}

.bpmn-change-request-type-option.is-active {
    background: #fff;
    color: var(--bpmn-primary);
    box-shadow: 0 1px 5px rgba(36, 49, 58, 0.12);
}

.bpmn-change-request-intro {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(82, 106, 122, 0.18);
    border-radius: 8px;
    background: rgba(238, 243, 246, 0.72);
}

.bpmn-change-request-intro span {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(82, 106, 122, 0.12);
    color: var(--bpmn-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.bpmn-change-request-intro p,
.bpmn-change-request-help,
.bpmn-change-request-paste-target span,
.bpmn-change-request-shot small {
    margin: 0;
    color: var(--bpmn-muted);
    font-size: 13px;
    line-height: 1.45;
}

.bpmn-change-request-row,
.bpmn-change-request-actions,
.bpmn-change-request-row {
    margin-bottom: 8px;
    font-weight: 600;
}

.bpmn-change-request-paste-target {
    min-height: 118px;
    border: 1px dashed rgba(82, 106, 122, 0.38);
    border-radius: 8px;
    background: rgba(248, 250, 251, 0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
    color: var(--bpmn-primary);
    cursor: pointer;
}

.bpmn-change-request-paste-target:focus {
    outline: 0;
    border-color: rgba(82, 106, 122, 0.6);
    box-shadow: 0 0 0 0.22rem rgba(82, 106, 122, 0.14);
}

#bpmn-change-request-file-input {
    display: none;
}

.bpmn-change-request-shots {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.bpmn-change-request-shot {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) 28px;
    gap: 10px;
    align-items: center;
    padding: 8px;
    border: 1px solid var(--bpmn-border);
    border-radius: 8px;
}

.bpmn-change-request-shot img,
.bpmn-change-request-shot > span {
    width: 62px;
    height: 62px;
    border-radius: 6px;
    object-fit: cover;
    background: var(--bpmn-surface);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bpmn-muted);
}

.bpmn-change-request-shot strong {
    display: block;
    color: var(--bpmn-ink);
    font-size: 13px;
    overflow-wrap: anywhere;
}

.bpmn-change-request-actions {
    padding-top: 4px;
}

.bpmn-change-request-printscreen-toast {
    cursor: pointer;
}
