/* Pamata stili */
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
  }

  /* Virsraksts */
  h2 {
    color: #a91919; /* Sarkans akcents */
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #a91919;
  }

  /* Formas elementi */
  label {
    display: inline-block;
    margin: 10px 5px 5px 0;
    font-weight: 600;
    color: #444;
  }

  select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    margin-right: 15px;
    min-width: 120px;
  }

  /* Pogas */
  button {
    background-color: #a91919; /* Sarkans */
    color: white;
    border: none;
    padding: 8px 15px;
    margin: 5px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
  }

  button:hover {
    background-color: #a91919; /* Tumšāks sarkans */
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }

  /* Meklēšanas lauks */
  #meklet {
    display: block;
    width: 100%;
    max-width: 400px;
    padding: 10px;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    border-left: 3px solid #a91919; /* Sarkans akcents */
  }

  /* Tabula */
  table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
    background-color: white;
  }

  th, td {
    border: 1px solid #ddd;
    padding: 12px 8px;
    text-align: center;
  }

  th {
    background-color: #a91919; /* Sarkans */
    color: white;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s;
  }

  th:hover {
    background-color: #a91919; /* Tumšāks sarkans */
  }

  /* Šķirošanas indikators */
  th::after {
    content: "↕";
    position: absolute;
    right: 8px;
    font-size: 12px;
    opacity: 0.7;
    color: white;
  }

  /* Rindu krāsas */
  tr:nth-child(even) {
    background-color: #fef5f5; /* Ļoti gaišs sarkans */
  }

  tr:hover {
    background-color: #ffebee; /* Gaišs sarkans */
  }

  /* Rediģējamas šūnas */
  td[contenteditable="true"] {
    background-color: #ffebee;
    outline: 2px solid #ef9a9a;
  }

  /* Atbildīgais dizains */
  @media (max-width: 768px) {
    body {
      padding: 10px;
    }
    
    select, button {
      width: 100%;
      margin: 5px 0;
    }
    
    #meklet {
      max-width: 100%;
    }
    
    table {
      font-size: 14px;
    }
    
    th, td {
      padding: 8px 4px;
    }
  }

.redigetajs-lauks {
  background-color: #fff8e1;
  outline: 2px solid #ffd54f;
}

.redigetajs-lauks:focus {
  background-color: #fff3e0;
  outline: 2px solid #ffb300;
}

.dzest-poga {
  background-color: #d32f2f;
}

.dzest-poga:hover {
  background-color: #b71c1c;
}

.dublet-poga {
  background-color: #1976d2;
}

.dublet-poga:hover {
  background-color: #0d47a1;
}

#meklet {
  transition: all 0.3s;
}

#meklet:focus {
  border-left: 3px solid #ffb300;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}