.section-title {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    color: #6f6b64;
    margin-bottom: 10px;
}

.value-pending {
    color: #b3ada3;
    font-style: italic;
}

.status-steps {
    max-width: 760px;
    margin-bottom: 26px;
}

.status-step {
    position: relative;
    display: flex;
    gap: 14px;
}

.status-step:not(:last-child) {
    padding-bottom: 16px;
}

.status-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 30px;
    bottom: 2px;
    width: 2px;
    background: #e0dcd4;
}

.status-step.is-done:not(:last-child)::before {
    background: #93c49b;
}

.status-step-marker {
    position: relative;
    z-index: 1;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e0dcd4;
    border-radius: 50%;
    background: #fff;
    color: #8a867e;
    font-size: 0.8rem;
    font-weight: 700;
}

.status-step.is-done .status-step-marker {
    border-color: #4CAF50;
    background: #4CAF50;
    color: #fff;
}

.status-step.is-next .status-step-marker {
    border-color: #8e8c84;
    color: #3e3f3a;
}

.status-step.is-locked .status-step-marker {
    background: #f4f2ef;
    color: #b3ada3;
}

.status-step-body {
    flex: 1 1 auto;
    min-width: 0;
}

.status-step-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    min-height: 28px;
}

.status-step-labels {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.status-step-title {
    font-weight: 600;
}

.status-step-state {
    color: #8a867e;
    font-size: 0.9rem;
}

.status-step.is-done .status-step-state {
    color: #4a7c50;
}

.status-step-panel {
    margin-top: 12px;
}

.action-panel {
    padding: 16px;
    background: #f9f8f6;
    border: 1px solid #e0dcd4;
    border-radius: 10px;
}

.action-panel-title {
    font-weight: 600;
    margin-bottom: 14px;
}

.action-panel-fields {
    display: grid;
    gap: 12px;
}

.action-panel-fields .form-label {
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.action-panel-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 16px;
}

.detail-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 760px;
}

.detail-list {
    margin: 0;
}

.detail-row {
    display: grid;
    grid-template-columns: minmax(140px, 230px) 1fr;
    gap: 10px;
    padding: 7px 0;
    align-items: baseline;
}

.detail-row + .detail-row {
    border-top: 1px solid #efece7;
}

.detail-row dt {
    color: #8a867e;
    font-weight: 500;
    font-size: 0.9rem;
}

.detail-row dd {
    margin: 0;
    overflow-wrap: anywhere;
}
