.toefl-plan-goals {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    align-items: start;
}
.toefl-plan-goals > .study-test-countdown { margin-bottom: 0; height: 100%; box-sizing: border-box; }
.toefl-target-status {
    --toefl-status-color: #bbb4aa;
    padding: 18px 20px;
    border: 1px solid var(--border-subtle, #3a3633);
    border-radius: 14px;
    background: var(--bg-card, #242220);
    color: var(--text-primary, #e8e6e3);
    min-width: 0;
}
.toefl-target-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.toefl-target-eyebrow { margin: 0 0 4px; color: var(--text-secondary, #9e9689); font-size: 12px; font-weight: 600; }
.toefl-target-score { margin: 0; font-size: 26px; font-weight: 700; line-height: 1.2; }
.toefl-target-score small { font-size: 13px; font-weight: 400; color: var(--text-secondary, #9e9689); }
.toefl-target-edit, .toefl-target-retry {
    background: transparent; color: var(--text-primary, #e8e6e3); border: 1px solid var(--border-subtle, #3a3633);
    border-radius: 8px; padding: 8px 12px; font: inherit; font-size: 12px; cursor: pointer;
}
.toefl-target-label { display: flex; align-items: baseline; gap: 7px; margin: 14px 0 5px; color: var(--toefl-status-color); font-size: 13px; font-weight: 600; }
.toefl-target-dot { display: inline-block; flex: 0 0 7px; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.toefl-target-detail, .toefl-target-explanation { font-size: 12px; line-height: 1.6; color: var(--text-secondary, #9e9689); }
.toefl-target-detail { margin: 0; }
.toefl-target-explanation { margin-top: 10px; }
.toefl-target-explanation summary { cursor: pointer; width: fit-content; }
.toefl-target-explanation p { margin: 8px 0; }
.toefl-target-explanation a { color: var(--text-primary, #e8e6e3); text-decoration: underline; }
.toefl-target-retry { margin-top: 10px; }
.toefl-target-status :is(button, summary, a):focus-visible { outline: 2px solid var(--accent-light, #7fa87f); outline-offset: 3px; }
.toefl-target-status[data-state="below_target"] { --toefl-status-color: #e2b470; }
.toefl-target-status[data-state="at_target"] { --toefl-status-color: #b5cba6; }
.toefl-target-status[data-state="above_target"] { --toefl-status-color: #7dcca3; }
[data-theme="light"] .toefl-target-status { --toefl-status-color: #625c54; }
[data-theme="light"] .toefl-target-status[data-state="below_target"] { --toefl-status-color: #885716; }
[data-theme="light"] .toefl-target-status[data-state="at_target"] { --toefl-status-color: #526941; }
[data-theme="light"] .toefl-target-status[data-state="above_target"] { --toefl-status-color: #247248; }
@media (max-width: 760px) {
    .toefl-plan-goals { grid-template-columns: minmax(0, 1fr); gap: 12px; }
    .toefl-target-status { padding: 16px; }
}
