body {
    margin: 0;
    padding: 0;
}

h1 {
    margin-top: 0;
    padding-top: 3%;
    padding-bottom: 1%;
    padding-left: 55px;
    font-family: sans-serif;
}

#main {
    height: 100vh;
    width: 100vw;
    background-color: #D9D9D9;
}

#dataContent {
    height: 75%;
    width: 85%;
    margin-left: 54px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.row {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#topRow {
    height: 55%;
}

#tableContainer {
    position: relative;
    width: 35%;
    height: 100%;
}

.tab {
    height: 8%;
    width: 8%;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 10px 10px 0px 0px;
    font-size: 0.5em;
    font-family: sans-serif;
    text-align: center;
    padding-top: 6px;
    text-decoration: underline;
}

.selected {
    background-color: white;
    border: none;
}

.unselected {
    border-top: 1px dashed gray;
    border-left: 1px dashed gray;
    border-right: 1px dashed gray;
    background-color: #D9D9D9;

}

.tab:hover {
    cursor: pointer;
}

#deptTab {
    top: 2%;
    left: 0%;
    z-index: 2;
}

#allTab {
    top: 2%;
    left: 8%;
    z-index: 2;
}

#allDeptsChart {
    height: 80%;
    width: 100%;
    overflow-x: scroll;
    position: absolute;
    top: 8%;
    background-color: #F4F4F4;
    border-radius: 8px 30px 0px 30px;
}

#allDeptsGraphContainer {
    width: 1500px;
    height: 100%;
}


#allDeptsChart {
    display: none;
}

.d-table {
    display: table;
}
button {
    border: none;
}
button:hover {
    cursor: pointer;
}


#activeBtn {
    background-color: white;
    border: 2px solid gray;
    border-top: none;
    border-bottom: none;

}

#tablePageBtns {
    display: flex;
    justify-content: end;
    width: 100%;
    position: absolute;
    height: 20px;
    bottom: -20px;
    right: 0;
}

table {
    display: none;
}

.helper {
    margin: 16px;
    margin-bottom: 13px;
    font-family: sans-serif;
}







#barChartContainer {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: relative;

}

#barChart {
    background-color: #F4F4F4;
    margin-top: 4%;
    margin-bottom: 1%;
    height: 80%;
    width: 100%;
    border-radius: 8px 30px 0px 30px;
}

#headers {
    width: 95%;
    display: flex;
    margin-left: 5%;
    align-self: flex-end;
    justify-content: space-between;
    border-bottom: 1px dashed gray;
    overflow: hidden;
}
#headers > p {
    margin: 10px;
    margin-left: 32px;
    margin-right: 54px;
    font-family: sans-serif;
    margin-bottom: 0;
}

table {
    width: 100%;
}

tr {
    width: 100%;
}

td {
    margin: 32px;
    padding-left: 32px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;

}




#bottomRow {
    height: 40%;
    background-color: #FDFDFD;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 0px 0px 5px 55px;
}

#circleChart {
    height: 100%;
    width: 18%;
}

#divider {
    height: 90%;
    width: 1px;
}

#genderBreakdown {
    display: table;
    height: 100%;
    width: 82%;
}

.titles-row {
    border: 1px solid;
    font-size: 6pt;
}

.titles-row > td {
    border: 1px solid gray;
    padding-left: 0;
    margin: 0;
}

#titleRow > td {
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 5pt;
    margin: 0 !important;
}

/*                 'rgba(54, 162, 235, 0.7)',
                'rgba(255, 99, 132, 0.7)',
                'rgba(201, 203, 207, 0.7)' */

.female-prof {
    color: rgb(255, 168, 0);
}

.male-prof {
    color: rgb(20, 255, 0);
}

.unknown-prof {
    color: rgb(171, 173, 177)
}

#barChartCheckboxContainer {
    background: linear-gradient(to right, #D9D9D9, #737373);
    height: 15%;
    width: 100%;
    display: flex;
    align-items: center;
}

#radioBtns {
    display: flex;
}
