/* Extracted from app.css to keep file-size limits compliant */

/* ═══════════════════════════════════════════════════════════════
   Tooltip & Help System
   ═══════════════════════════════════════════════════════════════ */

/* Info Button */
.info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: help;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  padding: 2px;
  vertical-align: middle;
  margin-left: 4px;
}

.info-btn:hover {
  color: var(--brand);
  background: rgba(255,249,71, 0.1);
  transform: scale(1.1);
}

.info-btn-sm {
  width: 18px;
  height: 18px;
}

.info-btn-md {
  width: 22px;
  height: 22px;
}

.info-btn svg {
  width: 100%;
  height: 100%;
}

/* Help Text (inline) */
.help-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 6px;
  display: block;
}

.help-text-inline {
  display: inline;
  margin-left: 4px;
}

/* Info Card (for detailed explanations) */
.info-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(124, 58, 237, 0.04) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin: 16px 0;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.info-card-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-md);
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--info);
  flex-shrink: 0;
}

.info-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.info-card-body {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.info-card-body p {
  margin: 0 0 10px 0;
}

.info-card-body p:last-child {
  margin-bottom: 0;
}

.info-card-body ul {
  margin: 8px 0;
  padding-left: 20px;
}

.info-card-body li {
  margin: 4px 0;
}

/* Section Header with Info */
.section-header-with-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.section-header-with-info h3 {
  margin: 0;
}

/* Feature Highlight Box */
.feature-highlight {
  background: linear-gradient(135deg, rgba(255,249,71, 0.08) 0%, rgba(255,249,71, 0.02) 100%);
  border: 1px solid rgba(255,249,71, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin: 20px 0;
}

.feature-highlight-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.feature-highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255,249,71, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}

.feature-highlight-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.feature-highlight-body {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-highlight-benefits {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
}

.feature-highlight-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin: 6px 0;
}

.feature-highlight-benefits li::before {
  content: "✓";
  color: var(--success);
  font-weight: 600;
  flex-shrink: 0;
}

/* Label with Help */
.label-with-help {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Tooltip animation enhancements */
.br-tooltip {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
