body {font-family: Arial;}

/* Style the tab */
.tab {
    overflow: hidden;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of buttons on hover */
.tab a:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

.tab a.active {
    background-color: #22A5D7; /* White background on hover/active */
    color: #fff !important; /* Text color changes to primary color */
    border-radius: 5px;
}

/* Style the tab content */
.tabcontent {
    display: none;
}

#pieChart, #barChart {
    height: 300px;
    width: 100%;
}