@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@800&family=Roboto:wght@300;400;900&family=IBM+Plex+Sans:wght@500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,100,0,0');

body {
    display: flex;
    flex-direction: column;
    font-family: Roboto, Arial;
    font-weight: 300;
    font-size: 1.1em;
    max-width: 1500px;
    min-width: 850px;
    color: #071D28;
    border-color: #071D28;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 20px;
}

h1, h2, h3, p {
    padding: 0;
    margin: 0;
    font-size: 1em;
    font-weight: 300;
}

a {
    text-decoration: none;
}

.bolt-nav-wrapper {
    position: sticky;
    display: flex;
    top: 0;
    z-index: 999;
    width: 100%;
    max-width: 1500px;
    min-width: 800px;
    background-color: #FFFFFF;
}

.bolt-nav {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    overflow: hidden;
    background-color: #385594;
    border-radius: 15px;
    padding: 0px 20px;
    margin-top: 2px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 0px;
    box-shadow: 0px 1px 5px -2px #444444;
}

.bolt-nav a {
    display: flex;
    align-items: center;
}

.bolt-nav a.logo-wrapper:hover {
    filter: opacity(80%);
}

.logo {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 2.1em;
    color: #FFFFFF;
    margin-left: 15px;
}

/* Style the navigation bar items */
.bolt-nav-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-items: top;
    font-size: 16pt;
    font-weight: 300;
}

.bolt-nav-items a {
    margin: 5px;
    background-color: #EDF2FB;
    border-style: solid;
    border-color: #FFFFFF;
    border-radius: 15px;
    height: 20px;
    width: 60px;
    padding: 10px;
    display: flex;
    justify-content: center;
}

.bolt-nav-items a.link:hover {
    color: #c46a27;
    background-color: #DCE6F6;
    border-color: #FFFFFF;
}

.bolt-nav-items a.gh {
    background-color: transparent;
    border: none;
    border-radius: 0;
    width: auto;
    height: auto;
    padding: 8px;
}

.gh img {
    height: 28px;
    width: auto;
    filter: invert(1);
}

.info-section {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 10px 8% 0px 8%;
}

.no-top-margin {
    margin-top: 0px;
}

.content {
    margin-left: 25px;
}

#video {
    margin-top: 4px;
    margin-bottom: 10px;
}

#main-video-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 8%;
    width: 720px;
    height: 405px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1.75em;
}

#main-video-container video {
    max-width: 100%;
    padding: 0;
    margin: 0;
    width: 720px;
    height: 405px;
}

#main-video-container .replay {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    border: none;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: 18px;
    font-size: 30pt;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    border-color: #071d28ba;
    border-width: 2px;
    border-style: solid;
}

#main-video-container .replay img {
    width: 25px;
    filter: opacity(70%);
}

#main-video-container .replay:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.info-section h1 {
    font-family: Roboto, Arial;
    font-weight: 300;
    font-size: 1.5em;
    color: #071D28;
    background-color: #7D97CE;
    border-radius: 10px;
    padding: 5px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.info-section h2 {
    font-weight: 400;
    font-size: 1.35em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.info-section h2:first-child {
    margin-top: 0px;
}

.info-section h3 {
    font-weight: 400;
    font-size: 1.25em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.info-section h3:first-child {
    margin-top: 0px;
}

.info-section p {
    line-height: 1.3;
}

.blurb {
    font-size: 1.1em;
}

.info-section p.detail {
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
}

.detail a {
    color: #c46a27;
}

.emph {
    font-style: italic;
}

.info-section p.paper-abstract {
    font-size: 0.980em;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 15px;
    width: 100%;
}

.demo-item video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    background-color: #000000;
}

.demo-caption {
    text-align: center;
    margin-top: 8px;
    font-weight: 400;
}

.paper-block {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: #f2f2f2;
    border-radius: 10px;
    padding: 15px 20px 15px 20px;
    margin-top: 15px;
    max-width: 805px;
    margin-left: auto;
    margin-right: auto;
}

.paper-details-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.paper-details {
    padding-left: 10pt;
}

#paper-download a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: #071D28;
}

.pdf-download-icon {
    font-size: 80px;
    line-height: 1;
}

.pdf-download-text {
    margin-top: -8px;
}

.paper-title-wrapper {
    margin-bottom: 10px;
}

a.paper-title {
    display: inline-block;
    padding-bottom: 2px;
    font-weight: 900;
    font-size: 1.1em;
    color: #071D28;
}


.authors {
    margin-left: 10px;
    line-height: 150%;
    padding-bottom: 6px;
}

.authors a:link,
.authors a:visited {
    color: #c46a27;
}

.citation {
    display: inline-block;
    margin-left: 20px;
    background-color: #EEEEEE;
    padding: 10px 30px;
    border-radius: 10px;
    font-size: 10pt;
}
