/* Full reset — destructive training + read-state action */

.train-reset-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 1rem;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.train-reset-desc {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 42rem;
    line-height: 1.4;
}

.train-full-reset-btn {
    font: inherit;
    font-size: 0.8rem;
    padding: 0.45rem 0.75rem;
    cursor: pointer;
    border-radius: 6px;
    border: 1px solid #b45309;
    background: transparent;
    color: #b45309;
    white-space: nowrap;
    flex-shrink: 0;
}

.train-derived-reset-btn {
    font: inherit;
    font-size: 0.8rem;
    padding: 0.45rem 0.75rem;
    cursor: pointer;
    border-radius: 6px;
    border: 1px solid #1d4ed8;
    background: transparent;
    color: #1d4ed8;
    white-space: nowrap;
    flex-shrink: 0;
}

.train-derived-reset-btn:hover {
    background: rgba(29, 78, 216, 0.08);
    border-color: #1e40af;
    color: #1e40af;
}

.train-full-reset-btn:hover {
    background: rgba(180, 83, 9, 0.08);
    border-color: #92400e;
    color: #92400e;
}

.train-derived-reset-btn:disabled,
.train-full-reset-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 600px) {
    .train-reset-row {
        flex-direction: column;
        align-items: stretch;
    }

    .train-derived-reset-btn,
    .train-full-reset-btn {
        width: 100%;
    }
}
