/* Our Custom Dark Theme */
[data-bs-theme="dark"] {
    --bs-body-bg: #121212;
    --bs-body-color: #ffffff;
    --bs-primary: #bb86fc; /* A soft purple */
    --bs-card-bg: #1e1e1e;
  }

  /* Our Custom "Retro" Theme */
  [data-bs-theme="retro"] {
    --bs-body-bg: #f4ecd8;
    --bs-body-color: #5d4037;
    --bs-primary: #e67e22; /* Burnt Orange */
    --bs-border-radius: 0px; /* Sharp corners! */
  }

  /* Smooth transitions for the whole page */
  body {
    transition: background-color 0.3s, color 0.3s;
  }

    [data-bs-theme="dark"].nav-item .nav-link {
        color: white;  
}

[data-bs-theme="dark"] main {
    /* background-image: linear-gradient(60deg, #29323c 0%, #485563 100%); */
    /* background-image: radial-gradient( circle farthest-corner at 50% 52.5%,  rgba(14,53,92,1) 0%, rgba(16,14,72,1) 90% ); */
    background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(28,38,47,1) 0%, rgba(37,47,57,1) 90% );
}

thead.dashboard-table {
    background: #F4F4F4;
}