* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #111;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  padding: 30px;
}

h1 {
  margin-bottom: 30px;
}

.form-section {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

input,
select,
button {
  padding: 10px;
  border: none;
  border-radius: 8px;
}

input,
select {
  background-color: #222;
  color: white;
}

button {
  background-color: #444;
  color: white;
  cursor: pointer;
}

button:hover {
  background-color: #666;
}

#content-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.card {
  background-color: #1c1c1c;
  padding: 15px;
  border-radius: 10px;
}

.card h2 {
  margin-bottom: 10px;
}

.card p {
  color: #aaa;
}