:root {
  --nb-background: #f7f3e9;
  --nb-surface: #fffdf7;
  --nb-primary: #111111;
  --nb-secondary: #2d7ff9;
  --nb-accent: #ffd24d;
  --nb-text: #1a1a1a;
  --nb-text-muted: #4a4a4a;
  --nb-border-thin: 2px solid #111111;
  --nb-border-medium: 3px solid #111111;
}

body {
  background: var(--nb-background) !important;
  color: var(--nb-text) !important;
}

.compact-header,
.header {
  background: #fffdf7 !important;
  border-bottom: 3px solid #111111 !important;
  box-shadow: 6px 6px 0 #111111 !important;
}

.bnb-card,
.bnb-pricing-card,
.help-card,
.dashboard-welcome-card,
.settings-section,
.widget-configuration-section,
.widget-embed-code-section,
.sources-upload-section,
.sources-list-section {
  background: #fff !important;
  border: 2px solid #111111 !important;
  box-shadow: 5px 5px 0 #111111 !important;
}

.bnb-btn,
.btn-help,
.btn-feedback,
.widget-action-btn,
.settings-btn,
.sources-btn-primary {
  border: 2px solid #111111 !important;
  box-shadow: 3px 3px 0 #111111 !important;
}

.bnb-btn-primary,
.widget-action-btn.primary,
.sources-btn-primary {
  background: #2d7ff9 !important;
  color: #ffffff !important;
}

.bnb-btn-secondary,
.widget-action-btn.secondary,
.btn-help,
.btn-feedback {
  background: #ffd24d !important;
  color: #111111 !important;
}

/* Container consistency */
.container,
.neo-landing,
.landing-page,
.bnb-section {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 1rem !important;
  box-sizing: border-box !important;
}

/* Typography consistency */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  color: var(--nb-text) !important;
}

body {
  font-family: 'Inter', sans-serif !important;
  line-height: 1.6 !important;
}

/* Card consistency */
.neo-card,
.bnb-card,
.dashboard-card,
.help-card {
  border-radius: 12px !important;
  border: 2px solid var(--nb-primary) !important;
  background: var(--nb-surface) !important;
  padding: 1.5rem !important;
  box-shadow: 5px 5px 0 var(--nb-primary) !important;
  margin-bottom: 1rem !important;
}

/* Button consistency */
.bnb-btn,
.btn-help,
.btn-feedback,
.widget-action-btn {
  border-radius: 8px !important;
  padding: 0.75rem 1.5rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
  display: inline-block !important;
  text-align: center !important;
}

.bnb-btn:hover,
.btn-help:hover,
.btn-feedback:hover,
.widget-action-btn:hover {
  transform: translate(-2px, -2px) !important;
  box-shadow: 5px 5px 0 var(--nb-primary) !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .container,
  .neo-landing,
  .landing-page,
  .bnb-section {
    padding: 0 0.75rem !important;
  }
  
  .neo-card,
  .bnb-card,
  .dashboard-card,
  .help-card {
    padding: 1rem !important;
  }
  
  h1 {
    font-size: 1.75rem !important;
  }
  
  h2 {
    font-size: 1.5rem !important;
  }
}

@media (max-width: 480px) {
  .container,
  .neo-landing,
  .landing-page,
  .bnb-section {
    padding: 0 0.5rem !important;
  }
  
  .bnb-btn,
  .btn-help,
  .btn-feedback,
  .widget-action-btn {
    padding: 0.6rem 1.2rem !important;
    width: 100% !important;
    max-width: 280px !important;
  }
}

/* Dashboard user welcome styling */
.user-welcome-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  background: #f8f8f8;
  border-radius: 6px;
  border: 2px solid #000;
  font-size: 0.75rem;
  font-weight: 500;
  color: #000;
}

.user-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #000;
}

.user-name {
  font-weight: 600;
}
