.mic-chat{
  max-width: 720px;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.mic-chat__header{
  padding: 12px 14px;
  font-weight: 700;
  border-bottom: 1px solid #eee;
}

.mic-chat__log{
  height: 420px;
  overflow-y: auto;
  padding: 14px;
  background: #fafafa;
}

.mic-chat__form{
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid #eee;
  background: #fff;
}

.mic-chat__input{
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
}

.mic-chat__btn{
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
}

.mic-chat__btn:disabled{
  opacity: 0.6;
  cursor: not-allowed;
}

.mic-chat__msg{
  display: flex;
  margin: 10px 0;
}

.mic-chat__msg--user{
  justify-content: flex-end;
}

.mic-chat__bubble{
  max-width: 85%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  background: #fff;
  white-space: pre-wrap;
}

.mic-chat__msg--user .mic-chat__bubble{
  background: #f3f3f3;
}

.mic-chat__meta{
  padding: 8px 14px 14px 14px;
  font-size: 12px;
  color: #666;
}