/* Start custom CSS for html, class: .elementor-element-1572679 */.airise-ai-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: radial-gradient(circle at 30% 30%, #0a0018, #000);
  padding: 2em;
}

.airise-ai-chat {
  width: 100%;
  max-width: 700px;
  background: rgba(20, 0, 40, 0.5);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 1.5em;
  box-shadow: 0 0 30px rgba(198, 0, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.ai-chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1em;
}
.ai-title {
  font-size: 1.6em;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(90deg, #c600ff, #00f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ai-chat-header select {
  background: #120024;
  color: #0ff;
  border: 1px solid #0ff3;
  padding: 0.4em 0.6em;
  border-radius: 8px;
}

.ai-chat-log {
  flex: 1;
  min-height: 300px;
  max-height: 60vh;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #0ff2;
  border-radius: 10px;
  padding: 1em;
  font-size: 0.95em;
  color: #eee;
  margin-bottom: 1em;
}

.msg {
  margin-bottom: 1.2em;
  line-height: 1.5;
}
.msg.user {
  color: #00ffff;
  text-align: right;
}
.msg.ai {
  color: #d478ff;
  text-align: left;
}

.ai-chat-input {
  display: flex;
  gap: 0.5em;
}
.ai-chat-input textarea {
  flex: 1;
  padding: 0.8em;
  border-radius: 10px;
  border: 1px solid #0ff6;
  background: #120024;
  color: #0ff;
  resize: none;
  font-family: inherit;
}
.ai-chat-input button {
  padding: 0.8em 1.2em;
  background: linear-gradient(135deg, #c600ff, #00f0ff);
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}
.ai-chat-input button:hover {
  box-shadow: 0 0 10px #00f0ffaa;
}

.ai-thinking {
  font-size: 0.9em;
  color: #999;
  text-align: center;
  margin-top: 0.5em;
}/* End custom CSS */