/*   
      * {
        box-sizing: border-box;
      }

      html,
      body {
        margin: 0;
        padding: 0;
        scroll-behavior: smooth;
        font-family: Arial, sans-serif;
        color: #090b0e;
      }

      .container {
        display: flex;
        height: 100vh;
        overflow: hidden;
      } */

      /* .sidebar {
        flex: 0 0 250px;
        background: #f0f0f0;
        padding: 20px;
        overflow-y: auto;
        position: sticky;
        top: 0;
        height: 100vh;
      } */
/* ======================================= */
/* == Sticky ToC Single Project Styles  == */
/* ======================================= */

/* The sidebar navigation column */
.sidebar-toc {
    position: sticky;
    top: 120px; /* Adjust based on your header's height */
    align-self: flex-start; /* Important for sticky to work correctly in flex/grid */
}

/* Style the nav list */
.sidebar-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-toc li {
    margin-bottom: 8px;
    transition: all 0.2s ease-in-out;
}

.sidebar-toc li a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    color: #333;
    display: block;
    padding: 10px 15px;
    border-radius: 50px; /* Makes it pill-shaped */
    transition: all 0.2s;
}

/* The active state when a link is selected or scrolled to */
.sidebar-toc li.active {
    background-color: #e80339; /* Your primary red color */
}

.sidebar-toc li.active a {
    color: white;
    font-weight: bold;
}

/* The right-hand content column */
.content-sections section {
    padding-bottom: 60px; /* Space between sections */
    /* padding-top: 20px; */
    border-bottom: 1px solid #eee;
}
.content-sections section:last-child {
    border-bottom: none;
    padding-bottom: 20px;
}

.content-sections h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.red-button {
    display: inline-block;
    background-color: #e80339;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.red-button:hover {
    background-color: #c7022f;
    color: white;
}