body {
    background-color: #f8f9fa;
    font-family: sans-serif;
  }

  .header {
          width:100%;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #e9ecef;
    border-bottom: 1px solid #ddd;
  }

  .header .user-info {
    margin-right: auto;
  }

  .header .user-info img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 10px;
  }

  .header .user-info h5 {
    margin-bottom: 5px;
  }

  .btn-custom {
    width: 140px;
    height: 40px;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
  }

  .btn-custom + .btn-custom {
    margin-left: 5px;
  }

  .heading {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
  }

  .view-all {
    font-size: 14px;
  }

  .card-custom {
    color: #ffffff;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .card-custom .card-body {
    padding: 10px;
  }

  .card-custom h5 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 10px;
  }

  .card-custom p {
    font-size: 14px;
    margin-left: 10px;
    margin-bottom: 15px;
  }

  .percentage-green {
    color: #008000;
    font-size: 30px;
    font-weight: bold;
    margin-left: 20px;
    margin-top: 20px;
  }

  .percentage-red {
    color: #FF0000;
    font-size: 30px;
    font-weight: bold;
    margin-left: 20px;
    margin-top: 20px;
  }

  .message {
    font-size: 14px;
    font-weight: bold;
    margin-left: 0;
    margin-top: 5px;
  }

  @media (max-width: 576px) {
    .row {
      display: flex;
      flex-wrap: wrap;
      margin-right: -15px;
      margin-left: -15px;
    }
    .col-sm-6 {
      flex: 0 0 50%;
      max-width: 50%;
      padding-right: 15px;
      padding-left: 15px;
    }
  }

/* Popup */
.popup {
display: none;
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
background-color: #fefefe;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
z-index: 9999;
}

.popup-content {
text-align: center;
}

/* Close button */
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}

.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}

