/* Light theme - Catppuccin Latte */
:root.light-theme {
  --base: #eff1f5;
  --mantle: #e6e9ef;
  --crust: #dce0e8;
  --surface0: #ccd0da;
  --surface1: #bcc0cc;
  --surface2: #acb0be;
  --overlay0: #6e7186;
  --overlay1: #626579;
  --text: #4c4f69;
  --subtext0: #5e6175;
  --subtext1: #5c5f77;
  --pink: #ea76cb;
  --mauve: #8839ef;
  --green: #40a02b;
  --blue: #1e66f5;
  --yellow: #df8e1d;
  --peach: #fe640b;
  --red: #d20f39;
  --teal: #179299;
  --lavender: #7287fd;
}

@keyframes pulse-dot-light {
  0%, 100% { box-shadow: 0 0 0 0 rgba(64, 160, 43, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(64, 160, 43, 0); }
}
.light-theme .status-dot {
  animation: pulse-dot-light 2s ease-in-out infinite;
}
