@import "layout.css";

/* Legacy compatibility styles */
.content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: var(--spacing-xl);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  background-color: var(--bg-primary);
}

/* Ensure buttons in tables are properly styled */
table td form {
  display: flex;
  justify-content: center;
}

table td form button,
table td form input[type="submit"] {
  width: 100%;
  max-width: 200px;
}
