:root {
      --bg-color: #ffffff;
      --bgr-color: #0f172a;
      --text-color: #1f2937;

      --wbg-color: #000000;

      --shadow-color: rgba(0, 0, 0, 0.1);

      --theme-transition: background-color 0.3s ease, color 0.3s ease;

      --scroll-thumb: #a0aec0; /* gray-400 */
    }

.dark {
    --bg-color: #0f172a;
    --bgr-color: #0f172a;
    --text-color: #f1f5f9;

    --wbg-color: #ffffff;

    --shadow-color: rgba(247, 242, 242, 0.2); 

    --scroll-thumb: #4a5568; /* gray-700 */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    min-height: 100vh;
}

 .scrollbar-custom {
    scrollbar-width: thin;
    scrollbar-color: var(--scroll-thumb) transparent;
  }

  .scrollbar-custom::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }

  .scrollbar-custom::-webkit-scrollbar-track {
    background: transparent;
  }

  .scrollbar-custom::-webkit-scrollbar-thumb {
    background-color: var(--scroll-thumb);
    border-radius: 4px;
  }

