
*,
*:before,
*:after {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 2em;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: #333;
  background-color: #f2f2f2;
  line-height: 1.5;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  padding: 2em;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

h1, h3 {
  color: #333;
}

label {
  display: block;
  margin-bottom: 0.4em;
  font-weight: bold;
}

input, select, button, textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
}

button {
  background-color: #337ab7;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

button:hover {
  background-color: #5bc0de;
}

.table-container {
  overflow-x: auto;
  margin-top: 1.5em;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  margin-top: 1em;
}

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

.tableRow {
  background-color: #fafafa;
}
.tableRowOd {
  background-color: #f0f0f0;
}

a {
  color: #007bff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #242526;
  border: 1px solid #555;
  border-top: none;
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  animation: fadeSlideIn 0.2s ease-out;
}

.autocomplete-item {
  padding: 10px 12px;
  cursor: pointer;
  color: #e4e6eb;
  transition: background-color 0.2s;
}

.autocomplete-item:hover {
  background-color: #3a3b3c;
}

.options-row {
  display: flex;
  align-items: center;
  gap: 1em;
  margin: 1em 0;
}
.options-row input[type="checkbox"] {
  width: auto;
  margin-right: 0.25em;
}
.options-row label {
  margin: 0;
  font-weight: normal;
}
