/* ─── Case File / Prophecy Checklist ─── */

.case-file-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--surface3);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    padding: 10px 14px;
    margin-bottom: 14px;
}

.case-file-progress-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

.case-file-progress-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.prophecy-checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.prophecy-checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    font-size: 0.88rem;
}

.prophecy-checklist-item.status-complete {
    border-color: var(--green);
    background: rgba(76, 175, 80, 0.08);
    cursor: pointer;
}

.prophecy-checklist-item.status-found_scripture {
    border-color: var(--gold);
    background: rgba(212, 163, 115, 0.08);
    cursor: pointer;
}

.prophecy-checklist-item.status-rumor {
    border-color: var(--border2);
    opacity: 0.85;
}

.prophecy-checklist-item.status-unseen {
    border-style: dashed;
    opacity: 0.55;
}

.prophecy-checklist-icon {
    width: 1.2em;
    text-align: center;
    color: var(--text-muted);
}

.status-complete .prophecy-checklist-icon {
    color: var(--green);
}

.status-found_scripture .prophecy-checklist-icon {
    color: var(--gold);
}

.prophecy-checklist-name {
    flex: 1;
    font-weight: 600;
}

.conclude-locked-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--surface3);
    border: 1px dashed var(--border2);
    border-radius: var(--radius);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ─── Accusation panel ─── */

/* ── Full-screen accusation mode ── */
.accuse-panel {
    background: var(--surface2);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    padding: 14px;
    margin-top: 4px;
    margin-bottom: 24px;
}

.accuse-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.accuse-subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-family: var(--font-mono);
}

.suspect-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.suspect-btn {
    background: var(--surface3);
    border: 1.5px solid var(--border2);
    border-radius: var(--radius);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 600;
    transition: border-color 0.15s, transform 0.12s;
    width: 100%;
    text-align: left;
}

.suspect-btn:hover:not([aria-disabled='true']) {
    background: var(--surface2);
}

.suspect-btn:active:not([aria-disabled='true']) {
    transform: scale(0.97);
}

.suspect-btn.locked {
    opacity: 0.4;
    filter: grayscale(1);
    border-style: dashed;
    background: var(--surface);
}

.suspect-btn .lock-icon {
    font-size: 0.85rem;
    margin-left: 12px;
    color: var(--text-dim);
}

.suspect-btn-avatar {
    font-size: 1.6rem;
}

.suspect-btn-info {
    flex: 1;
}

.suspect-btn-name {
    font-weight: 700;
}

.suspect-btn-role {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}


.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    /* horizontal */
    align-items: center;
    /* vertical */
}

.suspect-accordion {
    margin-bottom: 8px;
}

.suspect-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--surface);
    border: 1.5px solid var(--border2);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 0 14px;
}

.suspect-accordion.expanded .suspect-details {
    max-height: 300px;
    padding: 12px 14px;
}

.suspect-details-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.suspect-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.suspect-detail-label {
    color: var(--text-muted);
    font-family: var(--font-mono);
    min-width: 40%;
}

.suspect-detail-value {
    font-weight: 600;
    text-align: right;

}

.suspect-detail-notes {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
    padding: 8px;
    background: var(--surface2);
    border-radius: var(--radius);
    display: none;
}

.suspect-action-row {
    margin-top: 4px;
}

.accuse-btn {
    width: 100%;
    padding: 10px 14px;
    background: var(--gold);
    color: var(--text-reverse);
    border: none;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.12s;
}

.accuse-btn:hover:not([disabled]) {
    opacity: 0.9;
}

.accuse-btn:active:not([disabled]) {
    transform: scale(0.97);
}

.accuse-btn.locked,
.accuse-btn[disabled] {
    background: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.6;
}

.conclude-btn {
    width: 100%;
    padding: 12px 14px;
    background: var(--green);
    color: var(--text-reverse);
    border: none;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.12s;
    margin-top: 12px;
}

.conclude-btn:hover:not([disabled]) {
    opacity: 0.9;
}

.conclude-btn:active:not([disabled]) {
    transform: scale(0.97);
}

.conclude-btn[disabled] {
    background: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.6;
}

.conclude-btn.concluded {
    background: var(--gold);
    color: #000;
    cursor: default;
    opacity: 1;
}

.accordion-chevron {
    margin-left: auto;
    font-size: 0.7rem;
    transition: transform 0.2s ease;
    color: var(--text-muted);
}

.suspect-accordion.expanded .accordion-chevron {
    transform: rotate(90deg);
}



