.pure-button-primary {
    background: rgb(100, 100, 251);
    color: white;
}

.btn-small {
    font-size: small;
    padding: 3px;
}

.pure-table {
    border: none;
    table-layout: fixed;
    width: 99vw;
    padding-right: 5px;
    min-width: 1000px;
    background: #1b1b41;
}

.pure-table td {
    border-left: none;
    padding-left: 4px;
    padding-right: 4px;
}

.pure-table th {
    border-left: none;
    padding-left: 4px;
    padding-right: 4px;
    color: white;
    font-size: x-large;
}


th,
td {
    padding: 0.25rem;
}


thead tr {
    background: #20204B;
    position: sticky;
    top: 0;
    box-shadow: 0 -3px 1px -1px rgb(0 0 0 / 80%) inset;
    text-align: center;
    height: 40px;
    z-index: 50;
}

.emptyheader {
    z-index: 10;

    width: 20%;
}

@media screen and (max-width: 1350px) {
    .emptyheader .hideable {
        display: none;
    }
}


.hoveredwrapper {
    position: fixed;
    box-shadow: 7px 7px 10px 10px #000;
    top: 0;
    left: 0;
    background: #20204b;
    z-index: 9999;
    width: 20%;
    padding-right: 20px;
    overflow-y: auto;
    max-height: 100%;
}

.hslink {
    margin-bottom: 0;
    padding-left: 10px;
}

.hslink h4 {
    margin-bottom: 0;
}

.hoveredwrapper .prediction {
    box-shadow: 0px 0px 10px 10px #1b1b41;
}

.frontier {
    background: #20204B;
}

.frontier td {
    position: sticky;
    background: #20204B;
    box-shadow: 0 -3px 1px -1px rgb(0 0 0 / 80%) inset;
    z-index: 100;
}

.frontier td:first-child {
    padding-left: 10px;
}

.frontier h3 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.table-graph {
    width: 100%;
    margin-right: 0;
}

.bottom {
    position: sticky;
    bottom: 0px;
    background: #20204B;
    z-index: 50;
    color: white;
}

.bottom .name-cell {
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    font-size: large;
}

.bottomheader {
    position: sticky;
    bottom: 0px;
    background: #20204b;
    z-index: 200;
}

.prediction {
    box-shadow: 0 4px 8px 0 rgba(100, 100, 251, 0.3);
    padding: 10px;
    transition: 0.3s;
    background: rgb(100, 100, 251);
    border-radius: 5px;
    cursor: pointer;
    margin-right: 5px;
    margin-left: 5px;
    margin-top: 15px;
    margin-bottom: 15px;
    height: 100%;
    width: 100%;
}

.prediction-cell {
    height: 1px;
    padding: 5px;
    position: relative;
}

.prediction-card p,
.prediction-card h4 {
    margin: 0;
    padding: 0;
    margin-bottom: 0px;
}

/* On mouse-over, add a deeper shadow */
.prediction:hover {
    box-shadow: 3px 16px 16px 3px rgba(0, 0, 0, 0.8);
    margin-left: -5px;
    margin-top: -5px;
    margin-bottom: 25px;
}

.prediction.popout {
    box-shadow: 3px 16px 16px 20px rgb(0 0 0 / 80%);
    margin-left: -5px;
    margin-top: -5px;
    margin-bottom: 25px;
    transition-duration: 2s;
    border: 1px solid white;
}

.beyond {
    width: 50px;

}

.beyond:hover {}

.beyond.prediction {
    writing-mode: tb;
    transform: rotate(180deg);
    overflow: hidden;
    transition-duration: 0s;
}

.beyond.prediction:hover {
    width: 200px;
    position: relative;
    left: -150px;
    top: 6px;
    height: 200px;
    transform: rotate(333deg);
    writing-mode: initial;

}

.beyond.prediction.popout {
    box-shadow: 3px 16px 16px 20px rgb(0 0 0 / 80%);
    border: 1px solid white;
    width: 200px;
    position: relative;
    left: -150px;
    top: 6px;
    height: 200px;
    transform: rotate(333deg);
    writing-mode: initial;
}



body {
    background: #1b1b41;
    color: white;
    min-height: 100vh;
}

main.base {
    padding: 0 !important;
}



.app-header-title h1,
.app-header-title h2,
.app-header-title p {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 20px
}

.app-header img {
    margin-top: 10px;
}

.age-cell {
    text-align: center;
    height: 40px;
    font-size: large !important;
}

.name-cell {
    max-height: 30px;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    bottom: 100%;
    left: 120px;
    margin-left: -60px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}

.center {
    justify-content: center;
}


.person-editor button {
    background: none;
}

.modal-mask {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: table;
    transition: opacity 0.3s ease;
}

.modal-wrapper {
    display: table-cell;
    vertical-align: middle;
    background: rgba(0, 0, 0, 0.5);
}

.modal-container {
    width: 300px;
    margin: 0px auto;
    padding: 20px 30px;
    background-color: #20204B;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
    transition: all 0.3s ease;
    font-family: Helvetica, Arial, sans-serif;
}

.modal-header h3 {
    margin-top: 0;
    color: #42b983;
}

.modal-body {
    margin: 20px 0;
}

.modal-default-button {
    float: right;
}

/*
* The following styles are auto-applied to elements with
* transition="modal" when their visibility is toggled
* by Vue.js.
*
* You can easily play with the modal transition by editing
* these styles.
*/

.modal-enter {
    opacity: 0;
}

.modal-leave-active {
    opacity: 0;
}

.modal-enter .modal-container,
.modal-leave-active .modal-container {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}


td.inndev {
    padding-left: 20px;
    box-shadow: inset 0px 0px 1px 4px #1b1b41;
    border-radius: 10px;
}

.infobag {
    margin: 10px;
    background: #20204B;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
    padding: 20px;
}

.infobag code {
    word-break: break-word;
}

.details-view {
    min-height: 100vh;
}

.details-view .prediction {
    height: auto;
    padding: 10px;
    transition: 0.3s;
    background: rgb(100, 100, 251);
    border-radius: 5px;
    cursor: auto;
    margin-right: 5px;
    margin-left: 5px;
    margin-top: 0px;
    margin-bottom: 15px;
    width: auto;

}

.details-view .prediction:hover {
    height: auto;
    margin-right: 5px;
    margin-left: 5px;
    margin-top: 0px;
    margin-bottom: 15px;

}

.twitter-bird {
    color: white;
}

.hashtag {
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 10px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: white;
    background: transparent;
    border-radius: 10px;
    border: 1px solid #20204b;
    font-size: normal;

}

.hashtags {
    text-align: center;
    padding-top: 20px;
}

.hashtag .icon {
    max-width: 20px;
}

.sources a:link {
    color: white;
}

.sources a:visited {
    color: rgba(255, 255, 255, 0.7);
}

.twitter-share-button a {
    background: transparent 0 0 no-repeat !important;
    color: white !important;
    background-color: #1d9bf0 !important;
    height: 28px !important;
    border-radius: 9999px !important;
    padding: 6px 12px 6px 12px !important;
    background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2072%2072%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h72v72H0z%22%2F%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%23fff%22%20d%3D%22M68.812%2015.14c-2.348%201.04-4.87%201.744-7.52%202.06%202.704-1.62%204.78-4.186%205.757-7.243-2.53%201.5-5.33%202.592-8.314%203.176C56.35%2010.59%2052.948%209%2049.182%209c-7.23%200-13.092%205.86-13.092%2013.093%200%201.026.118%202.02.338%202.98C25.543%2024.527%2015.9%2019.318%209.44%2011.396c-1.125%201.936-1.77%204.184-1.77%206.58%200%204.543%202.312%208.552%205.824%2010.9-2.146-.07-4.165-.658-5.93-1.64-.002.056-.002.11-.002.163%200%206.345%204.513%2011.638%2010.504%2012.84-1.1.298-2.256.457-3.45.457-.845%200-1.666-.078-2.464-.23%201.667%205.2%206.5%208.985%2012.23%209.09-4.482%203.51-10.13%205.605-16.26%205.605-1.055%200-2.096-.06-3.122-.184%205.794%203.717%2012.676%205.882%2020.067%205.882%2024.083%200%2037.25-19.95%2037.25-37.25%200-.565-.013-1.133-.038-1.693%202.558-1.847%204.778-4.15%206.532-6.774z%22%2F%3E%3C%2Fsvg%3E) !important;
}

.sharebutton {
    display: inline-block;
    height: 60px !important;
}

.mastodon-button {
    color: white !important;
    background-color: #1d9bf0 !important;
    border-radius: 9999px !important;
    padding: 6px 12px 6px 12px !important;
    margin-left: 20px;
    cursor: pointer;
}

.details-view .infobag h2 {
    cursor: pointer;
}

.prediction-card .pred-type {
    background: #20204b;
    border-radius: 10px;
    display: inline;
    padding: 2px 10px;
    position: absolute;
    right: 2px;
    top: 5px;
}

.details-view .prediction-card h4 {
    display: inline;
    padding: 2px 10px;
    margin-left: 10x;
}

.prediction-card .p-summary {
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 10px;
    padding-bottom: 20px;
    padding-top: 20px;
}

#app a[href] {
    color: white;
}

.detailsheader {
    text-align: center;
    padding: 10px;
    margin-bottom: 2px;
    margin-top: 0px;
    box-shadow: 0 -3px 1px -1px rgb(0 0 0 / 80%) inset;
}

.prediction-other {
    font-size: small !important;
    margin: 10px;
    cursor: pointer !important;
    position: relative;
}



.prediction-other h4 {
    margin-bottom: 10px !important;
}

.related-header {
    background-color: #20204B;
    color: white;
}

.message {
    border-radius: 100px;
    padding: 5px;
}

.msg-ai {
    margin-right: 30%;
    background: #1d9bf0;
    display: block;
    padding: 10px;
    border-radius: 10px;
}

.msg-user {
    margin-left: 30%;
    background: #1d9bf0;
    display: block;
    padding: 10px;
    border-radius: 10px;
}

div#searchV,
div#articleV {
    position: fixed;
    height: 100vh;
    z-index: 1000;
    width: 100vw;
    background: rgba(0, 0, 0, 0.7);
    overflow: scroll;
}

div#searchV .prediction.prediction-other {
    margin: 10px 20%;
}

.searchB{
    cursor: pointer;
    font-size: large;
}

.pred-article {
    background: #20204b;
    padding-left: 5%;
    padding-right: 5%;
}

#articleV code>p:nth-child(1) {
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}

#articleV code {
    word-break: break-word;
}

.open-control {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 5px;
}

article.webmention {
    display: block;
    margin: 5px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

:root {
    --main-color: rgb(100, 100, 251);
    --point-color: rgb(100, 100, 251);
    --loader-size: 5px;
}

.typing-indicator.loader {
    display: inline-block;

}

.html-report p,
.html-report li {
    max-width: 90%;
}