/* Galvenie stili */
body {
  font-family: Arial, sans-serif;
  background-color: #333; /* Fona krāsa */
  color: #fff; /* Teksta krāsa */
  margin: 0;
  padding: 20px;
}

/* Galvenā satura centrēšana */
main {
  max-width: 800px;
  margin: 0 auto; /* Centrējam saturu */
  background: #444; /* Fona krāsa */
  padding: 20px;
  border-radius: 10px; /* Noapaļoti stūri */
}

/* Navigācija */
nav ul {
  display: flex;
  justify-content: center; /* Centrējam navigācijas pogas */
  gap: 10px;
  padding: 0;
}

nav ul li {
  list-style: none; /* Noņemam saraksta punktus */
}

/* Navigācijas pogas */
nav button {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #007bff;
  border-radius: 20px; /* Noapaļotas malas */
  background-color: transparent;
  color: #007bff;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Navigācijas pogu efekts pie novietošanas */
nav button:hover {
  background-color: rgba(0, 123, 255, 0.2);
}

/* Aktīvā navigācijas poga */
nav button.active {
  background-color: #007bff;
  color: white;
}

/* Formas */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  font-size: 18px;
}

/* Ievades lauki un tekstlodziņi */
input,
textarea {
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  background-color: #555;
  color: #fff;
}

/* Pogas */
button {
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.1s ease;
  margin-top: 10px;
}

/* Apstiprināšanas poga */
button[type="submit"] {
  background-color: #007bff;
  color: white;
}

/* Apstiprināšanas pogas efekts pie novietošanas */
button[type="submit"]:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

/* Recepte saraksts */
ul {
  list-style: none;
  padding: 0;
}

/* Viena recepte sarakstā */
li {
  background-color: #555;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Recepšu nosaukumi */
.recipe-name {
  font-size: 18px;
  cursor: pointer;
  color: #00bfff;
  text-decoration: underline;
}

/* Recepšu nosaukuma efekts pie novietošanas */
.recipe-name:hover {
  color: #0077cc;
}
