
.my-sidebar {
    position: absolute;
    width: 180px;
    height: 100%;
    background-color: #0568A6;
    padding-top: 20px;
}
.my-sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.my-sidebar ul li {
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}
.my-sidebar ul li:hover {
    background-color: #555;
}
.main-content {
    margin-left: 150px;
    padding-top: 20px;
}
.main-content h1 {
    color: #0568A6;
    margin-top: 0;
    font-size: 33px;
    text-align: center;
}
.table-data {
    max-height: 400px;
    overflow-y: auto;
}


/* boxes */
  /* Common styles for the boxes */
  .box {
    width: 120px;
    height: 160px;
    margin: 10px;
    background-color: #fff;
    color: #0568A6;
    box-sizing: border-box;
  }

  .box-two {
    width: 98%;
    height: 200px;
    margin-bottom: 10px;    
    background-color: #fff;
    /* box-sizing: border-box; */
  }

  /* For large and medium screens */
  @media screen and (min-width: 768px) {
    .container-lg-md {
      display: flex;
      flex-wrap: wrap;
    }
    .container-lg-md .box {
      width: calc(25% - 20px); /* 4 boxes in a row with margin */
    }
  }

  /* For small screens */
  @media screen and (max-width: 767px) {
    .container-sm .box {
      width: 100%; /* 1 box in a row */
    }
  }
  .bg-screens {
    justify-content: center;
    align-items: center;
  }

  .dashboard {
    padding: 40px 40px;
  }

  .total-users {
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
  }

  .total-users:hover {
    transform: translate(1.1);
  }
  .total-users > p {
    text-align: center;
    
  }
  .total-users > div {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    
}
  .total-users > div > h2 {
    display: inline;
    font-size: 30px;
    font-weight: 600;
  }

  .total-users > div > img {
    height: 40px;
    display: inline;
  }

  hr {
    border: 1px solid #44D2F2;
  }

  .users > p {
    font-size: 16px;
    display: inline;
  }

  .users >  img {
    display: inline;
    height: 20px;
    margin-left: -5px;
  }

  .users > h7 {
    font-size: 15px !important;
  }

  .users:hover {
    font-weight: 600;

    margin: 0px 20px 0px 20px;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }

  .reports {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: start;
  }

  .reports > div {
    width: 33%;
  }

  .reports-info {
    justify-content: start;
    align-items: start;
  }
  .reports-info > h2 {
    font-weight: 600;
    color:#0568A6;
    font-size: 20px;
  }
  .reports-bars > img {
    width: 100%;
  }

  .data-info {
    display: flex;
  }

  .data-info :first-child{
    width: 50%;
  }

  .data-info :nth-child(2){
    margin: 20px;
  }
  .view-data {
    color: #0568A6;
    cursor: pointer;
  }
  .view-data:hover{
    color: #0a4e78;
  }