/* Izskata daļa */

body {
  margin: 0;
  min-width: 260px;
  background: #f3f4f6;
  font-family: Arial, sans-serif;
}

/* Virsraksta daļa */

.main-title {
  font-family: monaco, monospace;
  font-weight: lighter;
  font-size: 90px;
  padding-bottom: 10px;
  margin: 35px 0;
  text-align: center;
  color: #d4edfc;
  position: relative;
  display: block;
  z-index: 1; 
}

.main-title::before {
  content: "";
  position: absolute;
  top: -15%; 
  left: -10%; 
  width: 110%; 
  height: 300px; 
  background-color: #004d9c;
  z-index: -1;
  transform: translateY(-50%);
}



/* Tabulas daļa */

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 2px 50px rgba(0,0,0,0.1);
}

tr {
  border-bottom: 0.1px solid #e5e7eb;
}

td {
  padding: 8px 8px;
  font-size: 16px;
  color: #333;
  vertical-align: middle;
}

/* Checkbox daļa */

input[type="checkbox"] {
  width: 30px;
  height: 30px;
  cursor: pointer;
  accent-color: #000000;
}

td.checkboxCell {
  text-align: center;
  vertical-align: middle;
}

td.checkboxCell input[type="checkbox"]{
  transform: scale(1);
  cursor: pointer;
}

/* Galvenes daļa */

.header {
  background: #1f2937;
  color: #d8eaff;
  padding: 50px 1px;
  text-align: center;
}

/* Ievades daļa */

.text-box {
  width: 50%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  display: block;
  margin: 0 auto 5px auto;
}
.combo {
  background: #dddddd;
  width: 15%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  display: block;
  margin: 0 auto 5px auto;
}

label {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 5px;
  margin-top: 10px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Saglabāt pogas daļa */

.addBtn {
  margin-top: 15px;
  width: 8%;
  background: #020b13;  
  color: #d1f0ff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.addBtn:hover {
  background: #020000;
  transform: scale(1.05);
}

.addBtn:active {
  background: #020200; 
  transform: scale(0.95); 
}

/* Dzēst pogas daļa */

.deleteBtn {
  width: 100%;
  background: #005A9C;  
  color: #fff;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.deleteBtn:hover {
  background: #000080;
  transform: scale(1.05);
}

.deleteBtn:active {
  background: #0C2340; 
  transform: scale(0.95); 
}

/* Pabeigtā uzdevuma stils */
tr.check {
  background-color: #d3f8d3;
  color: #555;
  text-decoration: line-through;
}

