/* =========================================================
   THEME
========================================================= */
:root {
  --gradient-dir: 90deg;

  --bg1: #eef2ff;
  --bg2: #ffffff;

  --panel-grad-start: #ffffff;
  --panel-grad-end: #f8fafc;

  --primary: #4f46e5;
  --primary-dark: #4338ca;

  --toolbar1: #0f172a;
  --toolbar2: #020617;
  --toolbar-text: #ffffff;

  --text-main: #0f172a;
  --text-soft: #64748b;

  --border: #e5e7eb;
  --border-strong: #d1d5db;

  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 10px 24px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.16);

  --focus-ring: 0 0 0 3px rgba(79, 70, 229, 0.14);

  --font-main: "Segoe UI", Roboto, Arial, sans-serif;
  --font-size: 14px;

  --card-radius: 18px;
  --button-radius: 999px;
  --input-radius: 12px;

  --topbar-height: 52px;
  --container-max: 1800px;
}

/* =========================================================
   RESET
========================================================= */
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-main);
  font-size: var(--font-size);
  color: var(--text-main);
  background: linear-gradient(var(--gradient-dir), var(--bg1), var(--bg2));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =========================================================
   COMMON
========================================================= */
.main-container {
  max-width: var(--container-max);
  margin: 24px auto;
  padding: 0 20px;
}

.page-narrow {
  max-width: 1100px;
}

.panel-surface,
.search-panel,
.table-wrap,
.auth-box {
  background: linear-gradient(
    var(--gradient-dir),
    var(--panel-grad-start),
    var(--panel-grad-end)
  );
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
}

.control-base,
.search-panel input,
.search-panel select,
.search-panel textarea,
.auth-box input,
.form-textarea,
.queue-filter select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--input-radius);
  background: #fff;
  color: var(--text-main);
  font-size: 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.control-base,
.search-panel input,
.search-panel select,
.search-panel textarea,
.auth-box input,
.queue-filter select {
  height: 40px;
  padding: 8px 12px;
}

.control-base:focus,
.search-panel input:focus,
.search-panel select:focus,
.search-panel textarea:focus,
.auth-box input:focus,
.form-textarea:focus,
.queue-filter select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--focus-ring);
}

.gradient-primary {
  background: linear-gradient(var(--gradient-dir), var(--primary), var(--primary-dark));
}

.gradient-dark {
  background: linear-gradient(var(--gradient-dir), var(--toolbar1), var(--toolbar2));
}

.muted,
.sub,
.auth-sub,
.page-sub,
.section-sub,
.sync-host {
  color: var(--text-soft);
}

/* =========================================================
   TOPBAR
========================================================= */
.topbar {
  height: var(--topbar-height);
  color: var(--toolbar-text);
  background: linear-gradient(var(--gradient-dir), var(--toolbar1), var(--toolbar2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.brand,
.actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 26px;
  width: auto;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  height: 34px;
  padding: 0 14px;
  border: none;
  border-radius: var(--button-radius);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(var(--gradient-dir), var(--primary), var(--primary-dark));
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.18);
  text-decoration: none;
}

.btn-pill:active {
  transform: translateY(0);
}

.btn-pill.small {
  height: 28px;
  padding: 0 10px;
  font-size: 12px;
}

.btn-secondary {
  background: linear-gradient(var(--gradient-dir), #64748b, #475569);
  color: #fff;
}

.btn-warning {
  background: linear-gradient(var(--gradient-dir), #f59e0b, #d97706);
  color: #fff;
}

.btn-danger {
  background: linear-gradient(var(--gradient-dir), #dc2626, #991b1b);
  color: #fff;
}

/* =========================================================
   SEARCH PANEL
========================================================= */
.search-panel {
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.search-panel .row {
  grid-column: 1 / span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.row.datetime {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.time-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.time-block label,
.limit-left label,
.form-row > label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.row.limit {
  grid-column: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}

.limit-left,
.limit-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =========================================================
   TABLE
========================================================= */
.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

#tbl {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  background: transparent;
  table-layout: fixed;
}

#tbl th,
#tbl td {
  padding: 14px 12px;
  word-break: break-word;
}

#tbl th {
  font-weight: 700;
  color: var(--text-main);
  background: linear-gradient(
    var(--gradient-dir),
    var(--panel-grad-start),
    var(--panel-grad-end)
  );
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

#tbl td {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

#tbl tbody tr {
  transition: background 0.12s ease;
}

#tbl tbody tr:hover {
  background: rgba(15, 23, 42, 0.035);
}

#tbl th:first-child,
#tbl td:first-child {
  width: 36px;
  text-align: center;
  vertical-align: middle;
}

#tbl th:nth-child(2),
#tbl td:nth-child(2),
#tbl th:nth-child(3),
#tbl td:nth-child(3),
#tbl th:nth-child(4),
#tbl td:nth-child(4),
#tbl th:nth-child(5),
#tbl td:nth-child(5) {
  width: auto;
}

#tbl th:nth-child(6),
#tbl td:nth-child(6) {
  width: 260px;
}

#tbl td:nth-child(5) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#tbl td:last-child,
#tbl td.actions {
  white-space: nowrap;
}

#tbl td:last-child a,
#tbl td.actions .btn-pill,
#tbl td.actions button {
  margin-right: 6px;
  margin-bottom: 6px;
}

#tbl th[onclick] {
  user-select: none;
  cursor: pointer;
}

#tbl th[onclick]:hover {
  background: rgba(79, 70, 229, 0.06);
}

.muted-cell {
  text-align: center;
  color: var(--text-soft);
  padding: 22px 12px;
}

/* =========================================================
   PAGE HEAD / SECTION HEAD
========================================================= */
.page-head {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.page-head h2 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  background: linear-gradient(
    var(--gradient-dir),
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.78)
  );
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #0f172a;
  text-align: center;
}

.page-head h2::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 12px;
  border-radius: 50%;
  background: linear-gradient(var(--gradient-dir), var(--primary), var(--primary-dark));
  box-shadow: 0 0 10px rgba(79, 70, 229, 0.35);
}

.section-head {
  margin-top: 28px;
  margin-bottom: 12px;
}

.section-head h3 {
  margin: 0 0 4px;
  font-size: 20px;
  color: #0f172a;
}

/* =========================================================
   LOG BOX
========================================================= */
.log-box {
  margin-top: 10px;
  padding: 18px 20px;
  max-height: 400px;
  overflow: auto;
  border-radius: 14px;
  background: #0b1120;
  color: #22c55e;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.55;
  box-shadow: var(--shadow-sm);
}

/* =========================================================
   AUTH
========================================================= */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(79, 70, 229, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(99, 102, 241, 0.08), transparent 30%),
    linear-gradient(var(--gradient-dir), var(--bg1), var(--bg2));
}

.auth-box {
  width: 100%;
  max-width: 380px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}

.logo-login {
  width: 190px;
  max-width: 100%;
  margin: 0 auto 14px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.auth-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.auth-actions .btn-pill,
.auth-actions button,
.auth-actions a {
  flex: 1;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  margin: 0;
  border: none;
  line-height: 1;
  font: inherit;
  text-decoration: none;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.auth-box button {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: var(--button-radius);
  background: linear-gradient(var(--gradient-dir), var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.auth-box button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.22);
}

.auth-error {
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fee2e2;
  color: #991b1b;
  font-size: 13px;
  text-align: left;
}

.auth-success {
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #dcfce7;
  color: #166534;
  font-size: 13px;
  text-align: left;
}

.login-title {
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.app-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #1e293b;
  line-height: 1.25;
}

/* =========================================================
   FORM / SETTINGS / PANELS
========================================================= */
.form-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-textarea {
  min-height: 100px;
  padding: 12px 14px;
  font-family: inherit;
  resize: vertical;
}

.form-textarea:disabled {
  background: #f1f5f9;
  color: #94a3b8;
  cursor: not-allowed;
}

.form-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 4px;
}

.form-actions .btn-pill {
  min-width: 120px;
}

.check-grid,
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.check-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  color: #334155;
  cursor: pointer;
}

.check-item input {
  margin: 0;
}

.inline-form {
  display: inline;
}

.inline-form button {
  margin: 0;
}

/* =========================================================
   TAGS / BADGES
========================================================= */
.role-badge,
.queue-status,
.domain-tag,
.summary-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.role-badge {
  min-width: 64px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.role-admin {
  background: #fee2e2;
  color: #991b1b;
}

.role-user {
  background: #e0f2fe;
  color: #075985;
}

.full-access {
  font-weight: 600;
  color: #059669;
}

.domain-tag {
  padding: 4px 10px;
  margin: 2px 6px 2px 0;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  font-size: 12px;
  font-weight: 600;
}

.domain-tag.all {
  background: #dcfce7;
  color: #166534;
}

/* =========================================================
   SYNC / QUEUE
========================================================= */
.sync-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.sync-toolbar,
.queue-actions,
.all-sync-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sync-toolbar,
.queue-actions {
  flex-wrap: wrap;
}

.all-sync-actions {
  flex-wrap: nowrap;
  overflow-x: auto;
}

.sync-actions-left {
  justify-content: flex-start;
}

.sync-summary-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.sync-summary-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.summary-chip {
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  color: #334155;
}

.queue-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.queue-filter select {
  min-width: 140px;
  height: 34px;
}

.queue-status {
  min-width: 86px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: capitalize;
}

.queue-status.ready {
  background: #e2e8f0;
  color: #334155;
}

.queue-status.running {
  background: #dbeafe;
  color: #1d4ed8;
}

.queue-status.done {
  background: #dcfce7;
  color: #166534;
}

.queue-status.failed {
  background: #fee2e2;
  color: #991b1b;
}

.queue-row-active {
  background: rgba(79, 70, 229, 0.05);
}

.help-box {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}

/* =========================================================
   UI EDITOR
========================================================= */
#ui-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(var(--gradient-dir), var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 10000;
}

#ui-editor {
  position: fixed;
  right: 20px;
  bottom: 74px;
  width: 420px;
  max-width: calc(100vw - 24px);
  max-height: 75vh;
  overflow: auto;
  padding: 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  z-index: 9999;
}

#ui-editor.hidden {
  display: none;
}

.ui-header {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #0f172a;
}

.ui-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px 14px;
  align-items: center;
}

.ui-body label {
  font-size: 12px;
  color: #475569;
}

.ui-body input[type="color"] {
  width: 100%;
  height: 32px;
  padding: 0;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #fff;
}

.ui-body select,
.ui-body input[type="range"] {
  width: 100%;
}

.ui-body button {
  grid-column: 1 / span 2;
  height: 36px;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .search-panel {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .search-panel .row,
  .row.datetime,
  .sync-grid {
    grid-template-columns: 1fr;
  }

  .row.limit,
  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .limit-left,
  .limit-actions,
  .queue-filter {
    flex-wrap: wrap;
    margin-left: 0;
  }

  .main-container {
    margin: 18px auto;
    padding: 0 14px;
  }
}

@media (max-width: 640px) {
  .form-actions .btn-pill {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .topbar {
    padding: 0 14px;
  }

  .actions {
    gap: 8px;
  }

  .auth-box {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .app-name {
    font-size: 21px;
  }

  #ui-toggle {
    right: 14px;
    bottom: 14px;
  }

  #ui-editor {
    right: 12px;
    bottom: 64px;
    width: calc(100vw - 24px);
  }

  .ui-body {
    grid-template-columns: 1fr;
  }

  .ui-body button {
    grid-column: auto;
  }
}

#tbl th,
#tbl td {
  text-align: center;
  vertical-align: middle;
}

#tbl td.actions {
  text-align: center;
  white-space: nowrap;
}

#tbl td.actions .btn-pill,
#tbl td.actions button,
#tbl td.actions a {
  margin: 0 4px;
}

#tbl td:nth-child(5) {
  text-align: center;
}
#tbl th:first-child,
#tbl td:first-child {
  text-align: center;
  vertical-align: middle;
}
.ssl-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: center;
  overflow-x: auto;
}

.ssl-section {
  margin-top: 28px;
}

.ssl-section-head {
  margin-bottom: 12px;
}

.ssl-section-head h3 {
  margin: 0 0 4px;
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
}

.ssl-section-sub {
  font-size: 13px;
  color: #64748b;
}

.ssl-table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  background: linear-gradient(
    var(--gradient-dir),
    var(--panel-grad-start),
    var(--panel-grad-end)
  );
  box-shadow: var(--shadow-md);
}

.ssl-table {
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.ssl-table .col-domain {
  width: 34%;
}

.ssl-table .col-expire {
  width: 22%;
}

.ssl-table .col-action {
  width: 44%;
}

.ssl-table thead th {
  padding: 16px 18px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ssl-table thead th:first-child {
  border-top-left-radius: 18px;
}

.ssl-table thead th:last-child {
  border-top-right-radius: 18px;
}

.ssl-table tbody td {
  padding: 16px 18px;
  vertical-align: middle;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: #0f172a;
  background: transparent;
}

.ssl-table tbody tr:hover td {
  background: rgba(15, 23, 42, 0.03);
}

.ssl-domain {
  display: flex;
  text-align: center;
  flex-direction: column;
  gap: 4px;
}

.ssl-domain-name {
  font-weight: 700;
  color: #0f172a;
  word-break: break-word;
  text-align: center;
}

.ssl-domain-meta {
  font-size: 12px;
  color: #64748b;
}

.ssl-expire {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ssl-expire-date {
  font-weight: 600;
  color: #0f172a;
}

.ssl-expire-note {
  font-size: 12px;
  color: #64748b;
}

.ssl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.ssl-actions .btn-pill {
  margin: 0;
}

.ssl-actions .btn-pill.small {
  height: 30px;
  padding: 0 12px;
  font-size: 12px;
}

@media (max-width: 900px) {
  .ssl-table {
    min-width: 860px;
  }
}

.sys-mini-tab{
    display:flex;
    gap:12px;
    align-items:center;
    padding:8px 14px;
    border-radius:12px;
    background:rgba(255,255,255,.18);
    color:#fff;
    font-size:13px;
    font-weight:600;
    min-height:36px;
    white-space:nowrap;
}

.batch-log-panel{
    margin-top:16px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    padding:16px;
}

.batch-log-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:10px;
}

.batch-log-actions{
    display:flex;
    gap:8px;
}

.batch-log-view{
    width:100%;
    min-height:220px;
    resize:vertical;
    border:1px solid rgba(0,0,0,.08);
    border-radius:12px;
    padding:12px;
    font-family:monospace;
    font-size:13px;
    line-height:1.45;
    background:#0f172a;
    color:#d1fae5;
}
.batch-log-modal{
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.batch-log-modal.hidden{
    display: none;
}

.batch-log-dialog{
    width: min(1100px, 96vw);
    max-height: 88vh;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.batch-log-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.batch-log-actions{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.batch-log-view{
    width: 100%;
    min-height: 420px;
    max-height: 68vh;
    resize: vertical;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 12px;
    padding: 12px;
    font-family: monospace;
    font-size: 13px;
    line-height: 1.45;
    background: #08152f;
    color: #d1fae5;
}

.btn-pill.danger{
    background: linear-gradient(90deg, #ef4444, #dc2626);
    color: #fff;
}
#tbl tbody tr.selected {
    background: rgba(0, 123, 255, 0.15);
}

#tbl tbody tr:hover {
    background: rgba(0, 123, 255, 0.08);
}