/* ============================================================
   TOETSPORTAAL - Beheerpagina stijlen
   (Admin/Leerkracht dashboard)
   ============================================================ */

/* ---- Login scherm ---- */
.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #003d55 0%, #005577 50%, #0077aa 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
}

.login-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 420px;
  overflow: hidden;
}

.login-header {
  background: linear-gradient(135deg, #003d55, #005577);
  color: #fff;
  padding: 30px 32px 24px;
  text-align: center;
}

.login-logo {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 24px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  color: #f5c366;
  margin-bottom: 14px;
}

.login-header h1 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.login-header p {
  font-size: 0.82rem;
  opacity: 0.7;
  font-weight: 300;
}

.login-body {
  padding: 30px 32px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #5a7080;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 0.93rem;
  padding: 10px 14px;
  border: 1.5px solid #cde4f0;
  border-radius: 8px;
  background: #fff;
  color: #1a2530;
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23005577' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #005577;
  box-shadow: 0 0 0 3px rgba(0,85,119,0.12);
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}

.form-row .form-group {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.btn-login {
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px;
  background: #005577;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.5px;
  margin-top: 6px;
  transition: background 0.22s;
}

.btn-login:hover {
  background: #003d55;
}

.btn-login:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.login-error {
  color: #d32f2f;
  font-size: 0.82rem;
  margin-bottom: 14px;
  padding: 10px 12px;
  background: #fdecea;
  border-radius: 6px;
  border-left: 3px solid #d32f2f;
  display: none;
}

.login-error.is-visible {
  display: block;
}

/* ---- Dashboard layout ---- */
.dashboard-page {
  display: none;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #f0f6fb;
  font-family: 'Roboto', sans-serif;
}

.dashboard-page.is-visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* ---- Dashboard navigatiebalk ---- */
.dash-nav {
  background: linear-gradient(135deg, #003d55, #005577);
  color: #fff;
  padding: 0 24px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 60px;
  gap: 16px;
}

.dash-nav-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

.dash-nav-brand span {
  opacity: 0.65;
  font-weight: 400;
  font-size: 0.82rem;
}

.dash-nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -ms-flex: 1;
  flex: 1;
  max-width: 380px;
}

.dash-tab {
  padding: 8px 18px;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  border: none;
  background: none;
  font-family: 'Roboto', sans-serif;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.dash-tab:hover {
  color: rgba(255,255,255,0.95);
}

.dash-tab.is-active {
  color: #fff;
  border-bottom-color: #c8973f;
}

.dash-nav-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.dash-nav-user span {
  opacity: 0.8;
}

.btn-logout {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-logout:hover {
  background: rgba(255,255,255,0.22);
}

.gold-bar-dash {
  height: 4px;
  background: linear-gradient(90deg, #c8973f 0%, #f5c366 50%, #c8973f 100%);
}

/* ---- Dashboard inhoud ---- */
.dash-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 28px 20px 48px;
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

/* ---- Panel header ---- */
.panel-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 14px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.panel-header h2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #005577;
}

.panel-header p {
  font-size: 0.84rem;
  color: #5a7080;
  margin-top: 2px;
}

/* ---- Knoppen ---- */
.btn {
  font-family: 'Roboto', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: opacity 0.2s, -webkit-transform 0.15s;
  transition: opacity 0.2s, transform 0.15s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

.btn:active {
  -webkit-transform: scale(0.97);
  transform: scale(0.97);
}

.btn-primary-dash {
  background: #005577;
  color: #fff;
}

.btn-primary-dash:hover {
  opacity: 0.88;
}

.btn-secondary {
  background: #e8f0f6;
  color: #005577;
  border: 1px solid #cde4f0;
}

.btn-secondary:hover {
  background: #d4e8f4;
}

.btn-danger {
  background: #fdecea;
  color: #d32f2f;
  border: 1px solid #f5b5b0;
}

.btn-danger:hover {
  background: #fbd5d0;
}

.btn-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.btn-success:hover {
  background: #d4eedb;
}

.btn-sm {
  padding: 5px 12px;
  font-size: 0.78rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  -webkit-transform: none;
  transform: none;
}

/* ---- Zoekbar beheer ---- */
.admin-search-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.admin-search-bar input,
.admin-search-bar select {
  font-family: 'Roboto', sans-serif;
  font-size: 0.88rem;
  padding: 9px 13px;
  border: 1.5px solid #cde4f0;
  border-radius: 8px;
  background: #fff;
  color: #1a2530;
  outline: none;
  transition: border-color 0.22s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.admin-search-bar input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 200px;
}

.admin-search-bar select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23005577' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 32px;
}

.admin-search-bar input:focus,
.admin-search-bar select:focus {
  border-color: #005577;
  box-shadow: 0 0 0 3px rgba(0,85,119,0.1);
}

/* ---- Toetsentabel ---- */
.exam-table-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,85,119,0.08);
  border: 1px solid #cde4f0;
  overflow: hidden;
  overflow-x: auto;
}

.exam-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 700px;
}

.exam-table th {
  background: #f0f6fb;
  color: #005577;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid #cde4f0;
  white-space: nowrap;
}

.exam-table td {
  padding: 13px 16px;
  border-bottom: 1px solid #eef3f7;
  vertical-align: middle;
  color: #1a2530;
}

.exam-table tr:last-child td {
  border-bottom: none;
}

.exam-table tr:hover td {
  background: #f7fafd;
}

/* Pincode cel: verborgen tekst */
.pincode-cell {
  font-family: 'Courier New', monospace;
  position: relative;
}

.pincode-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.pincode-hidden {
  letter-spacing: 3px;
  font-size: 1rem;
  color: #999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pincode-value {
  display: none;
}

.btn-show-pin {
  background: none;
  border: none;
  cursor: pointer;
  color: #005577;
  padding: 2px 4px;
  font-size: 0.76rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.btn-show-pin:hover {
  background: #e8f0f6;
}

/* Status badge */
.status-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.status-active {
  background: #e8f5e9;
  color: #2e7d32;
}

.status-inactive {
  background: #f5f5f5;
  color: #757575;
}

.status-scheduled {
  background: #fff8e1;
  color: #f57c00;
}

/* Acties cel */
.actions-cell {
  white-space: nowrap;
}

.actions-cell .btn {
  margin-right: 4px;
}

/* Lege rij */
.empty-row td {
  text-align: center;
  padding: 48px 20px;
  color: #5a7080;
  font-size: 0.9rem;
}

/* ---- Statistieken boven de tabel ---- */
.stats-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.stat-card {
  background: #fff;
  border: 1px solid #cde4f0;
  border-radius: 10px;
  padding: 14px 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 120px;
  box-shadow: 0 1px 4px rgba(0,85,119,0.07);
}

.stat-value {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #005577;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.76rem;
  color: #5a7080;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

/* ---- Modaal (formulier) ---- */
.form-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 30, 50, 0.7);
  z-index: 1000;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.form-modal-overlay.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 580px;
  overflow: hidden;
  -webkit-animation: modalSlideIn 0.25s ease;
  animation: modalSlideIn 0.25s ease;
  margin: auto;
}

@-webkit-keyframes modalSlideIn {
  from { opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px); }
  to   { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}
@keyframes modalSlideIn {
  from { opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px); }
  to   { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

.form-modal-header {
  background: linear-gradient(135deg, #003d55, #005577);
  color: #fff;
  padding: 20px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.form-modal-header h3 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.form-modal-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: background 0.2s;
}

.form-modal-close:hover {
  background: rgba(255,255,255,0.3);
}

.form-modal-body {
  padding: 26px 24px;
  max-height: 70vh;
  overflow-y: auto;
}

.form-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #eef3f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 10px;
  background: #fafcfe;
}

/* Pincode veld met toon/verberg knop */
.input-with-icon {
  position: relative;
}

.input-with-icon input {
  padding-right: 44px;
}

.input-icon-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #5a7080;
  padding: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.input-icon-btn:hover {
  color: #005577;
}

/* Pincode hint */
.pincode-hint {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.pincode-generated {
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #005577;
  background: #f0f6fb;
  border: 1px dashed #8dd1f5;
  padding: 6px 14px;
  border-radius: 6px;
}

.btn-generate-pin {
  font-family: 'Roboto', sans-serif;
  font-size: 0.78rem;
  padding: 6px 12px;
  background: #e8f0f6;
  color: #005577;
  border: 1px solid #cde4f0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
}

.btn-generate-pin:hover {
  background: #d4e8f4;
}

/* Formulier fout */
.form-error {
  color: #d32f2f;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-error.is-visible {
  display: block;
}

.alert {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.84rem;
  margin-bottom: 18px;
  display: none;
}

.alert.is-visible {
  display: block;
}

.alert-error {
  background: #fdecea;
  color: #d32f2f;
  border-left: 3px solid #d32f2f;
}

.alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border-left: 3px solid #2e7d32;
}

/* ---- Gebruikersbeheer tabel ---- */
.users-table-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,85,119,0.08);
  border: 1px solid #cde4f0;
  overflow: hidden;
}

.users-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.users-table th {
  background: #f0f6fb;
  color: #005577;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid #cde4f0;
}

.users-table td {
  padding: 13px 16px;
  border-bottom: 1px solid #eef3f7;
  vertical-align: middle;
}

.users-table tr:last-child td {
  border-bottom: none;
}

.users-table tr:hover td {
  background: #f7fafd;
}

.role-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.role-admin {
  background: #e3f2fd;
  color: #1565c0;
}

.role-teacher {
  background: #f3e5f5;
  color: #7b1fa2;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #005577;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  margin-right: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: 'Ubuntu', sans-serif;
}

.user-name-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Toastmelding */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1a2530;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  font-size: 0.88rem;
  font-weight: 500;
  max-width: 320px;
  z-index: 2000;
  display: none;
  -webkit-animation: toastIn 0.25s ease;
  animation: toastIn 0.25s ease;
}

.toast.is-visible {
  display: block;
}

.toast.toast-success {
  border-left: 4px solid #4caf50;
}

.toast.toast-error {
  border-left: 4px solid #f44336;
}

@-webkit-keyframes toastIn {
  from { opacity: 0; -webkit-transform: translateY(10px); transform: translateY(10px); }
  to   { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}
@keyframes toastIn {
  from { opacity: 0; -webkit-transform: translateY(10px); transform: translateY(10px); }
  to   { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

/* ---- Responsive beheer ---- */
@media (max-width: 768px) {
  .dash-nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px 14px;
    gap: 8px;
  }

  .dash-nav-tabs {
    max-width: none;
    width: 100%;
    overflow-x: auto;
  }

  .dash-tab {
    padding: 6px 14px;
  }

  .dash-content {
    padding: 16px 12px 36px;
  }

  .panel-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .stats-row {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .form-modal {
    max-width: 100%;
  }

  .toast {
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
  }
}

/* ============================================================
   LPD CHECKLIST (in toets-formulier)
   ============================================================ */
.lpd-checklist {
  max-height: 220px;
  overflow-y: auto;
  border: 1px solid #cde4f0;
  border-radius: 6px;
  padding: 8px;
  background: #f8fbfd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
}

.lpd-check-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.82rem;
  -webkit-transition: background 0.15s;
  transition: background 0.15s;
}

.lpd-check-label:hover {
  background: #e3f0fa;
}

.lpd-check-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  accent-color: #005577;
  cursor: pointer;
}

.lpd-check-code {
  font-weight: 700;
  color: #005577;
  min-width: 54px;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.lpd-check-desc {
  color: #1a2530;
  flex: 1;
  line-height: 1.3;
}

.lpd-check-module {
  font-size: 0.7rem;
  color: #5a7080;
  background: #e0eef6;
  border-radius: 3px;
  padding: 2px 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
