.flex {
    display: flex;
  }
  
  .flex-col {
    flex-direction: column;
  }
  
  .min-h-screen {
    min-height: 100vh;
  }
  
  .items-center {
    align-items: center;
  }
  
  .justify-center {
    justify-content: center;
  }
  
  .bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
  
  body {
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #f7f7f7;
    color: #40c656;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1em;
    font-family: Arial, sans-serif;
    min-width: 400px;
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); */
  }
  
  thead tr {
    background-color: #40c656;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
  }
  
  th, td {
    padding: 12px 15px;
  }
  
  tbody tr {
    border-bottom: 1px solid #dddddd;
  }
  
  tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
  }
  
  tbody tr:last-of-type {
    border-bottom: 2px solid #40c656;
  }
  
  tbody tr:hover {
    background-color: #f1f1f1;
  }
  
  button {
    padding: 6px 12px;
    cursor: pointer;
  }
  
  label {
    font-size: 1.375rem;
    line-height: 1.25rem;
    margin-bottom: 16px;
  }
  
  input[type="text"] {
    padding: 1rem;
    border: 1px solid #e5e7eb;
    /* border-radius: 0.5rem; */
    width: 100%;
    font-size: 0.875rem;
  }
  
  input[type="submit"] {
    background-color: #40c656;
    color: white;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border: aliceblue;
    /* border-radius: 0.375rem; */
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
  }
  
  input[type="submit"]:hover {
    background-color: #40c656;
  }
  
  h2 {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    line-height: 2rem;
    color: #40c656;
    font-weight: 600;
  }
  
  .max-w-md {
    max-width: 46rem;
  }
  
  .mt-4 {
    margin-top: 1rem;
  }
  
  .mt-6 {
    margin-top: 1.5rem;
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-gray-500 {
    color: #000;
  }
  
  .text-green-500 {
    color: #40c656;
  }

  .text-white {
    color: #fff !important;
    background: #40c656;
    border: none;
}