/* Обёртка формы */
.br-form-wrapper {
    max-width: 520px;
    margin: 24px auto;
}

.br-form-field {
    margin-bottom: 14px;
}

.br-form-field label {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.br-form-field input[type="text"],
.br-form-field select {
    width: 100%;
    padding: 6px 8px;
    box-sizing: border-box;
}

.br-form-actions {
    margin-top: 10px;
}

/* Сообщения */
.br-message {
    margin: 10px auto;
    max-width: 520px;
    padding: 10px 15px;
    border-radius: 3px;
    font-size: 14px;
}

.br-success {
    background: #e0f2f1;
    border: 1px solid #26a69a;
}

.br-error {
    background: #ffebee;
    border: 1px solid #ef5350;
}

/* Блок статуса */
.br-status-block {
    max-width: 720px;
    margin: 30px auto;
    font-size: 14px;
}

.br-status-block p {
    margin: 0 0 12px;
}

/* Линейка публичных статусов */
.br-status-list {
    list-style: none;
    padding: 0;
    margin: 18px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.br-status-item {
    position: relative;
    display: flex;
    align-items: center;
}

/* Стрелка между статусами */
.br-status-item:not(:last-child)::after {
    content: "→";
    margin: 0 10px;
    opacity: 0.6;
}

/* Текст статуса */
.br-status-label {
    display: inline-block;
}

/* Пройденные статусы: зелёная галочка + зачёркнутый текст */
.br-status-passed::before {
    content: "✓";
    margin-right: 6px;
    color: #4caf50;
    font-weight: 700;
}

.br-status-passed .br-status-label {
    text-decoration: line-through;
    color: #4caf50;
}

/* Текущий статус: жирный */
.br-status-current .br-status-label {
    font-weight: 700;
    color: #000;
}

/* Будущие статусы: серым */
.br-status-future .br-status-label {
    color: #b0bec5;
}

/* Кастомный HTML */
.br-custom-html {
    margin-top: 18px;
    font-size: 14px;
}

.br-custom-html-connected {
    margin-top: 12px;
}

.br-custom-html-cancelled {
    margin-top: 12px;
    color: #c62828;
