@import "pre.css";
@import "nat/ui.css";
@import "nat/ui/main+aside.css";
@import "nat/nav.css";


#ui > .content > section {
    height: 100%; width: 100%;
    display: flex;
    flex-direction: column;
}



.report-list {
    height: 100%; width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: fit-content(100%) span;
    gap: 1vw;
}

.more {
    grid-row: 1;
    grid-column: 1 / 3;
}

.report {

    height: 200px; width: 100%;
    background-color: transparent;
    display: grid;
    grid-template-rows: 150px 1fr;
    grid-auto-rows: max-content;
    color: white;
    gap: 2vh;
    grid-row: 2;
    grid-column: auto;

}

.report > .cover {
    height: 100%; width: 100%;
    background-color: white;
    border-radius: 30px;
    overflow: hidden;
}

.cover > img {
   width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

.report > .info {
     width: 100%;
    height: 100%;
}

.report dl {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1vh;
}

.report dt {
    margin: 0;
    padding: 0.5vh 0 0.5vh 0.5vw;
    background-color: rgba(0, 255, 89, 0.5);
    border-left: solid rgb(0, 255, 123) 4px;
    display: flex;
    justify-content: center;
}

.report dd {
    margin: 0;
    padding: 0 0 0 0.5vw;
    border-left: solid red 4px;

}

h1 {
    margin: 0;
}

p {
    margin: 0;
}

/* New */

#document-viewver {
    width: 98%;
    height: 80vh;
    border-top: solid white 4px;
    border-bottom: solid white 4px;
    float: right;
    box-sizing: border-box;
    color: white;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    gap: 5vh;
    overflow: scroll;
    overflow-x: hidden;
}

.metadata {
    height: 100%; width: 100%;
    border-left: solid red 4px;
    padding: 2vh 0 0 1vw;
}

#document {
    width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1vh;
}

.title {
    margin: 2vh 0 0 0;
        display: grid;

}

#sources {
    display: grid;
}

.source {
    display: flex;
    flex-direction: row;
    gap: 2vw;
}

.source > .info {
    display: inline;
}

.veri-level {
    display: inline;
    flex-direction: row;
    gap: 0.5vw;
}

.veri-level > img {
    display: inline;
}


.veri-level > .info {
    display: inline;
}

ol {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 2vh;
    margin: 0 0 2vh 0;
    padding: 0;
}

li {
    margin: 0 0 2vh 0;
}

