* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.container{
    margin-top: 30px;
    margin-bottom: 30px;
    line-height: 1.9;
}

.authors, .publication-date {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.article-link {
    color:#007878 !important;
}

.authors {
    font-weight: bold;
}

.date {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.alpha-list,.table-list {
    list-style-type: lower-alpha;
    padding-left: 1.5rem;
}

.alpha-list li::marker,.main-list li::marker {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 26px;
}

.main-list, .secondary-list {
    padding-left: 1.5rem;
}

.table-list li::marker {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: #666;
}

.date-value {
    font-weight: normal;
}

.page-title {
    max-width: 75%;
    text-align: left;
    font-size: 26px;
    font-weight: 700;
    padding: 30px 0px 0px;
    word-wrap: break-word;
    line-height: 1.6;
}

.section {
    padding: 30px 0px;
}

.section .article-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    line-height: 26px;
}

.list-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 26px;
}

.section-desc {
    font-size: 16px;
    color: #666;
}

.sidebar {
    position: sticky;
    top: 68px;
    height: fit-content;
    background: #f8f9fa;
    padding: 20px 20px 0px;
    border-radius: 3px;
    border: 1px solid #ddd;
    width: fit-content;
    text-wrap-mode: nowrap;
}

.sidebar h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    text-wrap: wrap;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li a {
    text-decoration: none;
    color: #666;
    font-size: 16px;
    transition: color 0.3s;
    padding: 5px;
    cursor: pointer;
}

.sidebar ul li a:hover {
    color: black;
    font-weight: 600;
}

.sidebar ul li.active a {
    font-weight: bold;
    color: #666;
    position: relative;
    text-decoration: underline;
}

.sidebar ul li.active a::before {
    position: absolute;
    left: -15px;
    color: #666;
    font-size: 14px;
}

@media (max-width: 1200px) {
    .sidebar {
        text-wrap-mode: wrap;
    }
}

@media (max-width: 767px) {
    .page-title {
        max-width: 100%;
        padding: 20px 0px 0px;
    }
    .container {
        padding: 0px 30px 30px;
    }
    .row {
        flex-direction: column;
    }

    .sidebar {
        display: none;
    }
}

/* Temporary fix for header */
@media only screen and (min-width: 767px) and (max-width: 1199px) {
    .container {
    margin-top: 90px;
    }
}
.centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
.article-table {
    border: 1px solid #DEE2E6;
    background: #FFF;
    border-collapse: collapse;
    width: 100%;
}

.article-table th {
    border: 1px solid #DEE2E6;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.5px;
    text-align: left;
    padding: 12px;
}

.article-table td {
    border: 1px solid #DEE2E6;
    color: var(--graphite-colors-70, #4D4D4D);
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.5px;
    padding: 12px;
}

@media only screen and (max-width: 1919px) {
    .page-title {
      font-size: 20px;
    } 

    .section .article-section-title, .sidebar h3, .section .article-section-title {
        font-size: 18px;
    }

    .publication-date,.section-desc,.sidebar ul li a {
       font-size: 14px;
    }
}