/* ===== Global ===== */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ===== Cursor helpers ===== */
.cursor-pointer {
    cursor: pointer;
}

/* ===== Model selection cards ===== */
.model-card {
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
    background-color: rgba(255, 255, 255, 0.03);
}

.model-card:hover {
    background-color: rgba(255, 255, 255, 0.07);
}

/* ===== Form controls dark theme fix ===== */
.form-control::placeholder {
    color: #6c757d;
}

.form-control:focus {
    background-color: #1a1a1a;
    color: #f8f9fa;
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.15);
}

.form-check-input:checked {
    background-color: #ffc107;
    border-color: #ffc107;
}

/* ===== Cards ===== */
.card {
    transition: border-color 0.15s ease;
    color: #e9ecef;
}

.card .text-dark {
    color: #212529 !important;
}

/* ===== Progress bars ===== */
.progress {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ===== List group items ===== */
.list-group-item-action:hover {
    background-color: rgba(255, 255, 255, 0.08) !important;
}

/* ===== Navbar ===== */
.navbar-brand {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

/* ===== Badges ===== */
.badge {
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ===== Table ===== */
.table > :not(caption) > * > * {
    background-color: transparent;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* ===== Answer cards ===== */
.answer-card {
    border-left: 3px solid transparent;
    transition: border-color 0.15s;
}

.answer-card.human {
    border-left-color: #ffc107;
}

/* ===== Textarea ===== */
textarea.form-control {
    resize: vertical;
    min-height: 80px;
}
