/**
 * STEAM Inventors - Gizmo Chatbot Styles v2.6
 * Improved: Chat interface, minimal popup, better mobile
 */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* ============================================================================
   BASE STYLES
   ============================================================================ */

#gizmo-chatbot-root,
#gizmo-chatbot-root * {
  box-sizing: border-box;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  padding: 0;
}

#gizmo-chatbot-root {
  position: fixed;
  z-index: 999999;
  font-size: 15px;
  line-height: 1.5;
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */

@keyframes gizmo-popIn {
  0% { transform: scale(0) rotate(-15deg); opacity: 0; }
  60% { transform: scale(1.1) rotate(3deg); opacity: 1; }
  80% { transform: scale(0.97) rotate(-1deg); }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

@keyframes gizmo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes gizmo-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(141,198,63,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(141,198,63,0); }
}

@keyframes gizmo-talk {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.5); }
}

@keyframes gizmo-slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gizmo-slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gizmo-glow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(141,198,63,0.5)); }
  50% { filter: drop-shadow(0 0 18px rgba(141,198,63,0.85)); }
}

@keyframes gizmo-shake {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(-3deg); }
  40% { transform: rotate(3deg); }
  60% { transform: rotate(-2deg); }
  80% { transform: rotate(2deg); }
}

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

@keyframes gizmo-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes gizmo-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes gizmo-speechIn {
  from { opacity: 0; transform: scale(0.9) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes gizmo-bow {
  0% { transform: rotate(0deg); }
  30% { transform: rotate(15deg); }
  60% { transform: rotate(15deg); }
  100% { transform: rotate(0deg); }
}

@keyframes gizmo-walk {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* ============================================================================
   OVERLAY
   ============================================================================ */

.gizmo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 999998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.gizmo-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* ============================================================================
   ROBOT WRAPPER
   ============================================================================ */

.gizmo-robot-wrapper {
  position: fixed;
  z-index: 999999;
  transition: none;
}

.gizmo-robot-wrapper.settled {
  transition: all 0.3s ease;
}

/* ============================================================================
   ROBOT AVATAR
   ============================================================================ */

.gizmo-robot {
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
}

.gizmo-robot.entering {
  animation: gizmo-popIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.gizmo-robot.floating {
  animation: gizmo-float 3s ease-in-out infinite;
}

.gizmo-robot.talking {
  animation: gizmo-shake 0.25s ease-in-out infinite;
}

.gizmo-robot.thinking {
  animation: gizmo-glow 1.2s ease-in-out infinite;
}

.gizmo-robot.bowing {
  animation: gizmo-bow 0.8s ease-in-out forwards;
  transform-origin: bottom center;
}

.gizmo-robot.walking {
  animation: gizmo-walk 0.3s ease-in-out infinite;
}

.gizmo-robot:hover {
  transform: scale(1.08);
}

.gizmo-robot-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

/* ============================================================================
   NOTIFICATION BADGE
   ============================================================================ */

.gizmo-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  background: linear-gradient(135deg, #ff6b6b, #e54040);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  animation: gizmo-pulse 2s infinite, gizmo-bounce 0.8s infinite;
  box-shadow: 0 3px 10px rgba(255, 100, 100, 0.4);
}

/* ============================================================================
   MINIMAL SPEECH BUBBLE POPUP - CLEANER DESIGN
   ============================================================================ */

.gizmo-speech-bubble {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 15px;
  width: 300px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 24px;
  animation: gizmo-speechIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  z-index: 10;
}

/* When robot is centered - LARGE clean popup with lots of breathing room */
.gizmo-speech-bubble.center {
  position: absolute !important;
  bottom: auto !important;
  top: 50% !important;
  left: 100% !important;
  right: auto !important;
  margin-bottom: 0 !important;
  margin-left: 35px !important;
  transform: translateY(-50%) !important;
  width: 450px !important;
  padding: 45px 50px !important;
  border-radius: 24px !important;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25) !important;
}

/* Arrow pointing to robot - corner position */
.gizmo-speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 30px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  transform: rotate(45deg);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.05);
}

/* Arrow pointing to robot - center position */
.gizmo-speech-bubble.center::after {
  bottom: auto;
  top: 50%;
  right: auto;
  left: -14px;
  width: 28px;
  height: 28px;
  transform: translateY(-50%) rotate(45deg);
  box-shadow: -4px 4px 8px rgba(0, 0, 0, 0.1);
}

.gizmo-speech-bubble.left {
  right: auto;
  left: 0;
}

.gizmo-speech-bubble.left::after {
  right: auto;
  left: 30px;
}

.gizmo-speech-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f0f0;
  border: none;
  color: #666;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
}

.gizmo-speech-bubble.center .gizmo-speech-close {
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  font-size: 26px;
}

.gizmo-speech-close:hover {
  background: #e0e0e0;
  color: #333;
}

.gizmo-speech-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gizmo-primary, #006838);
  margin-bottom: 12px;
  padding-right: 40px;
  line-height: 1.3;
}

/* Larger title when centered with more bottom margin */
.gizmo-speech-bubble.center .gizmo-speech-title {
  font-size: 24px;
  margin-bottom: 24px;
  padding-right: 50px;
  line-height: 1.3;
}

.gizmo-speech-message {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Larger message when centered with more spacing */
.gizmo-speech-bubble.center .gizmo-speech-message {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 32px;
  color: #333;
}

.gizmo-speech-actions {
  display: flex;
  gap: 12px;
}

.gizmo-speech-bubble.center .gizmo-speech-actions {
  gap: 20px;
}

.gizmo-speech-btn {
  flex: 1;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  font-family: 'Roboto', sans-serif;
}

/* Larger buttons when centered */
.gizmo-speech-bubble.center .gizmo-speech-btn {
  padding: 18px 36px;
  font-size: 17px;
  border-radius: 14px;
  font-weight: 700;
}

.gizmo-speech-btn.primary {
  background: var(--gizmo-primary, #006838);
  color: #fff;
}

.gizmo-speech-btn.primary:hover {
  background: #005530;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 104, 56, 0.3);
}

.gizmo-speech-btn.secondary {
  background: #f0f0f0;
  color: #555;
}

.gizmo-speech-btn.secondary:hover {
  background: #e0e0e0;
  color: #333;
}

/* ============================================================================
   BANNER POPUP (LARGE STYLE)
   ============================================================================ */

.gizmo-banner {
  position: fixed;
  z-index: 999999;
  animation: gizmo-slideDown 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.gizmo-banner.center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 94%;
  max-width: 600px;
}

.gizmo-banner.corner {
  bottom: 100px;
  right: 20px;
  width: 380px;
  max-width: calc(100vw - 40px);
  animation: gizmo-slideUp 0.4s ease forwards;
}

.gizmo-banner.corner.left {
  right: auto;
  left: 20px;
}

.gizmo-banner-inner {
  background: linear-gradient(145deg, var(--gizmo-primary, #006838) 0%, #004a28 60%, #003820 100%);
  border-radius: 24px;
  padding: 0;
  box-shadow: 
    0 20px 60px rgba(0, 104, 56, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  overflow: hidden;
  position: relative;
}

.gizmo-banner-content {
  padding: 32px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.gizmo-banner-robot {
  flex-shrink: 0;
  width: 100px;
  height: 125px;
  animation: gizmo-float 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

.gizmo-banner-text {
  flex: 1;
  min-width: 0;
}

.gizmo-banner-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gizmo-banner-message {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.gizmo-banner-actions {
  padding: 20px 28px 24px;
  display: flex;
  gap: 12px;
  background: rgba(0, 0, 0, 0.2);
}

.gizmo-banner-btn {
  flex: 1;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gizmo-banner-btn.primary {
  background: linear-gradient(135deg, var(--gizmo-accent, #8dc63f), #7ab530);
  color: #fff;
  box-shadow: 0 6px 20px rgba(141, 198, 63, 0.4);
}

.gizmo-banner-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(141, 198, 63, 0.5);
}

.gizmo-banner-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gizmo-banner-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.gizmo-banner-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
}

.gizmo-banner-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ============================================================================
   CHAT WINDOW - IMPROVED DESIGN
   ============================================================================ */

.gizmo-chat {
  position: fixed;
  background: #fff;
  border-radius: 20px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 999999;
  animation: gizmo-slideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Desktop */
@media (min-width: 481px) {
  .gizmo-chat {
    width: 380px;
    height: 520px;
    bottom: 100px;
    right: 20px;
  }
  
  .gizmo-chat.left {
    right: auto;
    left: 20px;
  }
}

/* Mobile - popup centered on screen, not next to robot */
@media (max-width: 600px) {
  .gizmo-chat {
    inset: 10px;
    width: auto;
    height: auto;
    border-radius: 16px;
  }
  
  /* On mobile, popup appears ABOVE robot, centered on screen */
  .gizmo-speech-bubble.center {
    position: fixed !important;
    top: 50% !important;
    bottom: auto !important;
    left: 50% !important;
    right: auto !important;
    margin-left: 0 !important;
    transform: translate(-50%, -50%) !important;
    width: calc(100vw - 40px) !important;
    max-width: 380px !important;
    padding: 32px 28px !important;
    border-radius: 20px !important;
  }
  
  /* Hide the arrow on mobile since popup is not attached to robot */
  .gizmo-speech-bubble.center::after {
    display: none !important;
  }
  
  /* Make robot smaller and move to bottom during popup on mobile */
  .gizmo-robot-wrapper {
    z-index: 999998 !important;
  }
  
  /* Corner popup (when robot is in corner) */
  .gizmo-speech-bubble:not(.center) {
    width: calc(100vw - 100px);
    max-width: 280px;
    padding: 20px;
  }
  
  .gizmo-robot-wrapper.settled {
    bottom: 14px !important;
    right: 14px !important;
  }
  
  .gizmo-robot-wrapper.settled.left {
    right: auto !important;
    left: 14px !important;
  }
  
  /* Adjust text sizes for mobile */
  .gizmo-speech-bubble.center .gizmo-speech-title {
    font-size: 20px !important;
    margin-bottom: 16px !important;
    padding-right: 40px !important;
  }
  
  .gizmo-speech-bubble.center .gizmo-speech-message {
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
  }
  
  .gizmo-speech-bubble.center .gizmo-speech-btn {
    padding: 14px 20px !important;
    font-size: 15px !important;
  }
  
  .gizmo-speech-bubble.center .gizmo-speech-close {
    top: 16px !important;
    right: 16px !important;
    width: 32px !important;
    height: 32px !important;
  }
}

/* Tablet - slightly smaller popup */
@media (min-width: 601px) and (max-width: 900px) {
  .gizmo-speech-bubble.center {
    width: 400px !important;
    padding: 38px 42px !important;
  }
}

/* Chat Header */
.gizmo-chat-header {
  background: linear-gradient(135deg, var(--gizmo-primary, #006838) 0%, #00854a 50%, var(--gizmo-accent, #8dc63f) 100%);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.gizmo-chat-header-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 4px;
  flex-shrink: 0;
}

.gizmo-chat-header-info {
  flex: 1;
  min-width: 0;
}

.gizmo-chat-header-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.gizmo-chat-header-status {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.gizmo-status-dot {
  width: 8px;
  height: 8px;
  background: var(--gizmo-accent, #8dc63f);
  border-radius: 50%;
  animation: gizmo-pulse 2s infinite;
  flex-shrink: 0;
}

.gizmo-chat-close {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.gizmo-chat-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(90deg);
}

/* Messages Area */
.gizmo-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fafbfc;
  overscroll-behavior: contain;
}

.gizmo-messages::-webkit-scrollbar {
  width: 5px;
}

.gizmo-messages::-webkit-scrollbar-track {
  background: transparent;
}

.gizmo-messages::-webkit-scrollbar-thumb {
  background: rgba(141, 198, 63, 0.3);
  border-radius: 3px;
}

/* Message Bubbles */
.gizmo-msg {
  display: flex;
  gap: 10px;
  animation: gizmo-slideUp 0.25s ease;
}

.gizmo-msg.user {
  flex-direction: row-reverse;
}

.gizmo-msg-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
  overflow: hidden;
}

.gizmo-msg.assistant .gizmo-msg-avatar {
  background: linear-gradient(135deg, #e8f5e0, #d4edc8);
}

.gizmo-msg.user .gizmo-msg-avatar {
  background: linear-gradient(135deg, var(--gizmo-primary, #006838), #008850);
  color: #fff;
}

.gizmo-msg.user .gizmo-msg-avatar span {
  font-size: 11px;
}

.gizmo-msg-content {
  max-width: 78%;
  padding: 12px 15px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.gizmo-msg.assistant .gizmo-msg-content {
  background: #fff;
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.gizmo-msg.user .gizmo-msg-content {
  background: linear-gradient(135deg, var(--gizmo-primary, #006838), #008850);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.gizmo-msg-content strong {
  font-weight: 600;
  color: var(--gizmo-primary, #006838);
}

.gizmo-msg.user .gizmo-msg-content strong {
  color: var(--gizmo-accent, #8dc63f);
}

/* Typing Indicator */
.gizmo-typing {
  display: flex;
  gap: 5px;
  padding: 12px;
  align-items: center;
}

.gizmo-typing-dot {
  width: 9px;
  height: 9px;
  background: linear-gradient(135deg, var(--gizmo-accent, #8dc63f), var(--gizmo-primary, #006838));
  border-radius: 50%;
  animation: gizmo-typing 1.4s ease-in-out infinite;
}

.gizmo-typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.gizmo-typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

/* Error Message */
.gizmo-error-msg {
  background: #fff8e6;
  border: 1px solid #ffc107;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: #856404;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: gizmo-fadeIn 0.3s ease;
}

.gizmo-error-icon {
  font-size: 16px;
}

/* Quick Questions */
.gizmo-quick {
  padding: 0 16px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: #fafbfc;
}

.gizmo-quick-btn {
  padding: 9px 14px;
  background: #fff;
  border: 1px solid rgba(141, 198, 63, 0.25);
  border-radius: 18px;
  font-size: 13px;
  color: var(--gizmo-primary, #006838);
  cursor: pointer;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  transition: all 0.2s ease;
}

.gizmo-quick-btn:hover {
  background: linear-gradient(135deg, var(--gizmo-accent, #8dc63f), #7ab530);
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(141, 198, 63, 0.3);
}

/* Input Area */
.gizmo-input-area {
  padding: 12px 16px 16px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.gizmo-input-wrap {
  display: flex;
  gap: 10px;
  background: #f5f6f7;
  border-radius: 14px;
  padding: 4px;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.gizmo-input-wrap:focus-within {
  border-color: var(--gizmo-accent, #8dc63f);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(141, 198, 63, 0.1);
}

.gizmo-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 11px 12px;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  outline: none;
  color: #333;
  min-width: 0;
}

.gizmo-input::placeholder {
  color: #999;
}

.gizmo-send {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gizmo-accent, #8dc63f), var(--gizmo-primary, #006838));
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.gizmo-send:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(141, 198, 63, 0.35);
}

.gizmo-send:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Welcome Screen */
.gizmo-welcome {
  text-align: center;
  padding: 30px 20px;
}

.gizmo-welcome-robot {
  width: 80px;
  height: 100px;
  margin: 0 auto 14px;
  animation: gizmo-float 3s ease-in-out infinite;
}

.gizmo-welcome-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gizmo-primary, #006838);
  margin-bottom: 6px;
}

.gizmo-welcome-text {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
