﻿@font-face {
    font-family: 'IBM3270';
    src: url('fonts/3270-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: 'IBM3270';
}


.navBar {
    position: absolute;
    left: 0;
    top: 0;
    width: 500px;
    height: 79vh;
    background: linear-gradient(to right, transparent 90%, #010101 100%), linear-gradient(to bottom, transparent 95%, #010101 100%), #292E27;
    border-right: solid 10px #82825D;
    border-bottom: solid 10px #82825D;
    transition: transform 0.3s ease;
    z-index: 1000;
}

.navBox {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

    .navBox::-webkit-scrollbar {
        width: 6px;
    }

    .navBox::-webkit-scrollbar-track {
        background: #292E27;
    }

    .navBox::-webkit-scrollbar-thumb {
        background: #74695F;
        border-radius: 3px;
    }

.navBtn {
    position: absolute;
    right: -75px;
    top: 20px;
    width: 65px;
    height: 70px;
    background: #94695F;
    border: none;
    color: #c3c381;
    font-size: 3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 10px 10px 0;
}

    .navBtn:hover {
        color: #ffffff;
    }

.navBar.collapsed {
    transform: translate(-510px);
}

.navMenu {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.navLogo {
    display: block;
    padding: 20px;
    color: #01FC01;
    text-decoration: none;
    font-size: 2.2rem;
    font-weight: bold;
    cursor: default;
}

.navLink {
    display: inline-flex;
    padding: 12px 20px;
    color: #01FC01;
    text-decoration: none;
    width: 100%;
    font-size: 4rem;
    white-space: normal;
    word-break: break-word;
    width: max-content;
}

.navDrop {
    list-style: none;
    padding-left: 20px;
    margin: 0;
    font-size: 2.5rem;
    white-space: normal;
    word-break: break-word;
    padding-bottom: 50px;
}

    .navDrop a {
        display: inline-flex;
        align-items: center;
        padding: 8px 15px;
        color: #01FC01;
        text-decoration: none;
        width: 100%;
        width: max-content;
    }

        .navDrop a:hover,
        .navLink:hover {
            text-decoration: underline;
        }

        .navLink.active::after, .navDrop a.active::after {
            content: "|";
            animation: blink 1s step-start infinite;
            margin-left: 4px;
        }

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/*Seed Search Body---------------------------------------------*/

html {
    background: black;
}

body {
    background-image: url(images/lcspace1.png);
    background-repeat: repeat-y;

}

.main {
    margin-left: 0;
    margin-top: 0;
    color: #01FC01;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    padding-block: 100px;
    padding-bottom: 10vh;
}

.pageBg {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    width: clamp(300px, 80%, 1300px);
    border-radius: 30px;
    position: relative;
    padding: 20px;
    z-index: 0;
}

.pageBg::before {
    content: "";
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/lccrtlines2.png);
    background-repeat: repeat;
    border-radius: inherit;
    opacity: 0.8;
    z-index: -1;

}

.pageHeader {
    padding-block: 5px;
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    height: 100%;
    width: 100%;
    max-width: 1300px;
    border-radius: 30px;
    border: 0px solid green;
    gap: 20px;
}

p {
    max-width: 1000px;
    color: #dbd1b0;
}
.textGroup {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1E1E1E;
    padding: 15px;
    border-radius: 10px;
}
table {
    max-width: 1000px;
    background-color: rgb(5 5 5 / 0.4);
}
.tableBox {
    background-image: url(images/lccrtlines2.png);
    background-repeat: repeat;
}

.scrollBox {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.scrollBox a {
    color: wheat;
    font-size: 1.2rem;
    font-weight: bold;
    width: max-content;
    text-decoration: none;
}
.helpLink {
    color: wheat;
    width: max-content;
    text-decoration: none;
}
.outsideLink {
    color: #00ceeb;
    text-decoration: none;
    width: max-content;
    font-size: 1.2rem;
    font-weight: bold;
}
.helpLink:hover,
.outsideLink:hover,
.scrollBox a:hover {
    text-decoration: underline;
}

html {
    scroll-behavior: smooth;
}
h2 {
    scroll-margin-top: 100px;
}

.listBox {
    color: #dbd1b0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

code {
    color: black;
    font-family: 'Cascadia Code';
    font-size: 0.80rem;
    padding: 1px;
    padding-left: 3px;
    padding-right: 3px;
    background: #989898;
    border-radius: 3px;
    white-space: nowrap;
}