.pfp {
    border-radius: 50%;
    width: 70px;
    height: 70px;
}
.pfpTxt {
    font-family: Sarabun, sans-serif;
    color: #17191c;
    font-size: 20px;
}
.profile {
    display: flex;
    align-items: center;
    gap: 10px;
}
body {
    background-color: #ffffff;
    font-family: Sarabun, Arial, Helvetica, sans-serif;
}
ul.NavBar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #f8fafd;
    border-radius: 100px;
    box-shadow: 0 7px 5px #dddddd;
}
li.NavBarItems {
    float: left;
    margin: 3px;
    padding: 3px;
    border-radius: 100px;
}
li a, .dropbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444746;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    height: 24px;
    border-radius: 100px;
}
li a img {
    height: 24px;
    width: 24px;
}
li a:hover, .dropdown:hover .dropbtn {
    background-color: #e7e8eb;
    border-radius: 100px;
}
.active {
    color: #004a86;
    background-color: #c2e7ff;
    border-radius: 100px;
}
.active:hover {
    background-color: #b5d7ed;
}
li.dropdown {
    display: inline-block;
    float: left;
    margin: 3px;
    padding: 3px;
    border-radius: 100px;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #e9eef6;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    margin: 3px;
    padding: 3px;
    z-index: 1;
    border-radius: 100px;
}
.dropdown-content a {
    color: #1e1f20;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    border-radius: 50px;
}
.dropdown-content a:hover {
    background-color: #dce1e8;
    border-radius: 50px;
}
.dropdown:hover .dropdown-content {
    display: block;
    border-radius: 25px;
}
