/* Custom CSS - style.css - Omniverse Digital Online Library 
Author: K0NxT3D
Website: http://www.seaverns.com/
*/
body {
    font-family:'Oswald', sans-serif;
}

a {
    color: #fff;
    text-decoration: none !important;
}

a:visited {
    color: #fff;
}

a:active, a:hover {
    color: #666;
}

hr {
    height: 5px;
    width: 100%;
    border: none; /* Remove solid border */
    background-image: linear-gradient(to right, #222, gold, #222);
    background-size: 200% 100%; /* Extend background size for animation */
    animation: kitt-effect 3s infinite alternate; /* Create pulsating animation */
    opacity: 0.8; /* Slightly increase opacity for better visibility */
}

@keyframes kitt-effect {
    0% {
        background-position: 100% 0; /* Start from the far right */
    }
    50% {
        background-position: 0% 0; /* Move to the far left */
    }
    100% {
        background-position: 100% 0; /* Return to the far right */
    }
}


ul {
  margin: none; 
}

li {
    margin: 5px;
}

pre {
color: #abba;
}

nav {
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

nav a {
    text-decoration: none;
}

    .navLink {
        font-size: 24px;
        margin: 5px;
    }

.document_viewer {
    margin: auto;
    background-color: #222;
    overflow: hidden;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

iframe {
    background-color: #222 !important;
    max-width: 100%;
    max-height: 100%;
    display: block;
    border: none;
    object-fit: contain;
    position: relative;
}

footer {
    margin: auto;
    max-width: 800px;
    background-color: #222;
    text-align: center;
    color: #666;
}

/* Content Display Container */
.header {
    text-align: center;
}

.title {
    font-size: 48px;
    font-weight: 900;
    color: Gold !important;
    text-shadow: 2px 2px 4px #000;
}

.content {
    margin: 0px auto;
    font-family:'Oswald', sans-serif;
    max-width: 800px;
    background-color: #222;
}

.results {
    max-width: 800px;
    padding: 10px;
    margin: auto;
    margin-left: 20px;
    font-weight: 600;
    font-size: 18px;
    color: #abba;
    overflow-wrap: break-all;
}

.results h2 {
    font-weight: 900;
    text-shadow: 1px 1px 2px #000;
}

.result {
    padding: 15px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}
::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
::-webkit-scrollbar-thumb {
  background: #000;
  border: 1px solid #4c4848;
  border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
  background: #666;
}
::-webkit-scrollbar-thumb:active {
  background: #000;
}
