
.year1-requirements {
  margin: 0;
  padding-left: 1.5rem;       /* overall indent */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
  list-style-type: disc;      /* top-level bullet */
}

/* top-level item */
.year1-requirements > li {
  margin: 0.25em 0;
}

/* second-level lists: “Complete 1 of…”, etc. */
.year1-requirements > li > ul {
  margin: 0.15em 0 0.35em 1.25rem;
  padding-left: 1rem;
  list-style-type: circle;    /* open circle bullets */
}

/* third-level lists: individual course bullets */
.year1-requirements > li > ul > li > ul {
  margin: 0.1em 0 0.2em 1.25rem;
  padding-left: 1rem;
  list-style-type: square;    /* small square bullets */
}

/* a bit of vertical breathing room between nested items */
.year1-requirements li {
  margin-top: 0.1em;
  margin-bottom: 0.1em;
}

/* Course codes: blue, bold, link-like */
.year1-requirements .course-code {
  font-weight: 600;
  color: #1565c0;             /* UVic-ish blue; adjust to taste */
  text-decoration: underline;
}

/* Optional hover effect if you later make them <a> links */
.year1-requirements a.course-code:hover {
  text-decoration: none;
}

/* Track-changes styles */
.year1-requirements .track-removed {
    color: #c62828;                    /* red */
    text-decoration: line-through;
    background-color: #ffebee;         /* pale red/pink */
  }
  
  /* make the bullet red too */
  .year1-requirements .track-removed::marker {
    color: #c62828;
  }
  
  .year1-requirements .track-added {
    color: #0d47a1;                    /* dark blue */
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    background-color: #e3f2fd;         /* pale blue highlight */
  }
  
  /* optional: blue bullet for added items */
  .year1-requirements .track-added::marker {
    color: #0d47a1;
  }

  .kanban-board {
    /*     display: flex; */
        gap: 1rem;
        justify-content: center;
        align-items: flex-start;
        margin-top: 0.5rem;
        font-size: 1em; /* a bit smaller to fit more cards */
      } 

      .kanban-board a{
        /*     display: flex; */
            font-weight: 600; 
          } 

  .kanban-column {
/*     background: rgba(15, 23, 42, 0.9); dark slate */
/*     border-radius: 0.5rem; */
    padding: 0rem;
/*     min-width: 180px;
    max-width: 230px; */
/*     box-shadow: 0 4px 10px rgba(0,0,0,0.25); */
  }
  
  .kanban-column h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 2em;
/*     color: #e5e7eb; */
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  
  .kanban-card {
/*     background: #0b1120; */
    border-radius: 0.4rem;
    padding: 0.5rem 0.6rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
  }

  .kanban-card.todo{
    background: #a5a4e0CC;
  }

  .kanban-card.active{
    background: #ffb142CC;
  }

  .kanban-card.vote{
    background: #33d9b2CC;
  }

  .kanban-card.complete{
    background: #d1ccc0CC;
  }
  
  .kanban-card h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.5em;
/*     color: #f9fafb; */
  }
  
  .kanban-card p {
    margin: 0.1rem 0;
    font-size: 1em;
/*     color: #cbd5f5; */
  }
  
  .kanban-card .meta {
    margin-top: 0.25rem;
    font-size: 1em;
    opacity: 1;
      font-weight:800;
  }



:root {
  --panel_main: #DCE7FC;
  --grey: #F3F4F5;
  --blue: #DCE7FC;
  --green: #D6ECE1;
  --orange: #F8E3D0;
  --red: #F9E1E4;
}


/* Two side-by-side columns on a Reveal.js slide */
.reveal .two-cols {
  display: flex;
  gap: 2rem;            /* space between the columns */
  align-items: flex-start;
  justify-content: space-between;
  max-width:70vw;
}

/* Each direct child becomes a column */
.reveal .two-cols > div {
  flex: 1 1 0;
}

.text-col{
  flex: 1;text-align: left; font-size:1em;
}

.text-col :is(h1, h2, h3, h4, h5, h6, p) {
  line-height: 1.2em;
  margin: .4em;
}

.text-col :is(ul) {
  line-height: 1.2em;
  margin-top: .4em;
  margin-bottom: .4em;
  margin-left:2em;
}
