/* Add these styles to your existing CSS */
.summary-card {
    background-color: #1b6a5c;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .summary-card:hover {
    transform: translateY(-5px);
  }
  
  .summary-card .card-content {
    padding: 1.5rem;
  }
  
  .summary-card .heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .summary-card .title {
    margin-bottom: 0;
  }
  
  .summary-card .icon {
    font-size: 2.5rem;
  }
  
  .summary-card .progress {
    height: 0.5rem;
  }
  
  @media screen and (max-width: 768px) {
    .summary-card {
      margin-bottom: 1rem;
    }
  
    .summary-card .card-content {
      padding: 1rem;
    }
  
    .summary-card .heading {
      font-size: 0.9rem;
    }
  
    .summary-card .title {
      font-size: 1.5rem;
    }
  
    .summary-card .icon {
      font-size: 2rem;
    }
  }