/* /flashcard-maker only: the study card and the cut-out print sheet. Scoped under #fcmApp. */
#fcmApp .fcm-card { margin: 12px 0; padding: 22px 18px; min-height: 150px; border: 1px solid var(--bm-line); border-radius: 14px; background: var(--bm-surface); text-align: center; }
#fcmApp .fcm-face { margin: 6px 0 0; font-size: 1.25rem; font-weight: 600; overflow-wrap: anywhere; }
#fcmApp .fcm-back { font-size: 1.05rem; font-weight: 400; padding-top: 12px; border-top: 1px dashed var(--bm-line); }
#fcmApp .fcm-sheet { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr)); gap: 0; }
#fcmApp .fcm-sheet > div { border: 1px dashed var(--bm-line); padding: 12px; min-height: 90px; overflow-wrap: anywhere; }
#fcmApp .fcm-sheet strong { display: block; margin-bottom: 6px; }
@media print {
    #fcmApp .xt-pane-in, #fcmApp .fcm-card, #fcmApp .ic-toolbar, #fcmApp #fcmBoxes, #fcmApp #fcmStats { display: none !important; }
    #fcmApp details.xt-advanced > *:not(summary) { display: grid !important; }
    #fcmApp .fcm-sheet { grid-template-columns: repeat(2, 1fr); }
    #fcmApp .fcm-sheet > div { break-inside: avoid; min-height: 2.2in; }
}
