/* CSS Custom Properties for Light/Dark Mode */
.firefox-section {
  --warning-bg: #fef3cd;
  --warning-border: #f59e0b;
  --warning-text: #92400e;
}

/* Dark Mode Variables */
.firefox-sectiondark-mode {
  --warning-bg: #451a03;
  --warning-border: #f59e0b;
  --warning-text: #fbbf24;
}

/* Fallback Warning */
.fallback-warning {
  background: var(--warning-bg);
  border: 2px solid var(--warning-border);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  max-width: 600px;
  transition: all 0.3s ease;
  position: fixed;
  top: 30%;
  left: 50%;
  z-index: 1000;
  transform: translate(-50%, -50%);
}

.warning-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.warning-text {
  color: var(--warning-text);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s ease;
}

.company-logo {
  width: 80px;
  border-radius: 12px;
  margin-bottom: 24px;
  display: flex;
  color: #cbd5e0;
  font-weight: 600;
}

.company-logo img {
  max-height: 60px;
  object-fit: contain;
}

.card-header h3 {
  color: white;
  margin-bottom: 8px;
  line-height: 1.3;
}

.industry-tag {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
*/


/* Responsive Design */
@media (max-width: 1024px) {
  .fallback-warning {
    padding: 14px 18px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {

  .fallback-warning {
    padding: 12px 16px;
    margin-top: 18px;
    margin-bottom: 18px;
    gap: 8px;
  }

  .warning-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .fallback-warning {
    padding: 10px 14px;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .warning-text {
    font-size: 12px;
  }
}
