/* Basic Reset */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  } */
  
  /* body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
  } */
  
  .dashboard {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .dashboard-title {
    text-align: center;
    font-size: 2rem;
    color: #b0e0E6;
    margin-bottom: 20px;
  }
  
  .dashboard-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .metric-card {
    background: #1a4476;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    /* width: 200px; */
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 0.5s ease-out;
  }
  
  .metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .metric-icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .metric-title {
    font-size: 1.25rem;
    color: #b0e0E6;
  }
  
  .metric-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #b0e0E6;
  }
  
  /* Animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  