@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: black;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    margin-bottom: 50px;
}

.navbar {
    background-color: #000044;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    width: 100%;
    position: fixed;
}

html {
    scroll-padding-top: 50px;
}

.nav-item {
    color: #b3b3b3;
    transition: 0.4s;
    text-underline-position: under;
}

.nav-item:hover {
    color: #cccccc;
}

#divider {
    color: black;
    margin-left: 3%;
    margin-right: 3%;
    font-weight: 900;
    transform: scale(1.5, 1.5);
}

h1 {
    color: white;
    margin-top: 5%;
    margin-bottom: -1%;
}

h2 {
    color: white;
    text-align: center;
    margin-bottom: 2%;
}

#ufoimg {
    width: 300px;
    height: 200px;
}

#loading {
    margin-top: 5%;
    color: white;
    font-size: 1.4rem;
}

#doneLoading {
    display: none;
}

#wrapper {
    width: 100%;
}

.content {
    margin-top: 1%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    width: 100%;
}

svg {
    margin-bottom: 2%;
}

#sightingsOverTime {
    background-color: #000044;
}

p {
    font-size: 1.03rem;
    padding: 10px;
}

#info {
    margin-top: 2%;
    width: 50%;
    text-align: center;
}

hr {
    width: 75%;
    margin-top: 6%;
    margin-bottom: 6%;
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

#sightingsByLocation {
    background-color: #000044;
}

#loadingMap {
    position: absolute;
    margin: 0 auto;
    margin-top: 20%;
}

#figuresReported {
    background-color: #000044;
}

#paramsDiv {
    background-color: #000044;
    width: 24%;
    padding-left: 1%;
    margin-left: 2%;
}

input {
    vertical-align: middle;
    margin-left: 8%;
}

h3 {
    text-align: center;
    margin-top: 5%;
}

.paramHeading {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: -2%;
    margin-left: -10%;
}

#filterWrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    height: 100%;
}

#sightingsTable {
    background-color: #000044;
    width: 75%;
    font-size: 0.87rem;
}

table, th, td {
    border-collapse: collapse;
    border: 2px solid black;
}

th {
    font-size: 0.9rem;
    height: 30px;
}

td {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

.link {
    color: #3d72ca;
}

.link:visited {
    color: #285092;
}

.link:hover {
    color: #658fd5;
}

#pagesDiv {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#pageTxt {
    padding: 8px;
}

#pagesInMiddle {
    text-align: center;
}

.pagesAtRight {
    display: flex;
    justify-content: space-evenly;
    width: 25%;
    align-items: center;
    text-align: center;
}

#pagesLabel {
    margin-right: -7%;
}

.pageBtn {
    width: 65px;
    padding: 3px;
    background-color: #cccccc;
    cursor: pointer;
    transition: 0.3s;
}

.pageBtn:hover {
    background-color: #e9e9e9;
}

#prevBtn:hover,
#prevBtn.hover {
    background: #cccccc;
}

#nextBtn:hover,
#nextBtn.hover {
    background: #cccccc;
}

#goBtn {
    width: 35px;
    margin-left: 5px;
}

#forAlignment {
    visibility: hidden;
}

.optionsDiv {
    height: 510px;
    display: flex;
    flex-flow: column wrap;
    margin-left: 3%;
    font-size: 0.85rem;
    margin-bottom: 1%;
}

.option {
    display: inline-flex;
    margin-bottom: -5px;
}