.advisories-list-main-wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
    box-sizing: border-box;
    overflow-x: auto;
    padding-top: 20px;
}



.public-vuln-main-title{
    width: 100%;
    box-sizing: border-box;
    padding-left: 20px;
}

.advisories-list-content-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding:  0 20px 0 20px;
    box-sizing: border-box;
    overflow-x: auto;
}

.top-blind {
    z-index: 5;
    position: absolute;
    background-color: #111111;
    height: 10px;
    width: calc(100% - 40px);
}

table {
    background-color: #111111;
    border-collapse: collapse;
    scroll-padding-top: 50px;
    max-width: 1200px;
}

table::-webkit-scrollbar {
    display: none;
}

thead > tr {
    background-color: #111111;
    position: sticky;
    top: 0; /* Don't forget this, required for the stickiness */
    box-shadow: 0 3px 0 0 #666666; /* Instead of bottom-border since border-collapse destroys borders of sticky elements */
    -webkit-box-shadow: 0 3px 0 0 #666666; /* Instead of bottom-border since border-collapse destroys borders of sticky elements */
    height: 30px;
}

tr {
    border-bottom: 1px solid #666666;
    background-color: #111111;
}

tr > td {
    /*border-width: 0;*/
    border-left: #111111 solid 1px;
    border-right: #111111 solid 1px;
}

tr:last-child > td {
    border-bottom: 50px solid #111111;
}

.versions-td {
    max-width: 200px;
}

.references-td {
    max-width: 400px;
    overflow-wrap: anywhere;
}

tr.highlighted {
    scroll-snap-align: end;
    background-color: #666666;
    line-break: anywhere;
    word-break: break-all;
}
tr.highlighted > td {
    border-width: 0;
}


.content-td {}
.content-td > p {
    padding-top: 0;
}

.protected-span {
    white-space: nowrap;
}

/* The animation code *//*
@keyframes highlightFreshLoad {
    0%   {}
    10%  {}
    100% {}
}

.highlighted {
    animation-name: highlightFreshLoad;
    animation-duration: 2s;
    box-sizing: border-box;
}
*/