/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 17 2025 | 22:26:46 */
/* ===== 全体 ===== */
.zunda-chat {
  max-width: 560px;
  margin: 24px auto;
  background: #111827;
  color: #e5e7eb;
  border-radius: 14px;
  border: 1px solid #1f2937;
  box-shadow: 0 8px 28px rgba(0,0,0,.4);
  overflow: hidden;
  font-size: 14px;
}

/* ===== ヘッダー ===== */
.zunda-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #020617;
  border-bottom: 1px solid #1f2937;
}

.zunda-avatar img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #020617;
  border-radius: 12px;
}

.zunda-info {
  flex: 1;
}

.zunda-name {
  font-weight: bold;
  font-size: 15px;
}

.zunda-greeting {
  font-size: 12px;
  opacity: .85;
}

/* ===== 状態ランプ ===== */
.zunda-status-lamp {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

/* ===== チャットログ ===== */
.zunda-chat-window {
  height: 320px;
  overflow-y: auto;
  padding: 12px;
  background: #020617;
}

.zunda-chat-window .msg-user,
.zunda-chat-window .msg-ai {
  margin: 8px 0;
}

.zunda-chat-window .msg-user {
  text-align: right;
}

.zunda-chat-window span {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 85%;
  word-break: break-word;
}

.msg-user span {
  background: #2563eb;
  color: #fff;
}

.msg-ai span {
  background: #1f2937;
}

/* ===== 入力エリア ===== */
.zunda-input-area {
  display: flex;
  gap: 6px;
  padding: 10px;
  border-top: 1px solid #1f2937;
}

.zunda-input-area input {
  flex: 1;
  background: #020617;
  border: 1px solid #1f2937;
  color: #e5e7eb;
  padding: 8px;
  border-radius: 8px;
}

.zunda-btn {
  background: #020617;
  border: 1px solid #1f2937;
  color: #e5e7eb;
  border-radius: 8px;
  padding: 0 10px;
  cursor: pointer;
}

.zunda-btn:hover {
  background: #1f2937;
}

/* ===== ステータス ===== */
.zunda-status-text {
  font-size: 11px;
  text-align: center;
  padding: 6px;
  opacity: .8;
}
