html {
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Link styles */
a {
  text-decoration: none;
}

/* Table styles for better data display */
table {
  width: 100%;
  border-collapse: collapse;
}

table th {
  background-color: #f9fafb;
  font-weight: 600;
  text-align: left;
  padding: 0.75rem;
  border-bottom: 2px solid #e5e7eb;
}

table td {
  padding: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

table tr:hover {
  background-color: #f9fafb;
}

/* Form styles - Let Tailwind utilities handle form styling for consistency */

/* Button form styles */
button[type="submit"],
input[type="submit"] {
  cursor: pointer;
}