/*
ThreadMuse Vendor Portal Styles - AUTHENTIC BRANDING
Complete styling matching the main ThreadMuse app design system
*/

/* AUTHENTIC ThreadMuse Fonts - Custom + Google Fallbacks */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ThreadMuse Custom Fonts - AUTHENTIC */
@font-face {
  font-family: 'Mustard';
  src: url('/wp-content/uploads/fonts/Mustard-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mustard';
  src: url('/wp-content/uploads/fonts/Mustard-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Adobe Heiti Std';
  src: url('/wp-content/uploads/fonts/Adobe-Heiti-Std-R.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Raleway Local';
  src: url('/wp-content/uploads/fonts/Raleway-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Raleway Local';
  src: url('/wp-content/uploads/fonts/Raleway-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Raleway Local';
  src: url('/wp-content/uploads/fonts/Raleway-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* AUTHENTIC THREADMUSE BRAND COLORS */
:root {
    /* Primary Brand Colors - AUTHENTIC */
    --color-primary: #B9A037;          /* Chartreuse - Primary accent, CTAs, energy points */
    --color-primary-dark: #9A8A2E;     /* Darker Chartreuse */
    --color-primary-light: #D4C267;    /* Lighter Chartreuse */
    
    /* Secondary Brand Colors - AUTHENTIC */
    --color-secondary: #1D3C28;        /* Emerald - Headers, primary text, grounding elements */
    --color-secondary-light: #2A5A3A;  /* Lighter Emerald */
    
    /* Supporting Colors - AUTHENTIC */
    --color-pale-lime: #E1CD96;        /* Pale Lime - Secondary accents, subtle highlights */
    --color-butter: #FAEBD2;           /* Butter - Backgrounds, soft surfaces */
    --color-sky-blue: #B9A037;         /* Sky Blue - Supporting accent, notifications */
    
    /* Background Colors - AUTHENTIC */
    --color-background: #FAEBD2;       /* Butter - Primary background */
    --color-background-light: #ffffff; /* White - Card backgrounds */
    --color-background-dark: #1D3C28;  /* Emerald - Dark backgrounds */
    
    /* Text Colors - AUTHENTIC */
    --color-text-primary: #1D3C28;     /* Emerald - Primary text */
    --color-text-secondary: #5A6B5D;   /* Medium Gray */
    --color-text-light: #9CA3AF;       /* Light Gray */
    
    /* Status Colors */
    --color-error: #ef4444;            /* Red */
    --color-success: #10b981;          /* Green */
    --color-warning: #f59e0b;          /* Amber */
    --color-info: #3b82f6;             /* Blue */
    
    /* UI Colors - AUTHENTIC */
    --color-border: #E1CD96;           /* Pale Lime - Light borders */
    --color-border-dark: #B9A037;      /* Chartreuse - Strong borders */
    --color-shadow: rgba(29, 60, 40, 0.08); /* Emerald shadow */
    
    /* Design System - AUTHENTIC */
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 2px 0 rgba(29, 60, 40, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(29, 60, 40, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(29, 60, 40, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(29, 60, 40, 0.15);
    
    /* Legacy variable names for compatibility */
    --threadmuse-primary: var(--color-primary);
    --threadmuse-secondary: var(--color-secondary);
    --threadmuse-accent: var(--color-primary);
    --threadmuse-light: var(--color-butter);
    --threadmuse-cream: var(--color-background-light);
    --threadmuse-gold: var(--color-pale-lime);
    --threadmuse-text: var(--color-text-primary);
    --threadmuse-white: var(--color-background-light);
    --threadmuse-success: var(--color-success);
    --threadmuse-warning: var(--color-warning);
    --threadmuse-danger: var(--color-error);
    --threadmuse-info: var(--color-info);
}

/* ============================================== 
   AUTHENTIC THREADMUSE GLOBAL BRAND SYSTEM
   ============================================== */

/* Global Styles - Matching Main App */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Raleway', sans-serif;
  background: var(--color-background);
  color: var(--color-text-primary);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Global Typography Reset - Matching Main App */
h1, h2, h3, h4, h5, h6, p, span, div, a, button, input, label {
  margin: 0;
  padding: 0;
}

/* ============================================== 
   AUTHENTIC THREADMUSE TYPOGRAPHY SYSTEM
   ============================================== */

/* Primary Display Font - Mustard with Dancing Script Fallback */
h1, .display-font, .brand-heading {
  font-family: 'Mustard', 'Dancing Script', cursive;
  font-weight: 500;
  font-size: 2.5rem;
  color: var(--color-text-primary);
  line-height: 1.2;
}

/* Secondary Heading - Libre Baskerville */
h2, .secondary-heading {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--color-text-primary);
  line-height: 1.3;
}

/* Subheading - Adobe Heiti with 180% tracking */
h3, .subheading, .subheading-font {
  font-family: 'Adobe Heiti Std', 'Raleway Local', 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  line-height: 1.4;
}

/* Smaller headings - Raleway */
h4, h5, h6, .small-heading {
  font-family: 'Raleway Local', 'Raleway', sans-serif;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.4;
}

/* Body Text - Raleway */
p, .body-text, .body-font {
  font-family: 'Raleway Local', 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-primary);
}

/* Navigation Text */
.nav-text {
  font-family: 'Raleway Local', 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

/* Brand Typography Variations - AUTHENTIC */
.brand-welcome {
  font-family: 'Mustard', 'Dancing Script', cursive;
  font-weight: 500;
  font-size: 2.2rem;
  color: var(--color-secondary);
  line-height: 1.2;
}

.brand-tagline {
  font-family: 'Adobe Heiti Std', 'Raleway Local', 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
  color: var(--color-secondary);
}

.brand-section-title {
  font-family: 'Mustard', 'Dancing Script', cursive;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 1rem;
}

/* Button Text */
.button-text {
  font-family: 'Raleway Local', 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Stats/Number Display */
.stats-number {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 2rem;
  color: var(--color-text-primary);
  line-height: 1;
}

.stats-label {
  font-family: 'Raleway Local', 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
}

/* Form Text - AUTHENTIC */
.form-label {
  font-family: 'Raleway Local', 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.form-input {
  font-family: 'Raleway Local', 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-text-primary);
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-pale-lime);
  border-radius: 12px;
  background: var(--color-background-light);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(185, 160, 55, 0.1);
}

/* Utility Classes */
.cursive {
  font-family: 'Mustard', 'Dancing Script', cursive;
}

/* Global Vendor Portal Styles */
.threadmuse-vendor-portal,
.threadmuse-vendor-dashboard,
.threadmuse-pattern-uploader,
.threadmuse-thread-inventory,
.threadmuse-vendor-products,
.threadmuse-sales-analytics,
.threadmuse-order-manager,
.threadmuse-vendor-registration {
    font-family: 'Raleway', sans-serif;
    color: var(--color-text-primary);
    background: var(--color-background);
    padding: 0;
    min-height: 100vh;
    line-height: 1.6;
}

/* ============================================== 
   AUTHENTIC THREADMUSE PAGE LAYOUTS
   ============================================== */

/* Page Header - AUTHENTIC ThreadMuse Ticking Stripes */
.page-header {
  /* Default: Sky Blue & Butter 10px Ticking Stripes with Emerald Text */
  background: repeating-linear-gradient(
    90deg,
    var(--color-primary) 0px,
    var(--color-primary) 10px,
    var(--color-butter) 10px,
    var(--color-butter) 20px
  );
  color: var(--color-secondary); /* Emerald text for readability */
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Ticking Stripes Overlay */
.bg-ticking-stripes {
  background: repeating-linear-gradient(90deg, var(--color-butter), var(--color-butter) 10px, var(--color-pale-lime) 10px, var(--color-pale-lime) 20px);
  opacity: 0.1;
}

.bg-ticking-stripes-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(90deg, var(--color-butter), var(--color-butter) 10px, var(--color-pale-lime) 10px, var(--color-pale-lime) 20px);
  opacity: 0.1;
  pointer-events: none;
}

.page-header-content {
  flex: 1;
  z-index: 2;
  position: relative;
}

.page-header-logo {
  width: 100px;
  height: 100px;
  z-index: 2;
  position: relative;
  object-fit: contain;
}

.page-content {
  background: var(--color-background);
  font-family: 'Raleway', sans-serif;
  min-height: 100vh;
}

.content-container {
  padding: 1.5rem;
  padding-bottom: 100px; /* Account for mobile nav */
}

/* Mobile-Optimized Container for better space utilization */
.mobile-optimized-container {
  padding: 1.5rem;
}

@media (max-width: 767px) {
  .mobile-optimized-container {
    padding: 0.75rem; /* Reduced padding on mobile for better space usage */
  }
  
  .content-container {
    padding: 0.75rem;
    padding-bottom: 100px;
  }
}

/* Legacy Headers for Backward Compatibility */
.vendor-header,
.uploader-header,
.inventory-header,
.products-header,
.analytics-header,
.orders-header,
.registration-header {
    /* Use page-header class instead */
    @extend .page-header;
}

/* AUTHENTIC ThreadMuse CARDS */

.brand-card {
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 3px solid var(--color-pale-lime);
  box-shadow: 0 20px 60px rgba(29, 60, 40, 0.12);
}

.brand-card-header {
  /* Default: Sky Blue & Butter 8px Ticking Stripes with Emerald Text */
  background: repeating-linear-gradient(
    90deg,
    var(--color-primary) 0px,
    var(--color-primary) 8px,
    var(--color-butter) 8px,
    var(--color-butter) 16px
  );
  color: var(--color-secondary); /* Emerald text for readability */
  padding: 1.5rem;
  border-bottom: 2px solid var(--color-pale-lime);
  text-align: center;
  border-radius: 24px 24px 0 0;
  margin: -1.5rem -1.5rem 1.5rem -1.5rem;
  position: relative;
}

/* Brand Card Header Ticking Stripe Variations */
.brand-card-header.header-sky-blue {
  background: repeating-linear-gradient(
    90deg,
    var(--color-primary) 0px,
    var(--color-primary) 8px,
    var(--color-butter) 8px,
    var(--color-butter) 16px
  );
  color: var(--color-secondary); /* Emerald text */
}

.brand-card-header.header-pale-lime {
  background: repeating-linear-gradient(
    90deg,
    var(--color-pale-lime) 0px,
    var(--color-pale-lime) 8px,
    var(--color-butter) 8px,
    var(--color-butter) 16px
  );
  color: var(--color-secondary); /* Emerald text */
}

.stats-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--color-pale-lime);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* AUTHENTIC THREADMUSE BUTTONS */

.btn-primary {
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(185, 160, 55, 0.3);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(185, 160, 55, 0.4);
  color: white;
}

.btn-secondary {
  background: var(--color-pale-lime);
  color: var(--color-secondary);
  border: 2px solid var(--color-primary);
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-1px);
}

.btn-emerald {
  background: var(--color-secondary);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-emerald:hover {
  background: var(--color-secondary-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-pale-lime);
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--color-butter);
  border-color: var(--color-primary);
}

/* ============================================== 
   AUTHENTIC THREADMUSE GRID LAYOUTS
   ============================================== */

/* GRID LAYOUTS - Matching Main App */
.brand-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.brand-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.brand-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .brand-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .brand-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .brand-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .content-container {
    padding: 2rem;
    padding-bottom: 100px;
  }
}

@media (min-width: 1024px) {
  .brand-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .brand-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Responsive Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Statistics Cards */
.vendor-stats-grid,
.analytics-overview .metric-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* AUTHENTIC ThreadMuse Cards */
.vendor-stat-card,
.metric-card {
    background: var(--color-background-light);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--color-pale-lime);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.vendor-stat-card:hover,
.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(29, 59, 40, 0.18);
}

/* NAVIGATION - Matching Main App */
.nav-item {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-item:hover {
  color: var(--color-primary);
}

.nav-item.active {
  color: var(--color-primary);
  font-weight: 600;
}

/* AUTHENTIC ThreadMuse Stats Numbers - Playfair Display */
.stat-value,
.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Legacy support for old classes */
.vendor-stat-card,
.metric-card {
    @extend .stats-card;
}

.threadmuse-button {
    @extend .btn-primary;
}

.threadmuse-button-secondary {
    @extend .btn-secondary;
}

/* AUTHENTIC ThreadMuse Stats Labels - Raleway */
.stat-label,
.metric-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stat-change,
.metric-change {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    display: inline-block;
}

.stat-change.positive,
.metric-change.positive {
    background: rgba(40, 167, 69, 0.1);
    color: var(--threadmuse-success);
}

.stat-change.negative,
.metric-change.negative {
    background: rgba(220, 53, 69, 0.1);
    color: var(--threadmuse-danger);
}

/* AUTHENTIC ThreadMuse Buttons */
.threadmuse-button {
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(185, 160, 55, 0.3);
}

.threadmuse-button:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(185, 160, 55, 0.4);
    color: white;
}

.threadmuse-button:active {
    transform: translateY(0);
}

.threadmuse-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.threadmuse-button-secondary {
    background: var(--color-pale-lime);
    color: var(--color-secondary);
    border: 2px solid var(--color-primary);
    box-shadow: 0 4px 16px rgba(225, 205, 150, 0.3);
}

.threadmuse-button-secondary:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(225, 205, 150, 0.4);
}

.threadmuse-button-danger {
    background: var(--threadmuse-danger);
    box-shadow: 0 4px 16px rgba(220, 53, 69, 0.3);
}

.threadmuse-button-danger:hover {
    background: #c82333;
    box-shadow: 0 8px 24px rgba(220, 53, 69, 0.4);
}

/* AUTHENTIC ThreadMuse Cards */
.vendor-quick-actions {
    background: var(--color-background-light);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--color-pale-lime);
}

.vendor-quick-actions h2 {
    margin: 0 0 1.5rem 0;
    color: var(--threadmuse-primary);
    font-size: 1.5rem;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* AUTHENTIC ThreadMuse Forms */
.pattern-upload-form,
.vendor-registration-form {
    background: var(--color-background-light);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--color-pale-lime);
    margin-bottom: 2rem;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* AUTHENTIC ThreadMuse Section Headings */
.form-section h2 {
    font-family: 'Dancing Script', cursive;
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--color-text-primary);
    text-align: center;
    margin: 0 0 1.5rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.half {
    width: 48%;
    display: inline-block;
    margin-right: 4%;
}

.form-group.half:nth-child(2n) {
    margin-right: 0;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    margin-bottom: 0;
    flex: 1;
}

/* AUTHENTIC ThreadMuse Form Labels */
label {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

/* AUTHENTIC ThreadMuse Form Inputs */
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-pale-lime);
    border-radius: var(--border-radius);
    background: var(--color-background-light);
    color: var(--color-text-primary);
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    box-sizing: border-box;
}

/* AUTHENTIC ThreadMuse Form Elements */
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-pale-lime);
  border-radius: 12px;
  background: var(--color-background-light);
  color: var(--color-text-primary);
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%235A6B5D' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 3rem;
}

/* AUTHENTIC ThreadMuse Form Focus States */
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-background-light);
    box-shadow: 0 0 0 3px rgba(185, 160, 55, 0.1);
}

/* FORMS - Match Main App Structure */
.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-row .form-group {
  margin-bottom: 0;
  flex: 1;
}

.form-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-pale-lime);
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section h2 {
  margin: 0 0 1.5rem 0;
  color: var(--color-text-primary);
  font-size: 1.3rem;
  font-weight: 600;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%235A6B5D' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
}

/* ============================================== 
   AUTHENTIC THREADMUSE UTILITY CLASSES
   ============================================== */

/* Text Colors */
.text-primary {
  color: var(--color-primary) !important;
}

.text-secondary {
  color: var(--color-secondary) !important;
}

.text-pale-lime {
  color: var(--color-pale-lime) !important;
}

.text-white {
  color: white !important;
}

.text-muted {
  color: var(--color-text-secondary) !important;
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

/* Background Colors */
.bg-brand-primary {
  background: var(--color-primary) !important;
}

.bg-brand-secondary {
  background: var(--color-secondary) !important;
}

.bg-brand-butter {
  background: var(--color-butter) !important;
}

.bg-brand-pale-lime {
  background: var(--color-pale-lime) !important;
}

/* Borders */
.border-primary {
  border-color: var(--color-primary) !important;
}

.border-secondary {
  border-color: var(--color-secondary) !important;
}

.border-pale-lime {
  border-color: var(--color-pale-lime) !important;
}

/* Shadows */
.shadow-brand {
  box-shadow: 0 10px 25px rgba(29, 60, 40, 0.1) !important;
}

.shadow-brand-lg {
  box-shadow: 0 20px 40px rgba(29, 60, 40, 0.15) !important;
}

/* Utility Classes */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z-1 {
  z-index: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.pointer-events-none {
  pointer-events: none;
}

/* AUTHENTIC ThreadMuse File Upload Areas */
.file-upload-area {
    border: 3px dashed var(--color-pale-lime);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    background: var(--color-butter);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 1.5rem;
}

.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: var(--color-primary);
    background: var(--color-background-light);
    transform: scale(1.02);
}

.file-upload-area.file-selected {
    border-color: var(--color-success);
    background: rgba(16, 185, 129, 0.05);
}

.upload-prompt {
    pointer-events: none;
}

.upload-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.upload-note {
    font-size: 0.85rem;
    color: var(--threadmuse-text);
    margin: 0.5rem 0 0 0;
}

/* AUTHENTIC ThreadMuse Tables */
.threadmuse-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border: 3px solid var(--color-pale-lime);
}

/* AUTHENTIC ThreadMuse Table Headers with Ticking Stripes */
.threadmuse-table th {
    background: repeating-linear-gradient(
        90deg,
        var(--color-primary) 0px,
        var(--color-primary) 8px,
        var(--color-butter) 8px,
        var(--color-butter) 16px
    );
    color: var(--color-secondary);
    padding: 1.25rem 1rem;
    text-align: left;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.threadmuse-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--color-pale-lime);
    color: var(--color-text-primary);
    vertical-align: middle;
    font-family: 'Raleway', sans-serif;
}

.threadmuse-table tr:last-child td {
    border-bottom: none;
}

.threadmuse-table tbody tr:hover {
    background: var(--color-butter);
}

/* Color Swatches */
.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Status Badges */
.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.status-badge.in-stock {
    background: rgba(40, 167, 69, 0.1);
    color: var(--threadmuse-success);
}

.status-badge.low-stock {
    background: rgba(255, 193, 7, 0.1);
    color: var(--threadmuse-warning);
}

.status-badge.out-of-stock {
    background: rgba(220, 53, 69, 0.1);
    color: var(--threadmuse-danger);
}

.status-badge.status-publish,
.status-badge.status-processing {
    background: rgba(40, 167, 69, 0.1);
    color: var(--threadmuse-success);
}

.status-badge.status-draft,
.status-badge.status-pending {
    background: rgba(255, 193, 7, 0.1);
    color: var(--threadmuse-warning);
}

.status-badge.status-cancelled {
    background: rgba(220, 53, 69, 0.1);
    color: var(--threadmuse-danger);
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--threadmuse-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(29, 59, 40, 0.08);
    border: 2px solid var(--threadmuse-gold);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(29, 59, 40, 0.15);
}

.product-image {
    height: 200px;
    background: var(--threadmuse-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image {
    font-size: 4rem;
    opacity: 0.3;
}

.product-info {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.product-info h3 {
    margin: 0 0 0.5rem 0;
    color: var(--threadmuse-primary);
    font-size: 1.2rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--threadmuse-accent);
    margin: 0.5rem 0;
}

.product-status {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.product-actions {
    padding: 1rem 1.5rem;
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product-actions a {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.edit-product {
    background: var(--threadmuse-info);
    color: var(--threadmuse-white);
}

.view-stats {
    background: var(--threadmuse-accent);
    color: var(--threadmuse-white);
}

.duplicate-product {
    background: var(--threadmuse-gold);
    color: var(--threadmuse-primary);
}

/* No Products State */
.no-products {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--threadmuse-white);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(29, 59, 40, 0.08);
    border: 2px solid var(--threadmuse-gold);
}

.no-products h2 {
    color: var(--threadmuse-primary);
    margin-bottom: 1rem;
}

/* Recent Activity */
.recent-activity {
    background: var(--threadmuse-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(29, 59, 40, 0.08);
    border: 2px solid var(--threadmuse-gold);
}

.recent-activity h2 {
    margin: 0 0 1.5rem 0;
    color: var(--threadmuse-primary);
}

.activity-feed .activity-item {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    color: var(--threadmuse-text);
}

.activity-feed .activity-item:last-child {
    border-bottom: none;
}

/* Benefit Cards */
.registration-benefits {
    margin: 3rem 0;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: var(--threadmuse-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(29, 59, 40, 0.08);
    border: 2px solid var(--threadmuse-gold);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(29, 59, 40, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--threadmuse-primary);
    margin: 0 0 1rem 0;
}

/* Checkbox Groups */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.checkbox-group label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-group input[type="checkbox"],
.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Modals */
.threadmuse-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: var(--threadmuse-white);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(29, 59, 40, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    margin: 0;
    color: var(--threadmuse-primary);
}

.close-modal {
    font-size: 2rem;
    cursor: pointer;
    color: var(--threadmuse-text);
    transition: color 0.2s ease;
}

.close-modal:hover {
    color: var(--threadmuse-danger);
}

.modal-actions {
    padding: 2rem;
    border-top: 1px solid #eee;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Login Notice */
.threadmuse-login-notice {
    text-align: center;
    padding: 3rem;
    background: var(--threadmuse-white);
    border-radius: 16px;
    border: 2px solid var(--threadmuse-gold);
    color: var(--threadmuse-text);
    font-size: 1.1rem;
}

/* Loading States */
.threadmuse-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--threadmuse-text);
}

.threadmuse-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--threadmuse-light);
    border-top: 3px solid var(--threadmuse-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Filters */
.inventory-filters,
.orders-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--threadmuse-white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(29, 59, 40, 0.05);
    border: 1px solid var(--threadmuse-gold);
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.inventory-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* Summary Cards */
.inventory-summary,
.summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.summary-card {
    background: var(--threadmuse-white);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(29, 59, 40, 0.08);
    border: 2px solid var(--threadmuse-gold);
}

.summary-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--threadmuse-primary);
    margin-bottom: 0.5rem;
}

.summary-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--threadmuse-text);
}

/* Action Buttons in Tables */
.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.action-buttons button {
    padding: 0.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.2rem;
}

.edit-thread {
    background: var(--threadmuse-info);
}

.delete-thread {
    background: var(--threadmuse-danger);
}

.order-actions {
    display: flex;
    gap: 0.5rem;
}

.order-actions button {
    padding: 0.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.view-order {
    background: var(--threadmuse-info);
    color: var(--threadmuse-white);
}

.ship-order {
    background: var(--threadmuse-success);
    color: var(--threadmuse-white);
}

.contact-customer {
    background: var(--threadmuse-accent);
    color: var(--threadmuse-white);
}

/* Thread Requirements */
.thread-requirements {
    background: var(--threadmuse-light);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.thread-requirement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--threadmuse-white);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 1px solid var(--threadmuse-gold);
}

/* Order Items */
.order-items {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.order-item {
    font-size: 0.9rem;
    color: var(--threadmuse-text);
}

/* Chart Containers */
.analytics-charts {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.chart-container {
    background: var(--threadmuse-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(29, 59, 40, 0.08);
    border: 2px solid var(--threadmuse-gold);
}

.chart-container h2 {
    margin: 0 0 1.5rem 0;
    color: var(--threadmuse-primary);
    font-size: 1.3rem;
}

.chart {
    height: 300px;
    background: var(--threadmuse-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--threadmuse-text);
}

/* Top Patterns */
.top-patterns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pattern-performance {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--threadmuse-light);
    border-radius: 8px;
    border: 1px solid var(--threadmuse-gold);
}

.pattern-name {
    font-weight: 600;
    color: var(--threadmuse-primary);
}

.pattern-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.sales-count {
    font-size: 0.9rem;
    color: var(--threadmuse-text);
}

.revenue {
    font-weight: 600;
    color: var(--threadmuse-accent);
}

/* ============================================== 
   RESPONSIVE DESIGN - MATCHING MAIN APP
   ============================================== */

/* Responsive Typography */
@media (max-width: 768px) {
  .brand-welcome {
    font-size: 1.8rem;
  }
  
  .brand-section-title {
    font-size: 1.3rem;
  }
  
  h1, .display-font, .brand-heading {
    font-size: 2rem;
  }
  
  h2, .secondary-heading {
    font-size: 1.5rem;
  }
  
  h3, .subheading, .subheading-font {
    font-size: 1.2rem;
  }
}

/* Mobile Optimizations */
@media (max-width: 767px) {
  /* Ensure content doesn't go under bottom nav */
  .main-content {
    padding-bottom: 80px;
  }
  
  /* Responsive text sizes */
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Responsive spacing */
  .page-header {
    padding: 1rem;
  }
  
  /* Touch-friendly buttons */
  button, .button {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Form inputs */
  input, select, textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

@media (max-width: 1024px) {
    .analytics-charts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .threadmuse-vendor-portal,
    .threadmuse-vendor-dashboard,
    .threadmuse-pattern-uploader,
    .threadmuse-thread-inventory,
    .threadmuse-vendor-products,
    .threadmuse-sales-analytics,
    .threadmuse-order-manager,
    .threadmuse-vendor-registration {
        padding: 0;
    }

    .vendor-header,
    .uploader-header,
    .inventory-header,
    .products-header,
    .analytics-header,
    .orders-header,
    .registration-header {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }

    .vendor-header h1,
    .uploader-header h1,
    .inventory-header h1,
    .products-header h1,
    .analytics-header h1,
    .orders-header h1,
    .registration-header h1 {
        font-size: 2rem;
    }

    .vendor-stats-grid,
    .analytics-overview .metric-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .vendor-stat-card,
    .metric-card {
        padding: 1.5rem 1rem;
    }

    .stat-value,
    .metric-value {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group.half {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .inventory-filters,
    .orders-filters {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-group {
        min-width: auto;
    }

    .threadmuse-table {
        font-size: 0.875rem;
    }

    .threadmuse-table th,
    .threadmuse-table td {
        padding: 0.875rem 0.5rem;
    }

    .modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }

    .modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }

    .modal-actions {
        padding: 1.5rem;
        flex-direction: column;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --threadmuse-text: #E1CD96;
        --threadmuse-light: #2D4C38;
        --threadmuse-cream: #1D3C28;
        --threadmuse-white: #0f1f15;
    }

    body.threadmuse-dark {
        background: #0a150d;
        color: var(--threadmuse-text);
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.4s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Input Validation States */
.form-input.error,
.form-textarea.error,
.form-select.error {
    border-color: var(--threadmuse-danger);
    background: rgba(220, 53, 69, 0.05);
}

.form-input.success,
.form-textarea.success,
.form-select.success {
    border-color: var(--threadmuse-success);
    background: rgba(40, 167, 69, 0.05);
}

.field-error {
    color: var(--threadmuse-danger);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

/* Notifications */
.threadmuse-notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 10001;
    max-width: 400px;
    animation: slideInRight 0.3s ease-out;
}

.threadmuse-notification.success {
    background: var(--threadmuse-success);
    color: var(--threadmuse-white);
}

.threadmuse-notification.error {
    background: var(--threadmuse-danger);
    color: var(--threadmuse-white);
}

.threadmuse-notification.warning {
    background: var(--threadmuse-warning);
    color: #000;
}

.threadmuse-notification.info {
    background: var(--threadmuse-info);
    color: var(--threadmuse-white);
}
