@media (max-width: 640px) {
  .max-w-md {
      max-width: 90%;
  }
  .max-w-4xl {
      max-width: 90%;
  }
  img.w-24 {
      width: 80px;
      height: 80px;
  }
}

#result.success {
  color: #10B981;
  font-weight: bold;
}

#result.error {
  color: #EF4444;
  font-weight: bold;
}

table {
  min-width: 100%;
}

th, td {
  text-align: left;
}

/* Baris tabel bergantian */
tbody tr:nth-child(even) {
  background-color: #EFF6FF; /* Biru sangat muda */
}

tbody tr:nth-child(odd) {
  background-color: #FFFFFF; /* Putih */
}