/* 성장주 스크리닝 후보 페이지 — 공통 레이아웃은 analysis/results.css 를 함께 로드해 재사용한다. */

.screening-criteria {
    margin: 0 0 20px;
    padding: 12px 16px;
    background: #f8fafc;
    border-left: 3px solid #2563eb;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.7;
    color: #475569;
}

.screening-section {
    margin-bottom: 40px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
    font-size: 18px;
    color: #0f172a;
}

.section-count {
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
}

.section-title .toggle-link {
    margin-left: auto;
    font-size: 13px;
}

.section-note {
    margin: 0 0 14px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

/* --- 통과 후보 카드 --- */
.screening-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 14px;
}

.screening-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.company-title {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.company-name {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
}

.company-ticker {
    font-size: 12px;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
}

.rank-score {
    font-size: 12px;
    color: #475569;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.metric-row {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    padding: 12px 0 14px;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 12px;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.metric-label {
    font-size: 11px;
    color: #94a3b8;
}

.metric-value {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
}

.metric-value.positive {
    color: #dc2626;
}

.muted {
    color: #94a3b8;
    font-weight: 400;
    font-size: 13px;
}

.report-title {
    color: #334155;
}

/* --- 보류/탈락 표 --- */
.pending-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    font-size: 13px;
}

.pending-table th {
    text-align: left;
    padding: 10px 14px;
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
    border-bottom: 1px solid #e2e8f0;
}

.pending-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: top;
}

.pending-table tr:last-child td {
    border-bottom: none;
}

.reason-list {
    margin: 0;
    padding-left: 16px;
    color: #64748b;
}

.reason-list li {
    margin-bottom: 2px;
}
