/* A OLEN está a trabalhar — Aurora Burial styling.
   Isolated to the Chat progress card; no changes to other views. */
.olen-chat-messages>.olen-chat-progress{
  align-self:flex-start;
  width:min(94%,600px);
  max-width:calc(100vw - 32px);
  min-width:0;
  margin:10px 0 14px 0;
  padding:16px 18px;
  border:1px solid rgba(91,168,255,.22);
  border-radius:22px;
  color:#edf5f4;
  background:transparent;
  box-shadow:none;
  box-sizing:border-box;
}
.olen-chat-progress-head{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
  margin:0 0 12px;
  color:#5ba8ff;
  font-size:13px;
  line-height:1.3;
  letter-spacing:.01em;
}
.olen-chat-progress-head strong{font-size:inherit;font-weight:780;min-width:0}
.olen-chat-progress-pulse{
  display:inline-block;
  width:9px;
  height:9px;
  flex:0 0 9px;
  border-radius:50%;
  background:#5ba8ff;
  box-shadow:0 0 0 0 rgba(91,168,255,.30);
  animation:olen-chat-progress-pulse 1.35s ease-out infinite;
}
.olen-chat-progress-time{
  margin-left:auto;
  flex:0 0 auto;
  color:rgba(169,207,255,.85);
  font-size:12px;
  font-weight:740;
  font-variant-numeric:tabular-nums;
  letter-spacing:.025em;
  white-space:nowrap;
}
.olen-chat-progress-steps{display:grid;gap:7px}
.olen-chat-progress-step{
  display:flex;
  align-items:flex-start;
  min-height:23px;
  gap:9px;
  font-size:13px;
  line-height:1.55;
  color:rgba(221,233,233,.46);
}
.olen-chat-progress-step.done{color:rgba(211,231,225,.72)}
.olen-chat-progress-step.active{color:#f4f8fc;font-weight:710}
.olen-chat-progress-mark{
  display:inline-block;
  width:18px;
  flex:0 0 18px;
  color:rgba(189,208,209,.45);
  text-align:center;
  line-height:1.55;
  font-size:13px;
}
.olen-chat-progress-step.done .olen-chat-progress-mark{color:#59edb6}
.olen-chat-progress-step.active .olen-chat-progress-mark{color:#5ba8ff}
.olen-chat-progress-dots{display:inline-flex;gap:4px;margin-left:5px;vertical-align:middle}
.olen-chat-progress-dots i{
  width:4px;height:4px;border-radius:50%;
  background:#5ba8ff;
  animation:olen-chat-progress-dots 1.05s ease-in-out infinite;
}
.olen-chat-progress-dots i:nth-child(2){animation-delay:.14s}
.olen-chat-progress-dots i:nth-child(3){animation-delay:.28s}
.olen-chat-progress-note{
  margin:13px 0 0;
  font-size:11px;
  line-height:1.5;
  color:rgba(194,208,207,.58);
}
.olen-msg-duration{
  align-self:center;
  flex:0 0 auto;
  margin-right:5px;
  color:#a6b6b7;
  font-size:11px;
  font-weight:700;
  font-variant-numeric:tabular-nums;
}
@keyframes olen-chat-progress-pulse{
  0%{box-shadow:0 0 0 0 rgba(91,168,255,.35)}
  70%{box-shadow:0 0 0 7px rgba(91,168,255,0)}
  100%{box-shadow:0 0 0 0 rgba(91,168,255,0)}
}
@keyframes olen-chat-progress-dots{
  0%,70%,100%{opacity:.33;transform:translateY(0)}
  35%{opacity:1;transform:translateY(-2px)}
}
@media(max-width:699px){
  .olen-chat-messages>.olen-chat-progress{
    width:min(95%,540px);
    max-width:calc(100vw - 30px);
    padding:15px 16px;
    border-radius:20px;
  }
  .olen-chat-progress-head{font-size:12px}
  .olen-chat-progress-step{font-size:12px}
  .olen-chat-progress-note{font-size:10px}
}
@media(prefers-reduced-motion:reduce){
  .olen-chat-progress-pulse,.olen-chat-progress-dots i{animation:none}
}
