/* Dashboard.css */
.dashboard {

  color: #333;
  padding: 20px;
  padding-bottom: 50px;
}

h6{
  color:#9a9595;
  font-size: 19px;
  font-weight: 600;
  margin: 0px;
}

h1{
  color:var(--text-color);
  font-weight: normal;
}

.dashboard-header {
  display: flex;
  justify-content: start;
  padding-bottom: 20px;
  margin-top: 60px;
 
}

.dashboard-item {
  background: white;
  padding: 10px;
  width: 25%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-right: 10px;

  flex-direction: column;

}
.dashboard-item p{
  margin: 0px;
  font-size: 16px;
  font-weight: 500;
}
.dashboard-item span{
  margin-bottom: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgb(238, 167, 35);
}
.dashboard-charts{
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 20px;
}
.chart {
  margin-right: 10px;
  margin-top: 20px;
  width: 43%;
  background: #f3f3f3;;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.chart h2{
  font-weight: 500;
  font-size: 19px;
}

@media screen and (max-width: 992px) {
  .chart {
    width: 100% !important;
  }
}
.dashboard-footer {
  display: flex;
  justify-content: start;
  padding-bottom: 40px;
  margin-top: 60px;
 
}
.add-charts-label{
margin-right: 20px;
font-weight: 500;
font-size: 22px;
/* background-color: #40A2E3 !important; */
color:#6c6c6c !important;

}
.charts-options{
  display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 10px;
}
.charts-checkbox input{
  margin-right: 6px;
}

.dashboard-charts{
display: flex;
justify-content: start;
padding-top: 50px;
margin-right: 40px;
align-items: flex-start;
}

.dashboard-charts select{
border:1px solid #c0c6cf;
padding:11px 11px;
background-color: transparent;
color:black;
margin-right: 20px;}
/* 
.dashboard-charts select{
border:none;
} */

.chart-options input{
margin-left: 20px;
}

.dashboard .progress-bar{
background-color: orange
}

.dashboard .card{
background-color:#f3f3f3 !important;
border: 1px solid #dee2e6 !important;
margin:0px;
margin-bottom: 15px;
border-radius: 0px;
}

.dashboard .card-header{
background-color: transparent !important;
border-bottom:1px solid #dee2e6 !important;
}

.dashboard  .card-footer{
background-color: transparent !important;
border-top:1px solid #dee2e6 !important;
}

.dashboard  .card-footer a{
text-decoration: none;
color:#6c6c6c;
font-weight: 600;
}



.dashboard .card table p{
width: 70px;
}


.dashboard th{
font-weight: 500;
}


.dashboard .card-title{
font-size:21px;
}