body {
  font-family: Arial, sans-serif;
  background: #f4f6f8;
  margin: 0;
}

/* NAVBAR */
nav {
  background: #2c3e50;
  padding: 12px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* CONTAINER */
.container {
  max-width: 500px;
  margin: 30px auto;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* INPUTS & BUTTONS */
input, button, select {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

button {
  background: #27ae60;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: #219150;
}

/* RESULTS */
.result {
  border: 1px solid #ddd;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  background: #fafafa;
}

/* LIST */
ul {
  list-style: none;
  padding: 0;
}

li {
  background: #ecf0f1;
  margin-top: 8px;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* DELETE BUTTON */
.delete-btn {
  background: #e74c3c;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 12px;
}

.delete-btn:hover {
  background: #c0392b;
}

/* STATS TEXT */
p {
  font-size: 16px;
  margin: 10px 0;
}