:root {
  color-scheme: light;
  font-family: Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f7f8fa;
  color: #1f2937;
}

.container {
  width: min(1000px, 92%);
  margin: 0 auto;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
}

.header nav {
  display: flex;
  gap: 14px;
}

main {
  padding-bottom: 30px;
}

a {
  color: #1d4ed8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}

.button,
button {
  border: 0;
  border-radius: 8px;
  background: #1d4ed8;
  color: #fff;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
}

button:hover,
.button:hover {
  opacity: 0.9;
  text-decoration: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

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

.form-card,
.details-card {
  background: #fff;
  padding: 16px;
  border-radius: 10px;
}

label {
  display: block;
  margin: 10px 0 6px;
  font-weight: 600;
}

input {
  width: 100%;
  padding: 8px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
}

.inline {
  display: inline;
}

ul {
  padding-left: 20px;
}
