.sc-form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 32px;
    max-width: 720px;
    margin: 0 auto;
}
.sc-stage-cards {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}
.sc-stage-card {
    flex: 1;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 20px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    background: #f8fafc;
}
.sc-stage-card.selected {
    border-color: #3b82f6;
    background: #eff6ff;
}
.sc-stage-card input[type="radio"] { display: none; }
.sc-stage-card .sc-stage-title { font-weight: 700; font-size: 0.95rem; color: #0D1B3E; }
.sc-stage-card .sc-stage-marks { font-size: 0.78rem; color: #6b7280; margin-top: 4px; }
.sc-form-group { margin-bottom: 18px; }
.sc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sc-form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #374151; margin-bottom: 6px; }
.sc-form-group input, .sc-form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #1f2937;
    background: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.sc-form-group input:focus, .sc-form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.sc-submit-btn {
    width: 100%;
    padding: 14px;
    background: #1d4ed8;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}
.sc-submit-btn:hover { background: #1e40af; }
.sc-submit-btn:disabled { background: #93c5fd; cursor: not-allowed; }
.sc-result { max-width: 820px; margin: 32px auto 0; }
.sc-candidate-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 24px 28px;
    margin-bottom: 24px;
}
.sc-candidate-title {
    font-size: 1.1rem; font-weight: 700; color: #0D1B3E;
    margin-bottom: 16px; padding-bottom: 10px;
    border-bottom: 2px solid #e8f0fe;
}
.sc-candidate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.sc-candidate-item { display: flex; flex-direction: column; gap: 2px; }
.sc-candidate-item .label { font-size: 0.75rem; color: #6b7280; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.sc-candidate-item .value { font-size: 0.92rem; color: #1f2937; font-weight: 600; }
.sc-table-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    overflow: hidden;
}
.sc-table-header {
    background: #1d4ed8;
    color: #fff;
    padding: 16px 24px;
    font-size: 1.05rem;
    font-weight: 700;
}
.sc-marks-info {
    padding: 12px 24px;
    background: #f8fafc;
    font-size: 0.85rem;
    color: #374151;
    border-bottom: 1px solid #e2e8f0;
}
.sc-marks-info .pos { color: #16a34a; font-weight: 700; }
.sc-marks-info .neg { color: #dc2626; font-weight: 700; }
.sc-table { width: 100%; border-collapse: collapse; }
.sc-table th {
    background: #f1f5f9;
    padding: 12px 16px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}
.sc-table th:first-child { text-align: left; }
.sc-table td {
    padding: 13px 16px;
    text-align: center;
    font-size: 0.88rem;
    color: #1f2937;
    border-bottom: 1px solid #f1f5f9;
}
.sc-table td:first-child { text-align: left; font-weight: 500; }
.sc-table tbody tr:hover td { background: #f8fafc; }
.sc-table tfoot td {
    background: #1e293b;
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    border-bottom: none;
}
.sc-table tfoot tr:hover td { background: #1e293b; }
.sc-score-badge {
    display: inline-block;
    background: #22c55e;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 999px;
}
.cached-notice {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.85rem;
    color: #92400e;
    margin-bottom: 16px;
}
@media (max-width: 600px) {
    .sc-form-row { grid-template-columns: 1fr; }
    .sc-stage-cards { flex-direction: column; }
    .sc-form-card { padding: 20px; }
}
