html {
    font-size: 16px;
}

body {
    text-align: center;
    background-color: #121212;
    color: white;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
    background-color: #252525;
    text-align: center;
}

.footerLink {
    text-decoration: none;
    color: #6e75a8;
}

.footerLink:hover {
    text-decoration: underline;
}

.footerLink:visited {
    color: #6e75a8;
}

/*nav bar*/
.navbar ul{
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    background-color: #252525;
}

.navbar li{
    float: left;
}

.navbar li::before {
    content: ""; /* Remove custom bullet point */
    position: none;
    left: none;   
}

.navbar a {
    display: block;
    color: white;
    text-align: center;
    padding: 15px;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #111;
}

.active {
    background-color: #6e75a8;
}

a.active:hover {
    background-color: #6e75a8;
}

dialog {
    width: 90%;
    max-width: 1000px; /* Prevents dialog from getting too wide */
    max-height: 90%;
    background-color: #252525;
    color: #FFFFFF;
}

#userAck {
    text-align: center;
}

dialog p {
    text-align: left;
    margin-bottom: 1rem;
    line-height: 1.5;
}

#dialogAgreeCheckbox {
    margin-right: 10px;
}

#disclaimerDialogBtn {
    background-color: #069E2D;
    color: #FFFFFF;
    font-size: 18px;
    border-radius: 4px;
    padding: 5px ;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

#disclaimerDialogBtn:disabled {
    opacity: 0.6;
    cursor: default;
}
