*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    /* border:1px solid maroon; */
}
/* body{
    background:purple; padding: 0;
} */
.dashboard_container{
    /* background: lime; */
    display: flex;
    position: fixed;
    top: 0;
    left: -20%;
    width: 20%;
    height: 100%;
    z-index: 1000;
}
.dashboard{
    /* background: gold; */
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}
.dashboard_content{
    background: black;
    width: 100%;
    height: 100%;
    position: relative;
    left: 0;
    display: flex;
    flex-direction: column;
    border-right: 1px solid grey;
    transition: 1s all ease-in-out;
}

.dashboard_content h2{
    /* background: salmon; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10%;
    color: white;
    font-size: 1.5vw;
}
.dashboard_content nav{
    /* background: seagreen; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.dashboard_content ul{
    display: flex;
    flex-direction: column;
    /* background: peru; */
    width: 100%;
    height: 100%;
}
.dashboard_content ul li{
    background:black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25%;
    border: 1px solid white;
    border-left: 0;
    border-right: 0;
    overflow: hidden;
    margin-bottom: 0;
}


.dashboard_content ul li a{
    text-decoration: none;
    color: white;
    font-size: 1.7vw;
    font-weight: bold; 
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 110%;
    transition: 0.6s all ease-in-out;
}

.dashboard_content ul li a:hover{
    transform: scale(1.1);
    width: 130%;
    /* background: white; */
    color: white;
}
.sidebarBtn{
    background: black;
    color: white;
    font-weight: bold;
    padding: 3%;
    width: 30%;
    border: none;
    position: absolute;
    left:100%;
    top: 2%;
    transition: 1s all ease-in-out;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}


/* ============================================Charts========================================== */

.analytics_container {
    /* padding: 20px; */
    font-family: Arial, sans-serif;
}

.analytics_section {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.chart-container {
    width: 100%;
    max-width: 30%;
    margin: auto;
}
.members{
    /* background: lime; */
    display: flex;
    gap: 30px;
    width: 100%;
    flex-direction: row;
    justify-content: end;
}
.members-labels{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    background:black;
    width: 50%;
    height: 63vh;
}
.members-labels h2,
.members-labels h3{
    position: relative;
    left: 30%;
    font-size: 1.7vw;
    color: white;
}
.pie-chart{
    width: 100%;
    /* background: black; */
}
.bar-chart{
    width: 70%;
    display: flex;
    justify-content: center;
}

canvas {
    width: 100% !important;
    height: 400px !important;
}

h1, h2, h3 {
    text-align: center;
}

.table-container {
    margin: 30px 0; 
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%; 
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f4f4f4;
    font-weight: bold;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

/* .info_box{
    background: chartreuse;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
}
.info-box_cont{
    width: 400px;
    min-width:400px; background: yellow;
}


.info-box_cont .card{
    background: palegoldenrod; color: orangered;
}
.info-box_cont .card .card-body{
    background: l;
} */



/* ==================================================================================================== */
/* ==================================================================================================== */
/* =============================================Media Query======================================================= */
/* ==================================================================================================== */
/* ==================================================================================================== */
/* ==================================================================================================== */




@media(max-width:1000px){
    .piebox{
        /* background: slateblue; */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .piebox1,.piebox2{
        width: 100%;
        height: 500px;
    }
    .piebox3{
        transform: translateX(17%);
        height: 100%;
        width: 80%;
    }
}

@media(max-width:768px){
    .piebox{
        /* background: slateblue; */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .piebox1,.piebox2{
        width: 100%;
        height: 500px;
    }
    .piebox3{
        transform: translateX(1%);
        height: 100%;
        width: 100%;
    }
}



@media(max-width:420px){
    .piebox{
        /* background: slateblue; */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .piebox1,.piebox2{
        width: 100%;
        height: 500px;
    }
    .piebox3{
        transform: translateX(-5%);
        height: 100%;
        width: 110%;
    }
}


@media(max-width:350px){
    .piebox{
        /* background: slateblue; */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .piebox1,.piebox2{
        width: 100%;
        height: 420px;
    }
    .piebox3{
        transform: translateX(-5%) scale(0.8);
        width: 110%;
    }
}






@media(max-width:600px){
    .dashboard_container{
    /* background: lime; */
    top: 0;
    left: -40%;
    width: 40%;
}

.dashboard_content h2{
    /* background: salmon; */
    font-size: 2.7vw;
}

.dashboard_content ul li a{
    color: white;
    font-size: 2.5vw;
    font-weight: bold; 
 }
}

@media(max-width:420px){
    .dashboard_container{
    /* background: lime; */
    top: 0;
    left: -60%;
    width: 60%;
}

.dashboard_content h2{
    /* background: salmon; */
    font-size: 3.7vw;
}

.dashboard_content ul li a{
    color: white;
    font-size: 3.9vw;
    font-weight: bold; 
 }
}

