body {
  font-family:'Vazirmatn',Tahoma,sans-serif;
  margin:0;
  padding:0;
  direction:rtl;
  background:#e5e7eb;
}
.container {
  max-width:440px;
  margin:auto;
  height:100vh;
  display:flex;
  flex-direction:column;
  background:#f7fafc;
  border-radius:20px 20px 0 0;
  box-shadow:0 2px 12px #0002;
  overflow:hidden;
}
.form-section {
  background:#fff;
  padding:16px 14px 12px 14px;
  border-bottom:1px solid #ececec;
  min-height:80px;
}
#form-title {
  font-size:1.1rem;
  font-weight:bold;
  margin-bottom:6px;
  color:#2e3748;
}
#form-content button, .insurance-btn {
  background:#4caf50;
  color:#fff;
  border:none;
  border-radius:10px;
  padding:8px 24px;
  font-size:1rem;
  margin:8px 0 0 0;
  cursor:pointer;
  transition:.2s;
  box-shadow:0 1px 5px #4caf5022;
}
#form-content button:active {background:#388e3c;}
.form-input, select, input[type="text"], input[type="number"] {
  width:98%;padding:9px;margin-top:5px;
  border-radius:8px;border:1px solid #b7b9c0;font-size:1rem;
  margin-bottom:6px;box-sizing:border-box;
}
.bot-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px auto 3px auto;
  user-select: none;
}
.chat-section {
  flex:1;display:flex;flex-direction:column;
  background:linear-gradient(180deg,#f7fafc 60%,#e5e7eb 100%);
  padding:0 6px 12px 6px;
}
#chat-log {
  flex:1;overflow-y:auto;padding:12px 0;max-height:340px;
  display:flex;flex-direction:column;
}
.chat-bot, .chat-user {
  display:inline-block;
  max-width:80%;
  padding:10px 14px;
  margin:6px 0;
  border-radius:18px;
  font-size:15px;
  line-height:1.7;
  position:relative;
  box-shadow:0 2px 8px #0001;
  word-break:break-word;
}
.chat-bot {
  align-self:flex-end;
  background:#fff;
  color:#333;
  border-bottom-right-radius:5px;
  box-shadow:0 1px 5px #4caf5024;
}
.chat-user {
  align-self:flex-start;
  background:#4caf50;
  color:#fff;
  border-bottom-left-radius:5px;
  box-shadow:0 1px 5px #2222;
}
.insurance-box {
  background:#fff;
  padding:13px 10px;
  border-radius:13px;
  border:1px solid #e1e1e1;
  margin:13px 0;
  box-shadow:0 1px 7px #0002;
}
.cover-label{display:inline-block;margin-left:8px;}
.cover-checkbox{vertical-align:middle;}
.chat-input {
  display:flex;padding:7px 0 0 0;border-top:1px solid #e2e4e6;
  background:#f7fafc;
}
.chat-input input {
  flex:1;
  padding:11px 12px;
  border-radius:7px;
  border:1px solid #cfd2d7;
  font-size:1rem;
  margin-left:8px;
  background:#fff;
  transition:.1s;
}
.chat-input input:focus {border-color:#4caf50;outline:none;}
@media (max-width:500px){
  .container{max-width:100vw;border-radius:0;}
  .form-section{padding:7px 5px;}
}
