.bpmtp-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 1rem 0 2rem;
}

.bpmtp-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bs-info-text-emphasis);
}

.bpmtp-hero {
    background:
        radial-gradient(circle at top right, rgba(13, 202, 240, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(13, 110, 253, 0.06), rgba(25, 135, 84, 0.08));
}

.bpmtp-summary {
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.12), rgba(255, 255, 255, 0.85));
}

.bpmtp-node-card,
.bpmtp-access-card {
    background:
        radial-gradient(circle at top right, rgba(13, 202, 240, 0.08), transparent 30%),
        rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(10px);
}

.bpmtp-node-grid {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 0.9rem 1rem;
}

.bpmtp-node-label {
    color: var(--bs-secondary-color);
    font-size: 0.95rem;
}

.bpmtp-node-value {
    font-weight: 500;
}

.bpmtp-break {
    word-break: break-all;
    overflow-wrap: anywhere;
}

.bpmtp-actions .btn,
.bpmtp-form .btn {
    white-space: nowrap;
}

html[data-bs-theme="dark"] .bpmtp-hero {
    background:
        radial-gradient(circle at top right, rgba(13, 202, 240, 0.22), transparent 36%),
        linear-gradient(145deg, rgba(3, 22, 51, 0.92), rgba(5, 27, 17, 0.88));
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.24);
}

html[data-bs-theme="dark"] .bpmtp-summary {
    color: var(--bs-body-color);
    background: linear-gradient(135deg, rgba(15, 81, 50, 0.72), rgba(26, 29, 32, 0.94));
}

html[data-bs-theme="dark"] .bpmtp-node-card,
html[data-bs-theme="dark"] .bpmtp-access-card {
    background:
        radial-gradient(circle at top right, rgba(13, 202, 240, 0.12), transparent 32%),
        rgba(33, 37, 41, 0.92);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.22);
}

html[data-bs-theme="dark"] .bpmtp-form .form-control {
    color: var(--bs-body-color);
    background-color: rgba(43, 48, 53, 0.92);
    border-color: rgba(255, 255, 255, 0.12);
}

html[data-bs-theme="dark"] .bpmtp-form .form-control::placeholder {
    color: var(--bs-tertiary-color);
}

html[data-bs-theme="dark"] .bpmtp-form .form-control:focus {
    background-color: rgba(43, 48, 53, 0.98);
    border-color: rgba(110, 168, 254, 0.55);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.16);
}

@media (max-width: 767.98px) {
    .bpmtp-shell {
        padding-top: 0.25rem;
    }

    .bpmtp-node-grid {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .bpmtp-node-label {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }
}

/* Modern UI coordination pass */
.bpmtp-hero,
.bpmtp-panel,
.bpmtp-node-card {
  background: var(--holxn-surface, rgba(255, 255, 255, 0.82));
  border: 1px solid var(--holxn-border-soft, rgba(108, 117, 125, 0.18));
  border-radius: var(--holxn-radius, 8px);
  box-shadow: var(--holxn-shadow-sm, 0 0.35rem 1rem rgba(15, 23, 42, 0.055));
}

.bpmtp-kicker,
.bpmtp-label {
  letter-spacing: 0;
}

