/* modules/Chatwoot/resources/css/app.css */
.chatwoot-module {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chatwoot-webview {
  width: 100%;
  height: calc(100vh - 120px);
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.chatwoot-content-area {
  padding: 1rem;
  overflow-y: auto;
  max-height: calc(100vh - 140px);
}

.chatwoot-main-container {
  min-height: calc(100vh - 120px);
}

.chatwoot-form-container {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chatwoot-status-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.chatwoot-status-success {
  border-left: 4px solid #28a745;
}

.chatwoot-status-warning {
  border-left: 4px solid #ffc107;
}

.chatwoot-status-error {
  border-left: 4px solid #dc3545;
}

.chatwoot-touch-device .chatwoot-content-area {
  -webkit-overflow-scrolling: touch;
}