/* Flash auto-dismiss */
.flash-msg {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Table styling */
table {
  border-collapse: collapse;
  width: 100%;
}

th {
  text-align: left;
}
