:root {
  /* Primary Palette - Creamy Rich Tones */
  --primary: #D4A574;
  --primary-light: #E8C9A5;
  --primary-dark: #B8905E;
  
  /* Accent Colors - Rich Multi-color */
  --accent-green: #7FBA7A;
  --accent-blue: #6BA8D9;
  --accent-purple: #9B7FC8;
  --accent-orange: #E89F5B;
  --accent-red: #E07B7B;
  
  /* Background - Smooth Creamy */
  --bg-primary: #FAF8F5;
  --bg-secondary: #F4F0EB;
  --bg-card: #FFFFFF;
  --bg-hover: #EDE7E0;
  
  /* Text */
  --text-primary: #3C3C3C;
  --text-secondary: #7A7A7A;
  --text-muted: #A8A8A8;
  
  /* Status Colors */
  --status-running: #6BA8D9;
  --status-completed: #7FBA7A;
  --status-failed: #E07B7B;
  --status-stopped: #A8A8A8;
  
  /* Shadows & Borders */
  --shadow-sm: 0 2px 8px rgba(212, 165, 116, 0.1);
  --shadow-md: 0 4px 16px rgba(212, 165, 116, 0.15);
  --shadow-lg: 0 8px 24px rgba(212, 165, 116, 0.2);
  --border-radius: 12px;
  --border-color: #E8D9CC;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.navbar {
  background: var(--bg-card);
  border-bottom: 2px solid var(--border-color);
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: var(--transition-smooth);
}

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

[data-theme="dark"] {
  --bg-primary: #2C2C2C;
  --bg-secondary: #3C3C3C;
  --bg-card: #4A4A4A;
  --text-primary: #F4F0EB;
  --text-secondary: #C8C8C8;
  --text-muted: #999999;
  --border-color: #555555;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
}
