/* Pamatstili visai lapai un vienota izskata uzturēšanai. */
* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
  background-color: #f7f7f8;
  color: #111;
}

/* Galvenais satura konteiners lapas centrā. */
.container {
  max-width: 620px;
  margin: 60px auto;
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Virsrakstu un apakštekstu noformējums. */
h1,
h2,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
}

/* Paziņojumu bloks informācijai, kļūdām un veiksmēm. */
.message {
  display: none;
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
}

.message.info,
.message.success,
.message.error {
  display: block;
}

.message.info {
  background: #eef2ff;
  color: #312e81;
}

.message.success {
  background: #ecfdf5;
  color: #065f46;
}

.message.error {
  background: #fef2f2;
  color: #991b1b;
}

/* Ievades lauki un formas elementi. */
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;
}

/* Primārās darbību 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;
}

/* Sarakstu stils datu attēlošanai. */
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;
  gap: 12px;
  font-size: 14px;
}

.empty-item {
  justify-content: center;
  color: #666;
}

/* Sekundārās pogas saraksta elementiem, piemēram, dzēšanai. */
li button {
  width: auto;
  margin: 0;
  padding: 6px 10px;
  background: #ef4444;
  font-size: 12px;
}

li button:hover {
  background: #dc2626;
}

/* Navigācijas saites starp projekta lapām. */
.nav-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #6366f1;
  font-size: 14px;
}

a:hover {
  text-decoration: underline;
}
