/* app.css – shared component styles */

/* Tabel styling */
.styled-table {
  border-collapse: collapse;
  margin: 2rem 0;
  width: 100%;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.styled-table thead tr {
  background: var(--heellichtpaars);
}
.styled-table th,
.styled-table td {
  padding: 0.75rem 1rem;
}
.styled-table tbody tr:nth-child(even) {
  background: var(--superlichtpaars);
}
.styled-table tbody tr:last-child {
  border-bottom: 2px solid var(--heellichtpaars);
}

/* Button component */
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--heellichtpaars);
  color: #fff;
  border: none;
  border-radius: 0.4rem;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s;
}
.btn:hover {
  opacity: 0.85;
}
.btn-delete {
  background: var(--rood);
}
