/* ===== RECORDING SCREEN ===== */
.rec-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.rec-header h2 { font-size: 20px; font-weight: 800; }
.rec-timer { font-size: 28px; font-weight: 700; font-variant-numeric: tabular-nums; color: #c0392b; direction: ltr; }
#voiceCanvas { width: 100%; height: 140px; background: #1a1a2e; border-radius: 12px; margin-bottom: 20px; }
.rec-status { text-align: center; color: #666; font-size: 14px; margin-bottom: 20px; }
.rec-actions { text-align: center; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.chunk-counter { text-align: center; font-size: 13px; color: #888; margin-top: 8px; }

/* ===== COMPONENT CARDS ===== */
.components-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 24px 0; }
@media (max-width: 640px) { .components-grid { grid-template-columns: 1fr; } }
.comp-card { background: #fff; border: 2px solid #e9ecef; border-radius: 14px; padding: 24px 16px; text-align: center; transition: all 0.2s ease; }
.comp-card.recording { border-color: #c0392b; background: #fff5f5; box-shadow: 0 0 0 4px rgba(192,57,43,0.08); }
.comp-card.processing { border-color: #f39c12; background: #fffbf0; }
.comp-card.ready     { border-color: #2d6a4f; background: #f0f9f4; }
.comp-card.disabled  { opacity: 0.55; }
.comp-icon  { font-size: 36px; margin-bottom: 10px; display: block; }
.comp-title { font-weight: 700; font-size: 16px; margin-bottom: 8px; color: #1a1a2e; }
.comp-status{ font-size: 13px; color: #666; margin-bottom: 14px; min-height: 20px; }
