body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .search-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .search-box label,
  .search-box input {
    margin: 0 auto;
  }

  .search-box input {
    max-width: 300px;
  }


  .header {
    background-color: #83bf47;
    color: white;
    text-align: center;
    padding: 10px 0;
  }

  .logo {
    max-width: 259px;
    height: auto;
  }

 

  .container {
    flex: 1;
    max-width: 994px;
    margin: 0 auto;
    padding: 15px;
    box-shadow: -20px 16px 20px 9px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 33px;
    overflow: hidden;
  }

  h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  table {
    width: 100%;
    border-collapse: collapse;
  }

  th,
  td {
    padding: 12px 20px;
    text-align: left;
  }

  th {
    background-color: #f7f7f7;
    font-weight: 600;
  }

  tr:nth-child(even) {
    background-color: #f2f2f2;
  }

  a {
    color: #3498db;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }

  .details-icon {
    font-size: 18px;
    color: #3498db;
  }

  .footer {
    background-color: #006837;
    color: white;
    text-align: center;
    padding: 10px 0;
  }