@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

body {
    background-color: white;
    margin: 10px;
    text-align: center;
    user-select: none;
}

body.frame {
    transition: all;
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

table.logbook {
    margin: auto;
    text-align: center;
    width: 850px;
    min-height: 500px;
    max-height: 85%;
    overflow-y: scroll;
    font-family: sans-serif;
    color: #025779;
    background-color: #dbedff;
    border: 1px solid #003347;
    border-radius: 10px;
    box-shadow: 0px 0px 5px #777;
    padding: 5px;
}

tr.header-title {
    height: 4em !important;
    font-variant: small-caps;
    font-weight: bold;
    letter-spacing: 2px;
}

tr.header-info {
    height: 2.5em !important;
}

td.logwindow {
    vertical-align: top;
    overflow-y: scroll;
    padding: 5px 5px 0px 5px;
    font-variant: small-caps;
    font-weight: bold;
    letter-spacing: 2px;
}

td.logo {
    width: 120px;
}

td.key {
    width: 10%px;
    padding-right: 10px;
    font-weight: bold;
    text-align: center;
}

td.value {
    width: 20%;
    padding-left: 10px;
    text-align: left;
    font-family: monospace;
}

table.contacts-table {
    margin-top: 10px;
    width: 100%;
    max-width: 1800px;
    background-color: #90c7f8;
    border-collapse: collapse;
    font-family: monospace;
    border: 1px solid #ccc;
}

tr.contacts-header {
    background-color: #bbddff;
    font-weight: bold;
    text-align: center;
}

tr.contacts-row {
    background-color: #ffffff;
    text-align: center;
    color: black;
    line-height: 1.5em;
}

tr.contacts-row:nth-child(odd) {
    background-color: #f0f8ff;
}

div.noactivity {
    display: block;
    visibility: hidden;
    position: absolute;
    font-size: 12pt;
    font-variant: small-caps;
    color: #4c7e92;
    margin-top: 100px;
    text-align: center;
    width: 820px;
}

div.footer {
    margin-top: 10px;
    font-family: monospace;
    font-size: small;
}

table.control {
    display: inline-block;
    font-size: 11pt;
    font-family: monospace;
    font-variant: small-caps;
    margin: auto;
    vertical-align: middle;
}

input.page {
    text-align: center;
    font-family: monospace;
    width: 70px;
}

div.applet {
    margin-top: 10px;
    font-family: monospace;
    font-size: 8pt;
}

span.title {
    font-size: x-large;
}

span.data {
    display: inline-block;
    padding: 3px 6px 3px 6px;
    background-color: #ddd;
    min-width: 30px;
    text-align: center;
    border-radius: 3px;
}

sup {
    font-size: x-small;
}
img {
    margin: 20px;
    max-width: 125px;
    max-height: 120px;
    border-radius: 5px;
}

img.left {
    float: left;
}

img.right {
    float: right;
}

.x-large {
    font-size: x-large;
}

::-webkit-scrollbar {
    margin-left: 4px;
    width: 2px;
    height: 2px;
}

::-webkit-scrollbar-track {
    background: #bbddff;
}
::-webkit-scrollbar-thumb {
    background: #0183bf;
}
