/* Step pills in navbar */
.step-pill {
    display: inline-block;
    padding: 2px 10px;
    margin-left: 4px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #6c757d;
    background: #343a40;
    border: 1px solid #495057;
}
.step-pill.active {
    color: #fff;
    background: #0d6efd;
    border-color: #0d6efd;
    font-weight: 600;
}
.step-pill.done {
    color: #adb5bd;
    background: #2b3035;
    border-color: #495057;
}

/* Content blocks for long text */
.content-block {
    white-space: pre-wrap;
    word-break: break-word;
    font-size: 0.9rem;
    line-height: 1.5;
    max-height: 400px;
    overflow-y: auto;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 4px;
}

/* Output comparison cards */
.output-card {
    transition: border-color 0.15s, box-shadow 0.15s;
}
.output-card:hover {
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.15);
}

/* Flag checkbox styling */
.flag-check:checked {
    background-color: #dc3545;
    border-color: #dc3545;
}

/* Stat cards on report page */
.stat-card {
    transition: transform 0.1s, box-shadow 0.1s;
}
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
}
.stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 2px;
}
.stat-pct {
    font-size: 0.8rem;
    color: #adb5bd;
}

/* Radio button group styling */
.btn-check:checked + .btn-outline-success {
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.3);
}
.btn-check:checked + .btn-outline-primary {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.3);
}

/* Progress bar */
.progress {
    border-radius: 3px;
}

/* Table improvements */
.table-responsive {
    border-radius: 4px;
}

/* Responsive stacking for outputs */
@media (max-width: 767px) {
    .step-pill {
        display: none;
    }
}
