/* Light Mode (Default) */
:root {
  --background-color: #ffffff;
  --text-color: #000000;
  --text-color2: #f7fafc;
  --btn-color: #ff385c;
  --font-family-base: 'Nunito';
  --border-gray: #808080;
  --filter-select-gradient: linear-gradient(to bottom, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}

/* Dark Mode */
[data-mode="dark"] {
  --background-color: #1a202c;
  --text-color: #f7fafc;
  --text-color2: #000000;
  --font-family-base: 'Nunito';
  --border-gray: #808080;
  --filter-select-gradient: linear-gradient(to bottom, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}