/*!***********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/blocks/ai-post-chat/style.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************/
/**
 * AI Post Chat Block - XtraXtra Design System
 * Following newspaper-inspired dark theme from post-editor block
 */
.wp-block-xtra-ai-post-chat {
  --font-body: "EB Garamond", serif;
  --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --chat-height: 600px;
}
.wp-block-xtra-ai-post-chat .ai-post-chat-container {
  background: #0a0a0a;
  border: 1px solid #333333;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  height: var(--chat-height);
  min-height: 300px;
  max-height: 100vh;
  overflow: hidden;
}
@media (max-height: 600px) {
  .wp-block-xtra-ai-post-chat .ai-post-chat-container {
    max-height: calc(100vh - 100px);
  }
}
.wp-block-xtra-ai-post-chat .ai-post-chat-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #333333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0a0a0a;
}
.wp-block-xtra-ai-post-chat .ai-post-chat-header h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 700;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.wp-block-xtra-ai-post-chat .ai-post-chat-header .post-context-indicator {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: #3498db;
  background: rgba(52, 152, 219, 0.1);
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(52, 152, 219, 0.3);
  border-radius: 0;
}
.wp-block-xtra-ai-post-chat .recipe-buttons {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #333333;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: #0a0a0a;
}
.wp-block-xtra-ai-post-chat .recipe-buttons button,
.wp-block-xtra-ai-post-chat .recipe-buttons .recipe-button {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  background-color: #1a1a1a;
  color: #a0a0a0;
  border: 1px solid #333333;
  border-radius: 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: all 0.15s ease;
}
.wp-block-xtra-ai-post-chat .recipe-buttons button:hover:not(:disabled),
.wp-block-xtra-ai-post-chat .recipe-buttons .recipe-button:hover:not(:disabled) {
  background-color: #3498db;
  color: #ffffff;
  border-color: #3498db;
  transform: translateY(-1px);
}
.wp-block-xtra-ai-post-chat .recipe-buttons button:active,
.wp-block-xtra-ai-post-chat .recipe-buttons .recipe-button:active {
  transform: scale(0.98);
}
.wp-block-xtra-ai-post-chat .recipe-buttons button:disabled,
.wp-block-xtra-ai-post-chat .recipe-buttons .recipe-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.wp-block-xtra-ai-post-chat .chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  background: #0a0a0a;
}
.wp-block-xtra-ai-post-chat .chat-messages::-webkit-scrollbar {
  width: 8px;
}
.wp-block-xtra-ai-post-chat .chat-messages::-webkit-scrollbar-track {
  background: #1a1a1a;
}
.wp-block-xtra-ai-post-chat .chat-messages::-webkit-scrollbar-thumb {
  background: #333333;
  border-radius: 0;
}
.wp-block-xtra-ai-post-chat .chat-messages::-webkit-scrollbar-thumb:hover {
  background: #3498db;
}
.wp-block-xtra-ai-post-chat .chat-messages .message {
  margin-bottom: 1.5rem;
  animation: fadeIn 0.3s ease-in;
}
.wp-block-xtra-ai-post-chat .chat-messages .message.user .message-content {
  background: #1a1a1a;
  color: #ffffff;
  margin-left: 15%;
  border: 1px solid #333333;
  border-left: 3px solid #3498db;
}
.wp-block-xtra-ai-post-chat .chat-messages .message.assistant .message-content {
  background: #121212;
  color: #f0f0f0;
  margin-right: 15%;
  border: 1px solid #333333;
  border-left: 3px solid #666666;
}
.wp-block-xtra-ai-post-chat .chat-messages .message.loading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #666666;
  font-family: var(--font-ui);
  font-size: 0.875rem;
}
.wp-block-xtra-ai-post-chat .chat-messages .message.loading .spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #333333;
  border-top-color: #3498db;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.wp-block-xtra-ai-post-chat .chat-messages .message .message-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.wp-block-xtra-ai-post-chat .chat-messages .message .message-header strong {
  font-weight: 700;
  color: #a0a0a0;
}
.wp-block-xtra-ai-post-chat .chat-messages .message .message-header .timestamp {
  font-size: 0.7rem;
  font-style: italic;
}
.wp-block-xtra-ai-post-chat .chat-messages .message .message-content {
  padding: 1rem;
  border-radius: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  -webkit-user-select: text;
     -moz-user-select: text;
          user-select: text;
  cursor: text;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
}
.wp-block-xtra-ai-post-chat .chat-messages .error-message {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid #e74c3c;
  color: #e74c3c;
  padding: 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  border-radius: 0;
}
.wp-block-xtra-ai-post-chat .chat-input-area {
  padding: 1.5rem;
  border-top: 1px solid #333333;
  background: #0a0a0a;
  display: flex;
  gap: 1rem;
}
.wp-block-xtra-ai-post-chat .chat-input-area textarea {
  flex: 1;
  padding: 0.75rem 1rem;
  background-color: #1a1a1a;
  color: #ffffff;
  border: 1px solid #333333;
  border-radius: 0;
  resize: none;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  line-height: 1.5;
  transition: all 0.15s ease;
}
.wp-block-xtra-ai-post-chat .chat-input-area textarea::-moz-placeholder {
  color: #666666;
  opacity: 1;
}
.wp-block-xtra-ai-post-chat .chat-input-area textarea::placeholder {
  color: #666666;
  opacity: 1;
}
.wp-block-xtra-ai-post-chat .chat-input-area textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
  background-color: #0a0a0a;
}
.wp-block-xtra-ai-post-chat .chat-input-area textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #1a1a1a;
}
.wp-block-xtra-ai-post-chat .chat-input-area button {
  padding: 0.75rem 2rem;
  background-color: #ffffff;
  color: #0a0a0a;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.15s ease;
  min-width: 100px;
}
.wp-block-xtra-ai-post-chat .chat-input-area button:hover:not(:disabled) {
  background-color: #3498db;
  color: #ffffff;
  transform: translateY(-1px);
}
.wp-block-xtra-ai-post-chat .chat-input-area button:active {
  transform: scale(0.98);
}
.wp-block-xtra-ai-post-chat .chat-input-area button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.wp-block-xtra-ai-post-chat .chat-initializing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  color: #666666;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.wp-block-xtra-ai-post-chat .chat-initializing .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #333333;
  border-top-color: #3498db;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.wp-block-xtra-ai-post-chat .ai-post-chat-login-required {
  padding: 3rem 1.5rem;
  text-align: center;
  background: #0a0a0a;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-block-xtra-ai-post-chat .ai-post-chat-login-required .login-message {
  max-width: 400px;
  margin: 0 auto;
}
.wp-block-xtra-ai-post-chat .ai-post-chat-login-required .login-message h3 {
  margin: 0 0 1.5rem 0;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 700;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.wp-block-xtra-ai-post-chat .ai-post-chat-login-required .login-message p {
  margin: 0 0 2rem 0;
  color: #666666;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
}
.wp-block-xtra-ai-post-chat .ai-post-chat-login-required .login-message .button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: #ffffff;
  color: #0a0a0a;
  text-decoration: none;
  border-radius: 0;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.15s ease;
}
.wp-block-xtra-ai-post-chat .ai-post-chat-login-required .login-message .button:hover {
  background-color: #3498db;
  color: #ffffff;
  transform: translateY(-1px);
}
.wp-block-xtra-ai-post-chat.is-style-fullscreen {
  --chat-height: calc(100vh - 120px);
}
.wp-block-xtra-ai-post-chat.is-style-fullscreen .ai-post-chat-container {
  position: relative;
}
@media (min-height: 800px) {
  .wp-block-xtra-ai-post-chat.is-style-fullscreen .ai-post-chat-container {
    --chat-height: calc(100vh - 200px);
  }
}
.wp-block-xtra-ai-post-chat.is-style-compact {
  --chat-height: 400px;
}
.wp-block-xtra-ai-post-chat.is-style-compact .recipe-buttons {
  padding: 0.5rem 1rem;
}
.wp-block-xtra-ai-post-chat.is-style-compact .chat-messages {
  padding: 1rem;
}
.wp-block-xtra-ai-post-chat.is-style-compact .chat-input-area {
  padding: 1rem;
}

.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #ffffff;
  color: #000000;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-ui), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.15s ease;
  width: 100%;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-trigger svg {
  width: 20px;
  height: 20px;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-trigger:hover {
  background-color: #3498db;
  color: #ffffff;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-trigger:active {
  transform: scale(0.98);
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar.is-open .ai-post-chat-sidebar-panel {
  transform: translateX(0);
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 90vw;
  background: #0a0a0a;
  border-left: 1px solid #333333;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  z-index: 100000;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #333333;
  background: #000000;
  flex-shrink: 0;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-sidebar-header h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-sidebar-header .post-context-indicator {
  font-family: var(--font-ui);
  font-size: 0.625rem;
  color: #3498db;
  background: rgba(52, 152, 219, 0.1);
  padding: 0.125rem 0.375rem;
  border: 1px solid rgba(52, 152, 219, 0.3);
  border-radius: 0;
  margin: 0 auto;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-sidebar-header .ai-post-chat-close {
  background: transparent;
  border: none;
  color: #a0a0a0;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-sidebar-header .ai-post-chat-close svg {
  width: 20px;
  height: 20px;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-sidebar-header .ai-post-chat-close:hover {
  color: #ffffff;
  transform: rotate(90deg);
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .recipe-buttons {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #333333;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  background: #0a0a0a;
  flex-shrink: 0;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .recipe-buttons button,
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .recipe-buttons .recipe-button {
  font-family: var(--font-ui);
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  background-color: #1a1a1a;
  color: #a0a0a0;
  border: 1px solid #333333;
  border-radius: 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: all 0.15s ease;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .recipe-buttons button:hover:not(:disabled),
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .recipe-buttons .recipe-button:hover:not(:disabled) {
  background-color: #3498db;
  color: #ffffff;
  border-color: #3498db;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .recipe-buttons button:disabled,
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .recipe-buttons .recipe-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem;
  background: #0a0a0a;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-messages::-webkit-scrollbar {
  width: 6px;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-messages::-webkit-scrollbar-track {
  background: #1a1a1a;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-messages::-webkit-scrollbar-thumb {
  background: #333333;
  border-radius: 0;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-messages::-webkit-scrollbar-thumb:hover {
  background: #3498db;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-messages .message {
  margin-bottom: 0.75rem;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-messages .message .message-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
  font-family: var(--font-ui);
  font-size: 0.625rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-messages .message .message-header strong {
  font-weight: 600;
  color: #a0a0a0;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-messages .message .message-header .timestamp {
  font-size: 0.5625rem;
  font-style: normal;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-messages .message .message-content {
  padding: 0.625rem 0.875rem;
  border-radius: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-messages .message.user .message-content {
  background: #1a1a1a;
  color: #f5f5f5;
  margin-left: 10%;
  border: 1px solid #333333;
  border-left: 2px solid #3498db;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-messages .message.assistant .message-content {
  background: #141414;
  color: #e8e8e8;
  margin-right: 10%;
  border: 1px solid #333333;
  border-left: 2px solid #666666;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-messages .message.loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666666;
  font-family: var(--font-ui);
  font-size: 0.75rem;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-messages .message.loading .spinner {
  width: 14px;
  height: 14px;
  border: 2px solid #333333;
  border-top-color: #3498db;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-messages .chat-initializing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  color: #666666;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-messages .chat-initializing .spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #333333;
  border-top-color: #3498db;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-input-area {
  padding: 0.75rem;
  border-top: 1px solid #333333;
  background: #0a0a0a;
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-input-area textarea {
  flex: 1;
  padding: 0.5rem 0.75rem;
  background-color: #1a1a1a;
  color: #ffffff;
  border: 1px solid #333333;
  border-radius: 0;
  resize: none;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  line-height: 1.3;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-input-area textarea::-moz-placeholder {
  color: #666666;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-input-area textarea::placeholder {
  color: #666666;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-input-area textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 1px rgba(52, 152, 219, 0.2);
  background-color: #0a0a0a;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-input-area textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-input-area button {
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  color: #0a0a0a;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: all 0.15s ease;
  min-width: 60px;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-input-area button:hover:not(:disabled) {
  background-color: #3498db;
  color: #ffffff;
}
.wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar .ai-post-chat-sidebar-panel .ai-post-chat-container .chat-input-area button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar-panel {
    width: 100% !important;
    max-width: 100% !important;
    border-left: none;
  }
  .wp-block-xtra-ai-post-chat.is-sidebar-mode .ai-post-chat-sidebar-panel .ai-post-chat-sidebar-header {
    background: #000000;
  }
}

/*# sourceMappingURL=style-index.css.map*/