/**
 * Modern Support Widget Override - Pip-Boy Theme
 * Retro terminal aesthetic with standard sizing and working interactions
 */

/* Override: Force all pointer events to work */
.unified-widget,
.unified-widget *,
.unified-widget.open,
.unified-widget.open * {
  pointer-events: auto !important;
}

.unified-widget button,
.unified-widget input,
.unified-widget textarea,
.unified-widget select,
.unified-widget a,
.unified-widget [onclick],
.unified-widget [role="button"] {
  pointer-events: auto !important;
  cursor: pointer !important;
}

/* Pip-Boy Widget Container - Standard Size */
.unified-widget {
  width: 420px !important;
  max-width: 420px !important;
  height: 640px !important;
  max-height: 640px !important;
  border-radius: 8px !important;
  background: rgba(10, 20, 15, 0.98) !important;
  border: 3px solid var(--pip-boy-green, #00ff41) !important;
  box-shadow:
    0 0 30px rgba(0, 255, 65, 0.4),
    0 0 60px rgba(0, 255, 65, 0.2),
    inset 0 0 20px rgba(0, 255, 65, 0.1) !important;
  clip-path: none !important;
  backdrop-filter: blur(10px) !important;
  font-family: "VT323", "Courier New", monospace !important;
}

/* Pip-Boy Header */
.unified-widget-header {
  background: linear-gradient(
    180deg,
    rgba(0, 255, 65, 0.2) 0%,
    rgba(0, 255, 65, 0.05) 100%
  ) !important;
  border-bottom: 2px solid var(--pip-boy-green, #00ff41) !important;
  padding: 16px 20px !important;
  border-radius: 8px 8px 0 0 !important;
}

.unified-widget-header::before,
.unified-widget-header::after {
  display: none !important;
}

.unified-widget-header h2 {
  color: var(--pip-boy-green, #00ff41) !important;
  font-family: "VT323", "Courier New", monospace !important;
  font-size: 24px !important;
  font-weight: normal !important;
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.8) !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
}

.unified-widget-close {
  background: rgba(0, 255, 65, 0.1) !important;
  border: 1px solid var(--pip-boy-green, #00ff41) !important;
  border-radius: 4px !important;
  color: var(--pip-boy-green, #00ff41) !important;
  width: 32px !important;
  height: 32px !important;
  font-size: 20px !important;
  line-height: 30px !important;
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.8) !important;
  transition: all 0.2s ease !important;
}

.unified-widget-close:hover {
  background: rgba(0, 255, 65, 0.2) !important;
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.6) !important;
}

/* Pip-Boy Tabs */
.unified-widget-tabs {
  background: rgba(0, 0, 0, 0.6) !important;
  border-bottom: 1px solid rgba(0, 255, 65, 0.3) !important;
  padding: 8px 4px 0 4px !important;
  display: flex !important;
  gap: 2px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  flex-wrap: nowrap !important;
  -webkit-overflow-scrolling: touch !important;
}

.unified-widget-tabs::-webkit-scrollbar {
  height: 4px !important;
}

.unified-widget-tabs::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 65, 0.3) !important;
}

.unified-widget-tab {
  background: rgba(0, 255, 65, 0.05) !important;
  border: 1px solid rgba(0, 255, 65, 0.3) !important;
  border-bottom: none !important;
  border-radius: 6px 6px 0 0 !important;
  padding: 8px 10px !important;
  font-family: "VT323", "Courier New", monospace !important;
  font-size: 14px !important;
  font-weight: normal !important;
  color: rgba(0, 255, 65, 0.6) !important;
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.4) !important;
  transition: all 0.2s ease !important;
  clip-path: none !important;
  flex: 0 0 auto !important; /* Don't shrink, allow scrolling */
  min-width: 80px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  white-space: nowrap !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  user-select: none !important;
}

.unified-widget-tab:hover {
  background: rgba(0, 255, 65, 0.1) !important;
  color: rgba(0, 255, 65, 0.8) !important;
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.3) !important;
}

.unified-widget-tab.active {
  background: rgba(0, 255, 65, 0.15) !important;
  color: var(--pip-boy-green, #00ff41) !important;
  border-color: var(--pip-boy-green, #00ff41) !important;
  box-shadow:
    0 0 15px rgba(0, 255, 65, 0.4),
    inset 0 0 10px rgba(0, 255, 65, 0.1) !important;
}

.tab-icon {
  font-size: 16px !important;
  margin-right: 6px !important;
}

/* Pip-Boy Content Area */
.unified-widget-content {
  background: rgba(0, 0, 0, 0.4) !important;
  padding: 16px !important;
  height: calc(100% - 180px) !important;
  min-height: 400px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  position: relative !important;
}

/* Tab Content - Ensure it's visible */
.unified-widget-tab-content {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 300px !important;
  padding: 16px !important;
  box-sizing: border-box !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

/* Pip-Boy Chat Messages */
.support-chat-container {
  background: transparent !important;
}

.support-chat-messages {
  background: rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(0, 255, 65, 0.2) !important;
  border-radius: 4px !important;
  padding: 16px !important;
}

.chat-message {
  background: rgba(0, 255, 65, 0.05) !important;
  border: 1px solid rgba(0, 255, 65, 0.3) !important;
  border-radius: 4px !important;
  padding: 12px 16px !important;
  margin-bottom: 12px !important;
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.1) !important;
  font-family: "VT323", "Courier New", monospace !important;
  color: var(--pip-boy-green, #00ff41) !important;
  text-shadow: 0 0 5px rgba(0, 255, 65, 0.5) !important;
}

.bot-message {
  background: rgba(0, 255, 65, 0.08) !important;
  border-color: rgba(0, 255, 65, 0.4) !important;
}

.user-message {
  background: rgba(0, 255, 65, 0.15) !important;
  border-color: var(--pip-boy-green, #00ff41) !important;
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.3) !important;
}

.message-content {
  color: var(--pip-boy-green, #00ff41) !important;
}

/* Pip-Boy Input */
.support-chat-input {
  background: rgba(0, 0, 0, 0.6) !important;
  border: 2px solid rgba(0, 255, 65, 0.4) !important;
  border-radius: 4px !important;
  padding: 12px !important;
  font-family: "VT323", "Courier New", monospace !important;
  font-size: 16px !important;
  color: var(--pip-boy-green, #00ff41) !important;
  text-shadow: 0 0 5px rgba(0, 255, 65, 0.5) !important;
  resize: none !important;
}

.support-chat-input::placeholder {
  color: rgba(0, 255, 65, 0.4) !important;
}

.support-chat-input:focus {
  border-color: var(--pip-boy-green, #00ff41) !important;
  outline: none !important;
  box-shadow:
    0 0 15px rgba(0, 255, 65, 0.4),
    inset 0 0 10px rgba(0, 255, 65, 0.1) !important;
}

/* Pip-Boy Buttons */
.support-chat-send,
.action-btn,
.btn-primary {
  background: rgba(0, 255, 65, 0.15) !important;
  border: 2px solid var(--pip-boy-green, #00ff41) !important;
  border-radius: 4px !important;
  padding: 10px 20px !important;
  font-family: "VT323", "Courier New", monospace !important;
  font-size: 18px !important;
  font-weight: normal !important;
  color: var(--pip-boy-green, #00ff41) !important;
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.6) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all 0.2s ease !important;
}

.support-chat-send:hover,
.action-btn:hover,
.btn-primary:hover {
  background: rgba(0, 255, 65, 0.25) !important;
  box-shadow:
    0 0 20px rgba(0, 255, 65, 0.6),
    inset 0 0 10px rgba(0, 255, 65, 0.2) !important;
}

.support-chat-clear,
.btn-secondary {
  background: rgba(0, 0, 0, 0.5) !important;
  border: 1px solid rgba(0, 255, 65, 0.3) !important;
  border-radius: 4px !important;
  padding: 10px 16px !important;
  font-size: 16px !important;
  color: rgba(0, 255, 65, 0.7) !important;
  font-family: "VT323", "Courier New", monospace !important;
  text-shadow: 0 0 5px rgba(0, 255, 65, 0.4) !important;
}

.support-chat-clear:hover,
.btn-secondary:hover {
  background: rgba(0, 255, 65, 0.1) !important;
  border-color: rgba(0, 255, 65, 0.5) !important;
}

/* Pip-Boy Header Buttons */
.chat-header-btn {
  background: rgba(0, 255, 65, 0.1) !important;
  border: 1px solid rgba(0, 255, 65, 0.4) !important;
  border-radius: 4px !important;
  padding: 8px 12px !important;
  font-size: 16px !important;
  color: var(--pip-boy-green, #00ff41) !important;
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.6) !important;
  transition: all 0.2s ease !important;
}

.chat-header-btn:hover {
  background: rgba(0, 255, 65, 0.2) !important;
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.5) !important;
}

/* Suggested Questions */
.suggested-question-btn {
  background: rgba(0, 255, 65, 0.05) !important;
  border: 1px solid rgba(0, 255, 65, 0.3) !important;
  border-radius: 4px !important;
  padding: 8px 16px !important;
  font-size: 14px !important;
  font-family: "VT323", "Courier New", monospace !important;
  color: var(--pip-boy-green, #00ff41) !important;
  text-shadow: 0 0 5px rgba(0, 255, 65, 0.5) !important;
  transition: all 0.2s ease !important;
}

.suggested-question-btn:hover {
  background: rgba(0, 255, 65, 0.15) !important;
  border-color: var(--pip-boy-green, #00ff41) !important;
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.4) !important;
}

/* Pip-Boy FAB */
.unified-widget-fab {
  background: radial-gradient(
    circle,
    rgba(0, 255, 65, 0.3) 0%,
    rgba(0, 255, 65, 0.1) 100%
  ) !important;
  border: 3px solid var(--pip-boy-green, #00ff41) !important;
  border-radius: 50% !important;
  width: 60px !important;
  height: 60px !important;
  box-shadow:
    0 0 20px rgba(0, 255, 65, 0.6),
    0 0 40px rgba(0, 255, 65, 0.3),
    inset 0 0 15px rgba(0, 255, 65, 0.2) !important;
  clip-path: none !important;
  color: var(--pip-boy-green, #00ff41) !important;
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.8) !important;
}

.unified-widget-fab:hover {
  transform: scale(1.05) !important;
  box-shadow:
    0 0 30px rgba(0, 255, 65, 0.8),
    0 0 60px rgba(0, 255, 65, 0.4),
    inset 0 0 20px rgba(0, 255, 65, 0.3) !important;
}

/* Scanline Effect */
.unified-widget::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15) 0px,
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px
  ) !important;
  pointer-events: none !important;
  z-index: 1000 !important;
  border-radius: 8px !important;
}

/* CRT Flicker Animation */
@keyframes flicker {
  0% {
    opacity: 0.98;
  }
  5% {
    opacity: 1;
  }
  10% {
    opacity: 0.98;
  }
  15% {
    opacity: 1;
  }
  20% {
    opacity: 0.98;
  }
  100% {
    opacity: 0.98;
  }
}

.unified-widget {
  animation: flicker 5s infinite !important;
}

/* Scrollbar - Pip-Boy Style */
.unified-widget-content::-webkit-scrollbar,
.support-chat-messages::-webkit-scrollbar {
  width: 10px;
}

.unified-widget-content::-webkit-scrollbar-track,
.support-chat-messages::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 255, 65, 0.2);
}

.unified-widget-content::-webkit-scrollbar-thumb,
.support-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 65, 0.3);
  border: 1px solid var(--pip-boy-green, #00ff41);
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.unified-widget-content::-webkit-scrollbar-thumb:hover,
.support-chat-messages::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 255, 65, 0.5);
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.8);
}

/* ============================================
   ENHANCED CHAT INTERFACE IMPROVEMENTS
   ============================================ */

/* Message Animations */
@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chat-message {
  animation: messageSlideIn 0.3s ease-out !important;
}

/* Message Header Improvements */
.message-header {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 8px !important;
  padding-bottom: 6px !important;
  border-bottom: 1px solid rgba(0, 255, 65, 0.2) !important;
}

.message-avatar {
  font-size: 20px !important;
  width: 28px !important;
  height: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(0, 255, 65, 0.1) !important;
  border: 1px solid rgba(0, 255, 65, 0.3) !important;
  border-radius: 50% !important;
}

.message-sender {
  font-weight: bold !important;
  font-size: 14px !important;
  color: var(--pip-boy-green, #00ff41) !important;
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.6) !important;
}

.message-time {
  margin-left: auto !important;
  font-size: 11px !important;
  color: rgba(0, 255, 65, 0.5) !important;
  opacity: 0.7 !important;
}

.llm-badge {
  font-size: 12px !important;
  margin-left: 4px !important;
  animation: sparkle 2s ease-in-out infinite !important;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Message Content Improvements */
.message-content {
  line-height: 1.6 !important;
  font-size: 15px !important;
}

.message-list {
  margin: 8px 0 !important;
  padding-left: 20px !important;
}

.message-list li {
  margin: 6px 0 !important;
  padding-left: 8px !important;
}

/* Suggested Questions Improvements */
.suggested-questions {
  margin-top: 16px !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(0, 255, 65, 0.2) !important;
}

.suggested-questions-label {
  font-size: 12px !important;
  color: rgba(0, 255, 65, 0.6) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 10px !important;
  display: block !important;
}

.suggested-questions-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.suggested-question-btn {
  text-align: left !important;
  width: 100% !important;
  padding: 10px 14px !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
}

/* Chat Input Container Improvements */
.support-chat-input-container {
  display: flex !important;
  gap: 8px !important;
  align-items: flex-end !important;
  margin-top: 12px !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(0, 255, 65, 0.2) !important;
}

.support-chat-input {
  flex: 1 !important;
  min-height: 60px !important;
  max-height: 120px !important;
  line-height: 1.5 !important;
}

.support-chat-send {
  min-width: 80px !important;
  height: 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.support-chat-clear {
  min-width: 50px !important;
  height: 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
}

/* Chat Header Improvements */
.support-chat-header {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin-bottom: 12px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(0, 255, 65, 0.2) !important;
}

.support-chat-header-left,
.support-chat-header-right {
  display: flex !important;
  gap: 8px !important;
  align-items: center !important;
}

.support-chat-header-right {
  margin-left: auto !important;
}

.chat-escalate-btn {
  background: rgba(255, 100, 100, 0.15) !important;
  border: 1px solid rgba(255, 100, 100, 0.5) !important;
  border-radius: 4px !important;
  padding: 8px 14px !important;
  font-size: 13px !important;
  font-family: "VT323", "Courier New", monospace !important;
  color: #ff6464 !important;
  text-shadow: 0 0 8px rgba(255, 100, 100, 0.6) !important;
  transition: all 0.2s ease !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.chat-escalate-btn:hover {
  background: rgba(255, 100, 100, 0.25) !important;
  box-shadow: 0 0 15px rgba(255, 100, 100, 0.5) !important;
}

/* Search Input Improvements */
.chat-search-input {
  background: rgba(0, 0, 0, 0.7) !important;
  border: 2px solid rgba(0, 255, 65, 0.4) !important;
  border-radius: 4px !important;
  padding: 10px 14px !important;
  font-family: "VT323", "Courier New", monospace !important;
  font-size: 14px !important;
  color: var(--pip-boy-green, #00ff41) !important;
  text-shadow: 0 0 5px rgba(0, 255, 65, 0.5) !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.chat-search-input:focus {
  border-color: var(--pip-boy-green, #00ff41) !important;
  box-shadow:
    0 0 15px rgba(0, 255, 65, 0.4),
    inset 0 0 10px rgba(0, 255, 65, 0.1) !important;
}

/* Search Highlight */
.chat-search-highlight {
  background: rgba(0, 255, 65, 0.3) !important;
  color: var(--pip-boy-green, #00ff41) !important;
  padding: 2px 4px !important;
  border-radius: 2px !important;
  font-weight: bold !important;
  box-shadow: 0 0 8px rgba(0, 255, 65, 0.5) !important;
}

/* Typing Indicator */
.typing-indicator {
  display: flex !important;
  gap: 4px !important;
  padding: 12px 16px !important;
  align-items: center !important;
}

.typing-indicator span {
  width: 8px !important;
  height: 8px !important;
  background: rgba(0, 255, 65, 0.6) !important;
  border-radius: 50% !important;
  animation: typingDot 1.4s infinite ease-in-out !important;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s !important;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s !important;
}

@keyframes typingDot {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  30% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

/* Empty States */
.empty-state {
  text-align: center !important;
  padding: 40px 20px !important;
  color: rgba(0, 255, 65, 0.5) !important;
}

.empty-state-icon {
  font-size: 48px !important;
  margin-bottom: 16px !important;
  opacity: 0.5 !important;
}

.empty-state-text {
  font-size: 14px !important;
  line-height: 1.6 !important;
}

/* Loading States */
.loading-state {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 40px 20px !important;
  color: rgba(0, 255, 65, 0.6) !important;
}

.loading-spinner {
  width: 32px !important;
  height: 32px !important;
  border: 3px solid rgba(0, 255, 65, 0.2) !important;
  border-top-color: var(--pip-boy-green, #00ff41) !important;
  border-radius: 50% !important;
  animation: spin 1s linear infinite !important;
  margin-bottom: 16px !important;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Error States */
.error-state {
  background: rgba(255, 50, 50, 0.1) !important;
  border: 1px solid rgba(255, 50, 50, 0.4) !important;
  border-radius: 4px !important;
  padding: 16px !important;
  color: #ff6464 !important;
  text-shadow: 0 0 8px rgba(255, 100, 100, 0.6) !important;
  margin: 12px 0 !important;
}

/* Success States */
.success-state {
  background: rgba(0, 255, 65, 0.1) !important;
  border: 1px solid rgba(0, 255, 65, 0.4) !important;
  border-radius: 4px !important;
  padding: 16px !important;
  color: var(--pip-boy-green, #00ff41) !important;
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.6) !important;
  margin: 12px 0 !important;
}

/* Toast Notifications */
.unified-widget-toast {
  position: fixed !important;
  bottom: 100px !important;
  right: 20px !important;
  background: rgba(0, 0, 0, 0.9) !important;
  border: 2px solid var(--pip-boy-green, #00ff41) !important;
  border-radius: 4px !important;
  padding: 12px 16px !important;
  color: var(--pip-boy-green, #00ff41) !important;
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.6) !important;
  box-shadow:
    0 0 20px rgba(0, 255, 65, 0.4),
    inset 0 0 10px rgba(0, 255, 65, 0.1) !important;
  z-index: 10002 !important;
  font-family: "VT323", "Courier New", monospace !important;
  font-size: 14px !important;
  animation: toastSlideIn 0.3s ease-out !important;
  max-width: 300px !important;
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
  .unified-widget {
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
    height: calc(100vh - 100px) !important;
    max-height: calc(100vh - 100px) !important;
    right: 10px !important;
    bottom: 10px !important;
  }

  .unified-widget-tab {
    min-width: 70px !important;
    padding: 6px 8px !important;
    font-size: 12px !important;
  }

  .tab-icon {
    font-size: 14px !important;
    margin-right: 4px !important;
  }

  .support-chat-input-container {
    flex-direction: column !important;
  }

  .support-chat-send,
  .support-chat-clear {
    width: 100% !important;
    height: 44px !important;
  }
}

/* Focus Improvements for Accessibility */
.unified-widget button:focus,
.unified-widget input:focus,
.unified-widget textarea:focus {
  outline: 2px solid var(--pip-boy-green, #00ff41) !important;
  outline-offset: 2px !important;
  box-shadow:
    0 0 15px rgba(0, 255, 65, 0.4),
    inset 0 0 10px rgba(0, 255, 65, 0.1) !important;
}

/* Smooth Transitions */
.unified-widget-tab-content {
  transition: opacity 0.2s ease !important;
}

/* Better Message Spacing */
.support-chat-messages {
  gap: 12px !important;
  max-height: 400px !important;
  min-height: 200px !important;
}

/* Improved Button States */
.support-chat-send:active,
.action-btn:active,
.btn-primary:active {
  transform: scale(0.98) !important;
}

.support-chat-send:disabled,
.action-btn:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}
