/* app/static/style.css */
body {
  font-family: system-ui, sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 2rem;
  color: #333;
}

.container {
  max-width: 800px;
  margin: auto;
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  background: #4f46e5;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 6px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

thead {
  background-color: #f3f4f6;
}

th,
td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

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

tbody tr:hover {
  background-color: #eef2ff;
}
