.novato-ai-container {
  max-width: 1400px;
  width: 90%;
  margin: 40px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid #ececec;
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', Arial, sans-serif;
  overflow: hidden;
}
.novato-ai-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 32px 14px 32px;
  border-bottom: 1px solid #f2f2f2;
  background: linear-gradient(180deg, #fff 80%, #f7fafd 100%);
}
.novato-ai-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.18em;
  font-weight: 600;
}
.novato-logo {
  height: 32px;
  width: auto;
  display: block;
}
.novato-ai-messages {
  flex: 1;
  padding: 32px 32px 16px 32px;
  background: #fafbfc;
  overflow-y: auto;
  min-height: 180px;
  max-height: 340px;
}
.novato-ai-message {
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 1.05em;
  line-height: 1.6;
  box-shadow: 0 2px 8px rgba(71,184,233,0.04);
  word-break: break-word;
}
.novato-ai-bot {
  background: #f4f5f7;
  color: #222;
  max-width: 80%;
}
.novato-ai-user {
  background: #e0e7ff;
  color: #2d3a5a;
  margin-left: auto;
  text-align: right;
  max-width: 80%;
}
/* AI mesajlarındaki linkler için stil */
.novato-ai-bot a {
  color: #47B8E9;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
.novato-ai-bot a:hover {
  color: #41ABE1;
  border-bottom-color: #41ABE1;
}
.novato-ai-footer {
  border-top: 1px solid #f2f2f2;
  background: #fff;
  padding: 18px 32px 10px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#ai-form {
  display: flex;
  gap: 8px;
}
#ai-input {
  flex: 1;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1em;
  outline: none;
  background: #fafbfc;
  transition: border 0.2s;
}
#ai-input:focus {
  border-color: #47B8E9;
}
#ai-form button {
  background: #47B8E9;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 1.3em;
  cursor: pointer;
  transition: background 0.2s;
}
#ai-form button:hover {
  background: #41ABE1;
}
.novato-ai-powered {
  text-align: center;
  color: #bdbdbd;
  font-size: 0.95em;
  margin-top: 2px;
}
.novato-ai-bottom-note {
  text-align: center;
  color: #bdbdbd;
  font-size: 0.92em;
  padding: 8px 0 10px 0;
  background: #fff;
  border-top: 1px solid #f2f2f2;
}
@media (max-width: 900px) {
  .novato-ai-container { max-width: 98vw; width: 98vw; }
  .novato-ai-header, .novato-ai-footer, .novato-ai-messages { padding-left: 10px; padding-right: 10px; }
} 