body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  color: #333;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
  color: #2c3e50;
  border-bottom: 2px solid #ecf0f1;
  padding-bottom: 10px;
}

.meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.form-grid div {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: bold;
  margin-bottom: 5px;
}

input, textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  height: 80px;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
}

button {
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

button.primary {
  background-color: #3498db;
  color: white;
}

button.danger {
  background-color: #e74c3c;
  color: white;
}

.table-section {
  margin-top: 40px;
}

.table-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

table.entries {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

table.entries th, table.entries td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

table.entries th {
  background-color: #f2f2f2;
}

table.entries tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.muted {
  color: #7f8c8d;
}
