/* Pamatlietas */
* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
  background-color: #f7f7f8;
  color: #111;
}

/* Konteiners */
.container {
  max-width: 520px;
  margin: 60px auto;
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Virsraksti */
h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

/* Ievades lauki */
label {
  display: block;
  margin-top: 14px;
  margin-bottom: 4px;
  font-size: 14px;
  color: #555;
}

input,
select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

input:focus,
select:focus {
  outline: none;
  border-color: #6366f1;
}

/* Pogas */
button {
  width: 100%;
  margin-top: 18px;
  padding: 11px;
  border-radius: 8px;
  border: none;
  background-color: #6366f1;
  color: white;
  font-size: 14px;
  cursor: pointer;
}

button:hover {
  background-color: #4f46e5;
}

/* Saraksti */
ul {
  list-style: none;
  padding: 0;
}

li {
  background: #f2f2f2;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

/* Dzēšanas poga */
li button {
  width: auto;
  margin: 0;
  padding: 6px 10px;
  background: #ef4444;
  font-size: 12px;
}

li button:hover {
  background: #dc2626;
}

/* Navigācijas linki */
a {
  display: block;
  margin-top: 18px;
  text-align: center;
  text-decoration: none;
  color: #6366f1;
  font-size: 14px;
}

a:hover {
  text-decoration: underline;
}
