/* Checks list */
.check-list-wrapper {
  padding: 30px;
}

.check-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filters select {
  margin-right: 15px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.check-list-table {
  width: 100%;
  border-collapse: collapse;
}

.check-list-table th,
.check-list-table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
}

.check-list-table tr.status-due {
  background: #fffbe6;
}

.check-list-table tr.status-completed {
  background: #e7fce9;
}

.check-list-table tr.status-not_done {
  background: #ffe6e6;
}

/* Checks menu */
.check-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.check-tile {
  flex: 1 1 200px;
  padding: 26px;
  font-size: 18px;
  text-align: center;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(30, 35, 39, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.check-tile:hover {
  background: #f7f1ea;
  border-color: #cdbda8;
  transform: translateY(-2px);
}

/* Pending checks list */
.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  margin: 10px 0;
}

.check-list a {
  background: #fff;
  padding: 10px 14px;
  display: block;
  border-left: 5px solid var(--accent);
  text-decoration: none;
  color: var(--ink);
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 14px rgba(30, 35, 39, 0.06);
}

.check-list a:hover {
  background: #f7f1ea;
}

/* Account */
.account-box {
  background: #fff;
  border: 1px solid var(--border);
  padding: 20px;
  max-width: 440px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.account-box form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.account-feedback {
  margin-top: 6px;
}

/* Raise job */
.raise-job-panel {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

/* Job confirmation */
.confirmation {
  background-color: #2f6f63;
  color: #fff;
  padding: 40px;
  text-align: center;
  font-size: 1.2em;
  border-radius: 12px;
  margin: 60px auto;
  max-width: 600px;
  box-shadow: var(--shadow);
}

.confirmation h2 {
  margin-bottom: 6px;
}

/* Manage users */
.user-table td,
.user-table th {
  padding: 10px;
}

.user-table .disabled-row {
  opacity: 0.5;
}

.button-row {
  margin: 10px auto 15px;
  text-align: center;
  width: fit-content;
}

.add-user-btn {
  background: #2f6f63;
  color: #fff;
  padding: 8px 16px;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-block;
}

.add-user-btn:hover {
  background: #245b51;
}

.btn.small {
  font-size: 13px;
  padding: 6px 10px;
}

.btn.green {
  background-color: #4caf50;
  color: white;
}

.btn.green:hover {
  background-color: #43a047;
}

.btn.red {
  background-color: #f44336;
  color: white;
}

.btn.red:hover {
  background-color: #e53935;
}

.btn.blue {
  background-color: #2196f3;
  color: white;
}

.btn.blue:hover {
  background-color: #1e88e5;
}
