
/* Pamatstils */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f2f4f8;
  margin: 0;
  padding: 20px;
  color: #333;
}

/* Virsraksti */
h1, h2, h3 {
  color: #2c3e50;
}

/* Formas */
form {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

form div {
  margin-bottom: 12px;
}

label {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 600;
}

input[type="text"],
input[type="date"],
input[type="file"],
button {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
  font-size: 15px;
}

button {
  background-color: #3498db;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #2980b9;
}

/* Tabula */
table {
  border-collapse: collapse;
  width: 100%;
  background-color: #ffffff;
  margin-top: 20px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

th, td {
  padding: 12px 16px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

th {
  background-color: #3498db;
  color: #ffffff;
  font-weight: 600;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

.info {
  background: #dff0d8;
  padding: 12px 16px;
  margin-top: 15px;
  border-left: 5px solid #3c763d;
  color: #3c763d;
  border-radius: 4px;
}

a.btn {
  display: inline-block;
  background: #2ecc71;
  color: white;
  padding: 10px 15px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

a.btn:hover {
  background: #27ae60;
}
