/* ─── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #2563eb;
  --primary-dark:  #1d4ed8;
  --primary-light: #dbeafe;
  --accent:        #3b82f6;
  --success:       #16a34a;
  --warning:       #d97706;
  --danger:        #e9aaaa;
  --bg:            #f1f5f9;
  --surface:       #ffffff;
  --sidebar-bg:    #1e2a3a;
  --sidebar-text:  #cbd5e1;
  --sidebar-active:#ffffff;
  --sidebar-hover: #2d3f54;
  --border:        #e2e8f0;
  --text:          #0f172a;
  --text-muted:    #64748b;
  --text-sm:       0.875rem;
  --radius:        8px;
  --radius-sm:     4px;
  --shadow:        0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:     0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── LAYOUT ────────────────────────────────────────────────────────────────── */
.app-layout {
  display: flex;
  min-height: 100vh;
}

/* ─── SIDEBAR ───────────────────────────────────────────────────────────────── */
.sidebar {
  width: 220px;
  background: var(--sidebar-bg);
  color: var(--sidebar-text);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  overflow-y: auto;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 16px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sidebar-logo-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sidebar-logo-icon svg { width: 20px; height: 20px; fill: white; }
.sidebar-logo-text { font-size: 13px; font-weight: 600; color: white; line-height: 1.3; }
.sidebar-logo-sub  { font-size: 11px; color: var(--sidebar-text); font-weight: 400; }

.sidebar-section {
  padding: 14px 0 4px;
}
.sidebar-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #64748b;
  padding: 0 16px 6px;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  color: var(--sidebar-text);
  font-size: 13px;
  font-weight: 500;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.sidebar-nav a:hover { background: var(--sidebar-hover); color: white; }
.sidebar-nav a.active { background: var(--primary); color: white; }
.sidebar-nav a svg { width: 16px; height: 16px; flex-shrink: 0; opacity: .8; }
.sidebar-nav a.active svg, .sidebar-nav a:hover svg { opacity: 1; }

.sidebar-footer {
  margin-top: auto;
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
}
.sidebar-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.sidebar-avatar {
  width: 30px; height: 30px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: white; flex-shrink: 0;
}
.sidebar-user-info { overflow: hidden; }
.sidebar-user-name  { font-weight: 600; color: white; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-user-email { color: #94a3b8; font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.btn-logout {
  display: flex; align-items: center; gap: 6px;
  color: #94a3b8; font-size: 12px; cursor: pointer;
  background: none; border: none; padding: 0; width: 100%;
  transition: color .15s;
}
.btn-logout:hover { color: white; }
.btn-logout svg { width: 14px; height: 14px; }

/* ─── MAIN CONTENT ──────────────────────────────────────────────────────────── */
.main-content {
  margin-left: 220px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  position: sticky;
  top: 0; z-index: 50;
}
.topbar-title { font-size: 13px; color: var(--text-muted); }

.page-content { padding: 24px; }

.page-header { margin-bottom: 20px; }
.page-header h1 { font-size: 20px; font-weight: 700; color: var(--text); }
.page-header p  { color: var(--text-muted); font-size: 13px; margin-top: 2px; }

/* ─── CARDS / STATS ─────────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.card-title { font-size: 14px; font-weight: 600; margin-bottom: 12px; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-bottom: 24px; }
.stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
}
.stat-card .stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; }
.stat-card .stat-value { font-size: 22px; font-weight: 700; color: var(--text); }
.stat-card .stat-sub   { font-size: 12px; color: var(--primary); font-weight: 500; margin-top: 2px; }

/* ─── BUTTONS ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500;
  cursor: pointer; border: none;
  transition: background .15s, opacity .15s, box-shadow .15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn:hover { opacity: .9; }
.btn-primary   { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); opacity: 1; }
.btn-secondary { background: white; color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--bg); opacity:1; }
.btn-danger    { background: var(--danger); color: white; }
.btn-danger:hover { background: #dc2626; opacity: 1; }
.btn-success   { background: var(--success); color: white; }
.btn-warning   { background: var(--warning); color: white; }
.btn-sm        { padding: 5px 10px; font-size: 12px; }
.btn-icon      { padding: 6px; border-radius: var(--radius-sm); }
.btn:disabled  { opacity: .5; cursor: not-allowed; }

/* ─── FORMS ─────────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 5px; color: var(--text); }
.form-label .req { color: var(--danger); }
.form-control {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text);
  background: white;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.form-hint { font-size: 11px; color: var(--text-muted); margin-top: 3px; }
.form-error { font-size: 12px; color: var(--danger); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

/* ─── TABLES ────────────────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; background: white; font-size: 13px; }
th { background: #f8fafc; font-weight: 600; text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--border); white-space: nowrap; font-size: 12px; color: var(--text-muted); }
td { padding: 9px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: #f8fafc; }
.text-right { text-align: right; }
.text-center { text-align: center; }

/* ─── BADGES ────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
}
.badge-active   { background: #dcfce7; color: #15803d; }
.badge-blocked  { background: #fee2e2; color: #b91c1c; }
.badge-planned  { background: #f1f5f9; color: #475569; }
.badge-reopened { background: #fef3c7; color: #92400e; }
.badge-teacher  { background: #dbeafe; color: #1d4ed8; }
.badge-director { background: #ede9fe; color: #5b21b6; }
.badge-operator { background: #fce7f3; color: #9d174d; }
.badge-admin    { background: #f1f5f9; color: #334155; }

/* ─── ALERTS ────────────────────────────────────────────────────────────────── */
.alert { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 13px; margin-bottom: 16px; border: 1px solid transparent; }
.alert-error   { background: #fef2f2; border-color: #fecaca; color: #b91c1c; }
.alert-success { background: #f0fdf4; border-color: #bbf7d0; color: #15803d; }
.alert-info    { background: #eff6ff; border-color: #bfdbfe; color: #1d4ed8; }
.alert-warning { background: #fffbeb; border-color: #fde68a; color: #92400e; }

/* ─── MODAL ─────────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: linear-gradient(135deg, rgba(187, 247, 208, .72) 0%, rgba(220, 252, 231, .78) 45%, rgba(209, 250, 229, .74) 100%);
  backdrop-filter: blur(2px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity .18s ease;
}
.modal-overlay.hidden { display: none; }
.modal,
.modal-dialog {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(10px) scale(.98);
  transition: transform .18s ease;
}
.modal-header {
  padding: 18px 20px 0;
  display: flex; align-items: flex-start; justify-content: space-between;
}
.modal-title { font-size: 16px; font-weight: 700; }
.modal-close { background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 20px; line-height: 1; padding: 0 4px; }
.modal-close:hover { color: var(--text); }
.modal-body   { padding: 16px 20px; }
.modal-footer { padding: 0 20px 18px; display: flex; gap: 10px; justify-content: flex-end; }
.modal-lg { max-width: 700px; }
.modal-overlay.modal-visible { opacity: 1; }
.modal-overlay.modal-visible .modal-dialog,
.modal-overlay.modal-visible .modal { transform: translateY(0) scale(1); }

/* ─── TABS ──────────────────────────────────────────────────────────────────── */
.tabs { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 20px; gap: 0; }
.tab-btn {
  padding: 10px 18px;
  background: none; border: none;
  font-size: 13px; font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .15s, border-color .15s;
}
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-btn:hover { color: var(--text); }
.tab-pane.hidden { display: none; }

/* ─── TIMESHEET GRID ────────────────────────────────────────────────────────── */
.ts-wrap { overflow-x: auto; }
.ts-table { border-collapse: collapse; font-size: 12px; white-space: nowrap; }
.ts-table th, .ts-table td {
  border: 1px solid #e2e8f0;
  padding: 4px 6px;
  text-align: center;
  min-width: 34px;
}
.ts-table th { background: #f8fafc; font-weight: 600; font-size: 11px; }
.ts-table .cat-col { text-align: left; min-width: 150px; max-width: 180px; padding: 6px 8px; }
.ts-table .cat-name { font-weight: 600; font-size: 12px; }
.ts-table .cat-rate { font-size: 10px; color: var(--text-muted); }
.ts-table .week-header { background: #eff6ff; font-weight: 700; font-size: 11px; }
.ts-table .sum-col { background: #eff6ff; font-weight: 700; }
.ts-table .sum-row td { background: #f0fdf4; font-weight: 700; }
.ts-table .total-col { background: #dbeafe; font-weight: 700; }
.ts-input {
  width: 34px; height: 26px;
  border: 1px solid transparent; border-radius: 3px;
  text-align: center; font-size: 12px;
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
}
.ts-input::-webkit-inner-spin-button, .ts-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.ts-input:focus { border-color: var(--primary); background: white; box-shadow: 0 0 0 2px rgba(37,99,235,.15); }
.ts-input:disabled { background: #f1f5f9; color: var(--text-muted); cursor: not-allowed; }
.ts-input.has-value { font-weight: 700; color: var(--primary); }
.ts-cell-stack { display: flex; align-items: center; justify-content: center; gap: 4px; }
.ts-comment-btn {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  border-radius: 4px;
  width: 22px;
  height: 22px;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .15s ease;
}
.ts-comment-btn.is-visible { opacity: 1; visibility: visible; pointer-events: auto; }
.ts-comment-btn:hover { border-color: var(--primary); color: var(--primary); }
.ts-comment-btn.has-comment { background: #dbeafe; border-color: #93c5fd; color: #1d4ed8; }
.ts-comment-btn:disabled { opacity: .5; cursor: not-allowed; }
.ts-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 20px;
}
.ts-summary-item { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 16px; }
.ts-summary-item .label { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.ts-summary-item .value { font-size: 18px; font-weight: 700; color: var(--text); }
.ts-summary-item .value.primary { color: var(--primary); }

/* Pastelowo żółte tło dla kolumn sum na karcie nauczyciela */
.ts-week-sub-header,
.ts-week-sub,
.ts-total-header,
.ts-total-cell {
  background: #fef9c3;
}

.ts-week-sub,
.ts-total-cell {
  font-weight: 600;
}

.ts-comments-ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

/* ─── LOGIN PAGE ────────────────────────────────────────────────────────────── */
.login-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 50%, #e0f2fe 100%);
}
.login-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  padding: 36px;
  width: 100%;
  max-width: 420px;
}
.login-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.login-logo-icon {
  width: 48px; height: 48px;
  background: var(--primary); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.login-logo-icon svg { width: 26px; height: 26px; fill: white; }
.login-logo-text h1  { font-size: 20px; font-weight: 700; }
.login-logo-text p   { font-size: 12px; color: var(--text-muted); }
.login-hint {
  font-size: 11px; background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px; margin-top: 16px;
}
.login-hint code { font-family: monospace; font-size: 11px; color: var(--primary); }

/* ─── PRINT ─────────────────────────────────────────────────────────────────── */
@media print {
  .sidebar, .topbar, .no-print, .btn, button { display: none !important; }
  .main-content { margin-left: 0 !important; }
  .page-content { padding: 0 !important; }
  body { background: white; font-size: 11px; }
  .print-header { margin-bottom: 16px; }
}

/* ─── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); transition: transform .2s; }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .ts-summary { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── UTILITIES ─────────────────────────────────────────────────────────────── */
.flex         { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2  { gap: 8px; }
.gap-3  { gap: 12px; }
.mb-3   { margin-bottom: 12px; }
.mb-4   { margin-bottom: 16px; }
.mb-6   { margin-bottom: 24px; }
.mt-3   { margin-top: 12px; }
.text-muted  { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-danger  { color: var(--danger); }
.text-success { color: var(--success); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-sm { font-size: 12px; }
.w-full { width: 100%; }
.hidden { display: none; }
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(37,99,235,.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .6s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
.toast-container {
  position: fixed; top: 16px; right: 16px; z-index: 9999;
  display: flex; flex-direction: column; gap: 8px;
}
.toast {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 13px;
  box-shadow: var(--shadow-md);
  min-width: 220px;
  display: flex; align-items: center; gap: 8px;
  animation: slideIn .2s ease;
}
.toast.success { border-left: 3px solid var(--success); }
.toast.error   { border-left: 3px solid var(--danger); }
.toast.info    { border-left: 3px solid var(--primary); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ─── PERIOD ACTIONS ────────────────────────────────────────────────────────── */
.period-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
  gap: 12px;
}
.period-icon {
  width: 36px; height: 36px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.period-icon svg { width: 18px; height: 18px; color: var(--primary); }
.period-info { flex: 1; min-width: 0; }
.period-name { font-weight: 600; font-size: 14px; }
.period-dates { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.period-actions { display: flex; gap: 8px; align-items: center; }

/* ─── QUICK ACTIONS ─────────────────────────────────────────────────────────── */
.quick-actions { display: grid; grid-template-columns: 1fr; gap: 8px; }
.quick-action-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500;
  cursor: pointer; text-decoration: none; color: var(--text);
  transition: background .15s, border-color .15s;
}
.quick-action-btn:hover { background: var(--bg); border-color: var(--primary); color: var(--primary); }
.quick-action-btn svg { width: 16px; height: 16px; opacity: .7; }

/* ─── LOGIN PAGE EXTRAS ──────────────────────────────────────────────────── */
.login-container {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 50%, #e0f2fe 100%);
  padding: 16px;
}
.login-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  padding: 36px;
  width: 100%;
  max-width: 420px;
}
.login-logo {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; text-align: center;
  margin-bottom: 24px;
}
.login-logo h1 { font-size: 20px; font-weight: 700; margin: 0; }
.login-logo p  { font-size: 13px; color: var(--text-muted); margin: 0; }
.token-display {
  font-family: monospace; font-size: 11px;
  background: #f8fafc; border: 1px solid var(--border);
  border-radius: 4px; padding: 8px 10px;
  word-break: break-all; margin: 8px 0 16px;
  color: var(--primary); font-weight: 700;
}
.token-info { margin-bottom: 12px; font-size: 13px; }

/* ─── TAB CONTENT (login page uses .tab-content, not .tab-pane) ─────────── */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ─── MISC EXTRAS ───────────────────────────────────────────────────────── */
.btn-block { width: 100%; }
.info-bar {
  background: var(--primary-light); color: var(--primary);
  padding: 10px 16px; border-radius: var(--radius-sm);
  font-size: 13px; margin-bottom: 16px;
}
.page-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; margin-bottom: 20px;
}
.page-header h2 { font-size: 20px; font-weight: 700; color: var(--text); margin: 0; }
.page-actions { display: flex; gap: 8px; }
.table-responsive { overflow-x: auto; }
.report-card { overflow-x: auto; }
.report-table { font-size: 12px; min-width: 900px; }
.report-table th { white-space: normal; min-width: 80px; font-size: 11px; }
.report-totals-row td { background: #f0fdf4; font-weight: 700; }
.report-header-info { font-size: 14px; margin-bottom: 12px; color: var(--text-muted); }
.audit-table { font-size: 12px; }
.audit-table code { background: #f1f5f9; padding: 2px 5px; border-radius: 3px; font-size: 11px; }
.pagination-bar { padding: 12px 16px; display: flex; gap: 6px; flex-wrap: wrap; }
.text-nowrap { white-space: nowrap; }
.loading { padding: 24px; text-align: center; color: var(--text-muted); font-size: 13px; }
.p-16 { padding: 16px; }
.card-header { padding-bottom: 12px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.card-header h3 { font-size: 15px; font-weight: 600; margin: 0; }
.card-footer { padding-top: 12px; border-top: 1px solid var(--border); }
.card-body { /* already has padding from .card */ }
.actions-cell { white-space: nowrap; }

/* ─── USERS LIST HIGHLIGHTS ───────────────────────────────────────────────── */
.users-row-admin td {
  background: rgba(100, 116, 139, 0.15);
}

.users-row-admin:hover td {
  background: rgba(100, 116, 139, 0.22);
}
