html {
    scroll-padding-top: 5rem;
}
body{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
a{
    text-decoration:none;
}
.header {
    position: sticky;
    top: 0;
    height: 90px;
    background: #FFFFFF;
    color: #304F72;
    display: flex;
    justify-content: center;
    align-items:center;
    z-index:1;
}
.header-menu {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dropbtn {
    font-size: 1em;
    font-weight: 700;
    color: #304F72;
    font-family: Arial, sans-serif;
    background: none;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 4px solid transparent;
    height: 90px;
    padding: 0 1em;
    align-items:start;
}
.dropbtnclicked {
    background-color: #E7EEF6;
    border-bottom: 4px solid #304F72;
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 90px;
    background-color: #FFF;
    min-width: 203px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
    .dropdown-content a:hover {
        background-color: #E7EEF6;
    }
.show {
    display: block;
}
.hide {
    display: none;
}
#release-title-section {
    height:150px;
    background: #304F72;
    color:#FFFFFF;
    display:flex;
    flex-direction:column;
    align-items:center;
}
#tabs-container {
    position: absolute;
    top: 193px;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.release-title{
    width:80%;
    font-size:1.5em;
    margin-bottom:0;
}
.release-subtitle{
    width:80%;
    margin-bottom:1.5em;
}
.sprint-title{
    display:inline;
    font-size:1.5em;
    font-weight:700;
}
.tabs {
    width: 80%;
    display:flex;
    flex-direction: row;
}
.tab, .tab-inactive {
    border: 1px solid #C8D3E1;
    padding: 14px 26px;
    font-weight:700;
    border-top-left-radius:15px;
    border-top-right-radius:15px;
    border-bottom:none;
}
.tab {
    background-color: #F1F3F6;
    color: #304F72;
}
.tab-inactive {
    background-color: #DFE3E7;
        color: #92939E;
}
    .tab-inactive:hover {
        background-color: #F1F3F6;
        color: #304F72;
    }
.quick-links {
    position: sticky;
    top: 90px;
    color: #92939E;
    background: #F1F3F6;
    font-weight: 700;
    box-shadow: 0 0 15px #00000040;
    display: flex;
    justify-content: center;
    z-index:0;
}
.link-menu {
    width:80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap:wrap;
}
.link-menu a{
    color: #304F72;
    text-decoration: none;
    padding: 0 .5em;
}
    .link-menu a:hover {
        text-decoration: underline;
    }

    .link-menu p {
        padding: 0 .5em;
    }
.subheader-metrics {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666666;
    font-weight:700;
    font-size:.9em;
}
    .subheader-metrics a {
        font-weight:400;
        text-decoration: none;
        color: #304F72;
    }
    .subheader-metrics a:hover {
        text-decoration: underline;
    }
.metrics-header {
    font-size: calc(.7rem + .9vw);
}
.mission {
    padding: 1em 0;
    color: #304F72;
}
.mission-header {
    display:flex;
    align-items:center;
}
.mission-header h4 {
    display: inline;
}
    .mission p {
        width: 90%;
        margin: auto;
    }
.container {
    width: 80%;
    max-width: 1200px;
    margin: 30px auto;
}
.container-notext {
    width: 80%;
    max-width: 1200px;
    margin: 30px auto;
    height: 70px;
}
.background-stripes {
    padding-top:50px;
    padding-bottom:80px;
    background-color: #E8EEF6;
}
.background-stripes:nth-of-type(odd){
    background-color:#FFFFFF;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}
h1 {
    color: #2c3e50;
    text-align: center;
    font-size: calc(.7rem + 1.5vw);
}
h2 {
    color: #375a7f;
    border-bottom: 2px solid #375a7f;
    padding-bottom: 5px;
    font-size: calc(.7rem + .9vw);
}
h3 {
    font-size: calc(.7rem + .6vw);
    margin-bottom:0;
}
h4 {
    font-size: calc(.7rem + .6vw);
    color: #304F72;
    padding-bottom: 5px;
}
h5 {
    margin-bottom: 10px;
    font-size: calc(.7rem + .9vw);
}
.subheader{
    font-weight:500;
    font-style:italic;
    margin-top:0;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

table tr:last-child td:first-child {
    border-bottom-left-radius: 15px;
    border-left: none;
    border-bottom: none;
}

table tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
    border-right:none;
    border-bottom:none;
}
thead th {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-color: #304F72;
    color: #FFFFFF;
}
th, td {
    padding: 10px;
    text-align: left;
    font-size: 14px;
}
    td div {
        width: min-content;
        padding: 5px 10px;
        border-radius: 36px;
        margin-left:-10px;
    }
tbody tr:nth-child(even) td{
    background-color: #F4F4F4;
}
tbody tr:nth-child(odd) td{
    background-color: #FFFFFF;
}
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #375a7f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px 0;
    text-align: center;
}
.footer {
    padding-top: 20px;
    padding-bottom:10px;
    font-size: 0.9em;
    background-color: #304F72;
    color: #FFF;
    margin:auto;
}
    .footer h2 {
        color: #FFF;
        border-bottom: 2px solid #FFF;
    }
.logo-container {
    margin-bottom: 20px;
}
.version-header {
    background-color: #f7f9fc;
    font-weight: bold;
    text-align: left;
    padding: 10px;
    border-bottom: 3px solid #375a7f;
}
/* Adjusted column widths */
.column-impacted-area {
    width: 15%;
}
.column-issue-type {
    width: 12%;
}
.column-issue-key {
    width: 12%;
}
.column-summary {
    width: 20%;
}
.column-project {
    width: 10%;
}
.column-release-notes {
    width: 31%;
}
.metrics{
    width:100%
}
.home{
    text-decoration: none;
    font-weight: 500;
    text-shadow:2px 2px 3px #375a7f; 
    color:#555;
}
.home:hover{
    text-decoration: underline;
}
.container-nonavbar {
    width: 80%;
    max-width: 1200px;
    margin: 0px auto;
}

.container input[type=text] {
    padding-left: 32px;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    margin-top: 8px;
    margin-right: 16px;
    font-size: 16px;
    height:40px;
    width:446px;
    background-image: url("../images/search-icon.svg");
    background-position-x: 8px;
    background-position-y: 50%;
    background-repeat: no-repeat
}

.back-button {
    border: 2px solid #304F72;
    border-radius: 25px;
    padding: 10px 35px;
    background-color: #FFFFFF;
    color: #304F72;
    font-weight: 600;
    font-size:14px;
    margin-top:-30px;
}

    .back-button:hover {
        background-color: #F1F3F6;
    }

.accordion {
    background-color: #FFFFFF;
    color: #304F72;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    font-size: 24px;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    outline: none;
    border: 2px solid transparent;
}

    .accordion:hover {
        border: 2px solid #ccc;
    }

.accordion:after {
    content: '\23F7';
    color: #777;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\23F6";
}

.panel {
    background-color: #F4F4F4;
    border-radius: 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel a {
    background-color: #FFFFFF;
    text-align: left;
    border: none;
    border-radius: 4px;
    color: black;
    padding: 12px 16px;
    margin: 10px;
    text-decoration: none;
    display: block;
    transition: background-color 0.4s;
}

    .panel a:hover {
        background-color: #E8EEF6;
    }
