/* LOKLU Live Analysis Progress — Orange Theme */
.lp-wrapper {
  max-width: 100%;
  margin: 2rem auto;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 2rem;
  color: #1e293b;
  font-family: 'Inter', -apple-system, sans-serif;
  box-shadow: 0 8px 32px rgba(255,120,40,0.10), 0 0 0 1px rgba(255,120,40,0.12);
  position: relative;
  overflow: hidden;
}
.lp-wrapper::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(255,120,40,0.06) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255,165,0,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.lp-header { text-align: center; margin-bottom: 1.5rem; position: relative; }
.lp-title {
  font-size: 1.25rem; font-weight: 700; letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ff7828, #ff9a56);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.lp-subtitle { font-size: 0.8rem; color: #64748b; margin-top: 0.3rem; line-height: 1.4; }
.lp-ring-section { display: flex; flex-direction: column; align-items: center; margin-bottom: 1.2rem; position: relative; }
.lp-ring-container { position: relative; width: 120px; height: 120px; }
.lp-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.lp-ring-bg { fill: none; stroke: #fed7aa; stroke-width: 8; }
.lp-ring-fill { fill: none; stroke: #ff7828; stroke-width: 8; stroke-linecap: round; transition: stroke-dashoffset 0.6s ease; }
.lp-ring-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; }
.lp-pct { font-size: 2rem; font-weight: 800; color: #ff7828; }
.lp-pct-sign { font-size: 1rem; color: #94a3b8; margin-left: 1px; }
.lp-stage { margin-top: 0.8rem; display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; }
.lp-stage-icon { font-size: 1.1rem; }
.lp-stage-label { color: #475569; }
.lp-bar-wrapper { margin-bottom: 1rem; position: relative; }
.lp-bar { height: 6px; background: #fed7aa; border-radius: 3px; overflow: hidden; }
.lp-bar-fill { height: 100%; background: linear-gradient(90deg, #ff7828, #ff9a56, #ffb347); border-radius: 3px; transition: width 0.6s ease; }
.lp-time-row { display: flex; justify-content: space-between; font-size: 0.8rem; color: #94a3b8; margin-bottom: 1.5rem; }
.lp-agents-title { font-size: 0.85rem; font-weight: 600; color: #64748b; margin-bottom: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
.lp-agents-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 0.6rem; }
.lp-agent { display: flex; align-items: center; gap: 0.4rem; padding: 0.5rem 0.6rem; background: #fff; border-radius: 10px; border: 1px solid rgba(255,120,40,0.12); transition: all 0.3s ease; font-size: 0.78rem; }
.lp-agent-active { border-color: rgba(255,120,40,0.5); background: rgba(255,120,40,0.06); box-shadow: 0 0 15px rgba(255,120,40,0.12); }
.lp-agent-done { border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.04); }
.lp-agent-icon { font-size: 1rem; flex-shrink: 0; }
.lp-agent-label { flex: 1; color: #475569; line-height: 1.3; }
.lp-agent-status { flex-shrink: 0; font-size: 0.85rem; }
.lp-status-wait { opacity: 0.4; }
.lp-status-active { animation: lp-spin 1s linear infinite; display: inline-block; }
.lp-status-done { opacity: 1; }
.lp-agent-counter { text-align: center; font-size: 0.8rem; color: #64748b; margin-bottom: 0.8rem; }
.lp-chief { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 0.8rem; background: #fff; border-radius: 12px; border: 1px solid rgba(255,120,40,0.15); margin-bottom: 1.2rem; font-size: 0.85rem; transition: all 0.3s ease; }
.lp-chief-active { border-color: rgba(255,120,40,0.5); background: rgba(255,120,40,0.06); box-shadow: 0 0 20px rgba(255,120,40,0.1); }
.lp-chief-done { border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.04); }
.lp-chief-icon { font-size: 1.1rem; }
.lp-chief-label { flex: 1; color: #475569; }
.lp-footer { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.75rem; color: #64748b; }
.lp-pulse { width: 8px; height: 8px; background: #ff7828; border-radius: 50%; animation: lp-pulse 1.5s ease-in-out infinite; }
@keyframes lp-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes lp-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }
@media (max-width: 540px) { .lp-wrapper { margin: 1rem; padding: 1.2rem; } .lp-agents-grid { grid-template-columns: 1fr; } .lp-ring-container { width: 100px; height: 100px; } .lp-pct { font-size: 1.5rem; } }
