

/* Default theme (Theme 1) - Define your color variables here */
:root {
    --background: var(--black);
    --background2: var(--dark);
    --neutral-dark: var(--gray);
    --neutral-light: var(--white);
    --accent: var(--yellow); /* Example accent color for Theme 1 */
  }
  
  /* Theme 2 - Redefine the color variables */
  body.theme-2 {
    --background: #101820;
    --background2: #2C3540;
    --neutral-dark: #3A3A3A;
    --neutral-light: #A0A0A0;
    --accent: #C4A77D; /* Example accent color for Theme 2 */
  }
  
  /* Theme 3 - Redefine the color variables */
  body.theme-3 {
    --background: #0D1B2A;
    --background2: #1B263B;
    --neutral-dark: #415A77;
    --neutral-light: #778DA9;
    --accent: #E0E1DD; /* Example accent color for Theme 3 */
  }
  
  body.theme-4 {
    --background: #0D0D0C;
    --background2: #252626;
    --neutral-dark: #A6A6A6;
    --neutral-light: #F2F2F2;
    --accent: #BFBFBF; /* Example accent color for Theme 3 */
  }
  


  body {
    background-color: var(--background);
    color: var(--neutral-dark);
    transition: all 0.3s ease; /* Smooth transition */
  }







/* Theme Switcher Styles */
.theme-switcher {
    position: fixed;
    bottom: 0;
    left: 0;
    width: auto;
    background-color: #666;
    color: #eee;
    padding: var(--margin-xs) var(--margin-m);
    text-align: center;
    font-size: var(--fc-p);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    box-sizing: border-box;
    border: 1px solid #555;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1em;
    z-index: 1000; /* Ensure it's on top of other content */
  }
  
  .theme-buttons {
    display: flex;
    gap: 10px;
  }
  
  .theme-button {
    padding: var(--margin-xs) var(--margin-s);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: var(--fw-extrabold);
  }
  
  /* Style for Theme 1 button */
  #theme-1 {
    background-color:  var(--dark-purple);
    color: var(--xanthous);
    border: 2px solid var(--cool-gray);
  }
  
  /* Style for Theme 2 button */
  #theme-2 {
    background-color: #3A3A3A;
    color: #C4A77D;
    border: 2px solid #A0A0A0;

  }
  
  /* Style for Theme 3 button */
  #theme-3 {
    background-color: #415A77;
    color: #E0E1DD;
    border: 2px solid #778DA9;

  }

    /* Style for Theme 3 button */
    #theme-4 {
        background-color: #F2F2F2;
        color: #A6A6A6;
        border: 2px solid #F2F2F2;
    
      }