/* General */
body {
    font-family: Gabarito;
    background-color: #F2F1EE;
    margin-left: 270px;
    margin-right: 20px;
}

h2, h3 {
    font-weight: 500;
}

a, a:visited {
    color: #3F8CD1;
    text-decoration: none;
}

footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    color: #757575;
    font-size: 16px;
    border-top: 1px solid #757575;
}

/* Navbar */
ul {
    list-style-type: none;
    padding: 0; 
    margin: 0;
    width: 250px;
    background-color: #cccccc;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

li {
    display: block;
}

#logo {
    width: 210px;
    margin-top: 0;
    display: block;
    padding: 20px;
}

a.navLink, a.navLink:visited {
    color: #606683;
    font-weight: 600;
    font-size: 18px;
    display: block;
    width: 100%;
    padding: 20px;  
    text-decoration: none;
    box-sizing: border-box
}

a.navLink:hover, a.navLink:focus {
    background-color: #a7bbd8;
}

a.navLink.active {
    background-color: #a7bbd8;
}

#userPanel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
    color: #444;
}

#orgDisplay {
    font-weight: bold; 
    color: #444;
}

.icons {
    display: flex;
    gap: 12px;
    cursor: pointer;
    font-size: 24px;
}

.icons i:hover {
    color: #3F8CD1;
}

/* Results Display */
#title {
    margin-top: 35px;
}

#chartBox {
    width: 700px;
}

#chartSelector {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.tab {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 8px 16px;
    border-bottom: 3px solid transparent;
    color: #606683;
}

.tab.active {
    border-bottom-color: #3F8CD1;
    color: #3F8CD1;
} 