:root {
  /* Wanted Design System semantic tokens */
  --primary-normal: #0066ff;
  --primary-strong: #0057dc;
  --label-normal: #171719;
  --label-neutral: rgba(46, 47, 51, 0.88);
  --label-alternative: rgba(55, 56, 60, 0.61);
  --label-assistive: rgba(55, 56, 60, 0.28);
  --background-normal: #ffffff;
  --background-alternative: #f7f7f8;
  --background-elevated: #ffffff;
  --interaction-disable: #f4f4f5;
  --line-neutral: rgba(112, 115, 124, 0.16);
  --line-alternative: rgba(112, 115, 124, 0.08);
  --status-positive: #00a878;
  --status-negative: #ff4242;
  --status-warning: #d97706;
  --status-info: #0066ff;
  --status-violet: #6541f2;
  --static-white: #ffffff;
  --radius-small: 8px;
  --radius-medium: 10px;
  --radius-large: 12px;
  --radius-xlarge: 16px;
  --shadow-xsmall: 0 1px 2px -1px rgba(23, 23, 23, 0.1);
  --shadow-small: 0 2px 8px rgba(23, 23, 23, 0.08);
  --shadow-medium: 0 8px 24px rgba(23, 23, 23, 0.12);

  color: var(--label-normal);
  background: var(--background-alternative);
  font-family: Pretendard, "Pretendard JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  font-feature-settings: "ss10" 1;
}

* { box-sizing: border-box; }

html { min-width: 320px; background: var(--background-alternative); }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--background-alternative);
  color: var(--label-normal);
}

button,
input,
select { font: inherit; }

button { cursor: pointer; }

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.36;
  letter-spacing: -0.3px;
}

h2 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.24px;
}

.shell {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 48px;
}

.topbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 164px;
  height: 27px;
  object-fit: contain;
  object-position: left center;
}

.brand-divider {
  width: 1px;
  height: 28px;
  flex: 0 0 auto;
  background: var(--line-neutral);
}

.eyebrow {
  margin: 0 0 2px;
  color: var(--label-alternative);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.2px;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.billing-badge,
.connection {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--line-neutral);
  border-radius: var(--radius-medium);
  background: var(--background-normal);
  color: var(--label-alternative);
  box-shadow: var(--shadow-xsmall);
  font-size: 11px;
  font-weight: 500;
}

.billing-badge strong { color: var(--label-normal); font-size: 12px; font-weight: 600; }

.connection-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--label-assistive);
}

.connection--live { color: var(--status-positive); }
.connection--live .connection-dot { background: var(--status-positive); }
.connection--loading { color: var(--status-warning); }
.connection--loading .connection-dot { background: var(--status-warning); animation: pulse 1s infinite; }
.connection--error { color: var(--status-negative); }
.connection--error .connection-dot { background: var(--status-negative); }

.user-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 4px;
  color: var(--label-alternative);
  font-size: 12px;
}

.user-menu[hidden] { display: none; }
.user-menu a { color: var(--primary-normal); font-weight: 600; text-decoration: none; }
.user-menu a:hover { text-decoration: underline; }

.filter-panel,
.logs-panel {
  border: 1px solid var(--line-neutral);
  border-radius: var(--radius-xlarge);
  background: var(--background-normal);
  box-shadow: var(--shadow-xsmall);
}

.filter-panel { padding: 18px 20px; }

.section-heading,
.logs-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.filter-heading { min-height: 40px; }
.filter-heading h2 { font-size: 18px; line-height: 1.4; }

.filter-heading-actions,
.charger-type-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.charger-type-switch {
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line-neutral);
  border-radius: var(--radius-medium);
  background: var(--background-alternative);
}

.charger-type-option {
  min-height: 30px;
  padding: 0 12px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--label-alternative);
  font-size: 12px;
  font-weight: 600;
}

.charger-type-option:hover { color: var(--label-normal); }
.charger-type-option.is-active {
  background: var(--background-normal);
  color: var(--primary-normal);
  box-shadow: var(--shadow-xsmall);
}

.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius-medium);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.43;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
}

.button:focus-visible,
input:focus-visible,
.chip:focus-visible,
.level input:focus-visible + span {
  outline: 3px solid rgba(0, 102, 255, 0.18);
  outline-offset: 2px;
}

.button:active:not(:disabled) { transform: scale(0.98); }
.button:disabled { cursor: not-allowed; color: var(--label-assistive); background: var(--interaction-disable); opacity: 1; }

.button--primary {
  color: var(--static-white);
  background: var(--primary-normal);
}

.button--primary:hover:not(:disabled) { background: var(--primary-strong); }

.button--ghost {
  color: var(--label-neutral);
  border: 1px solid var(--line-neutral);
  background: var(--background-normal);
}

.button--ghost:hover:not(:disabled) { background: var(--background-alternative); }

.filter-toggle {
  min-height: 36px;
  padding: 0 12px;
  border-color: transparent;
  background: var(--background-alternative);
  font-size: 13px;
}

.chevron {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-left: 2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s;
}

.filter-panel:not(.is-collapsed) .chevron { transform: translateY(2px) rotate(225deg); }

.filter-core {
  display: grid;
  grid-template-columns: minmax(300px, 1.25fr) minmax(330px, 1fr) auto;
  align-items: end;
  gap: 16px;
  padding-top: 12px;
}

.field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-core .field { gap: 6px; }

.field > span,
.compact-range > span,
legend {
  color: var(--label-neutral);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.43;
  letter-spacing: 0.2px;
}

.field small { color: var(--label-alternative); font-weight: 400; }

input,
select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line-neutral);
  border-radius: var(--radius-large);
  outline: 0;
  background: var(--background-normal);
  color: var(--label-normal);
  box-shadow: var(--shadow-xsmall);
  font-size: 16px;
  line-height: 1.5;
  transition: border-color 0.15s, box-shadow 0.15s, background-color 0.15s;
}

.filter-core input { height: 44px; }
input:hover, select:hover { border-color: rgba(112, 115, 124, 0.32); }
input:focus, select:focus { border-color: var(--primary-normal); box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12); }
input::placeholder { color: var(--label-assistive); }
::-webkit-calendar-picker-indicator { opacity: 0.52; }

.charger-search-wrap,
.search-field { position: relative; }

.charger-search-wrap input { padding-left: 44px; padding-right: 42px; }

.search-icon {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 16px;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--label-alternative);
  border-radius: 50%;
  pointer-events: none;
}

.filter-core .charger-search-wrap .search-icon { top: 14px; }

.search-icon::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -2px;
  width: 5px;
  height: 1.5px;
  border-radius: 1px;
  background: var(--label-alternative);
  transform: rotate(45deg);
}

.verified-mark {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--status-positive);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.15s, transform 0.15s;
}

.verified-mark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 5px;
  height: 3px;
  border-left: 1.5px solid white;
  border-bottom: 1.5px solid white;
  transform: rotate(-45deg);
}

.verified-mark.is-visible { opacity: 1; transform: scale(1); }

.charger-search-result {
  min-height: 16px;
  margin-top: -2px;
  color: var(--label-alternative);
  font-size: 12px;
  line-height: 1.34;
}

.charger-suggestions {
  position: absolute;
  z-index: 20;
  top: 72px;
  left: 0;
  right: 0;
  max-height: 280px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid var(--line-neutral);
  border-radius: var(--radius-large);
  background: var(--background-elevated);
  box-shadow: var(--shadow-medium);
}

.charger-suggestions[hidden] { display: none; }

.charger-suggestion {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius-small);
  background: transparent;
  color: var(--label-normal);
  font-size: 14px;
  text-align: left;
}

.charger-suggestion:hover,
.charger-suggestion:focus { outline: none; background: var(--background-alternative); }
.charger-suggestion::after { content: "선택"; color: var(--primary-normal); font-size: 12px; font-weight: 600; }
.charger-suggestion > span { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.charger-suggestion strong { overflow: hidden; color: var(--label-normal); font-size: 13px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.charger-suggestion small { color: var(--label-alternative); font-family: "SFMono-Regular", Consolas, monospace; font-size: 11px; }

.compact-range {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 16px;
}

.quick-buttons,
.level-options,
.toolbar-actions,
.diagnostics-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  background: var(--background-alternative);
  color: var(--label-alternative);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.15s, background-color 0.15s, border-color 0.15s, transform 0.15s;
}

.compact-range .chip { min-height: 44px; }
.chip:hover { color: var(--label-normal); background: #efeff0; }
.chip.is-active { color: var(--primary-normal); border-color: rgba(0, 102, 255, 0.18); background: rgba(0, 102, 255, 0.08); }
.chip:active { transform: scale(0.98); }

.button--query {
  min-width: 80px;
  min-height: 44px;
  align-self: center;
  margin-top: 18px;
}

.filter-details {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-alternative);
}

.is-collapsed .filter-details { display: none; }

.detail-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(240px, 1fr) 1.4fr;
  gap: 16px;
  align-items: end;
}

.query-note {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: var(--radius-large);
  background: var(--background-alternative);
  color: var(--label-alternative);
  font-size: 12px;
  line-height: 1.5;
}

.query-note .connection-dot { background: var(--status-positive); }

.levels {
  margin: 16px 0 0;
  padding: 16px 0 0;
  border: 0;
  border-top: 1px solid var(--line-alternative);
}

.levels legend { float: left; margin-right: 18px; line-height: 36px; }
.level input { position: absolute; opacity: 0; pointer-events: none; }

.level span {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line-neutral);
  border-radius: var(--radius-small);
  background: var(--background-normal);
  color: var(--label-assistive);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
}

.level input:checked + span { color: var(--label-neutral); border-color: rgba(112, 115, 124, 0.26); background: var(--background-alternative); }
.level--error input:checked + span { color: var(--status-negative); border-color: rgba(255, 66, 66, 0.18); background: rgba(255, 66, 66, 0.06); }
.level--warn input:checked + span { color: var(--status-warning); border-color: rgba(217, 119, 6, 0.18); background: rgba(217, 119, 6, 0.06); }
.level--info input:checked + span { color: var(--status-info); border-color: rgba(0, 102, 255, 0.18); background: rgba(0, 102, 255, 0.06); }
.level--debug input:checked + span { color: var(--status-violet); border-color: rgba(101, 65, 242, 0.18); background: rgba(101, 65, 242, 0.06); }

.diagnostics-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line-neutral);
  border-radius: var(--radius-large);
  background: var(--background-normal);
  box-shadow: var(--shadow-xsmall);
}

.diagnostics-copy { min-width: 0; }
.diagnostics-title-row { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.diagnostics-title-row strong { font-size: 16px; font-weight: 600; line-height: 1.5; }
.diagnostics-copy p { margin: 4px 0 0; color: var(--label-alternative); font-size: 13px; line-height: 1.45; }
.diagnostics-actions { flex: 0 0 auto; }
.diagnostics-actions [hidden] { display: none !important; }
[hidden] { display: none !important; }

.charger-online {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--background-alternative);
  color: var(--label-alternative);
  font-size: 12px;
  font-weight: 600;
}

.charger-online::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.charger-online--online { color: var(--status-positive); background: rgba(0, 168, 120, 0.08); }
.charger-online--offline { color: var(--label-alternative); }
.charger-online--error { color: var(--status-negative); background: rgba(255, 66, 66, 0.08); }

.validation { min-height: 0; margin: 8px 0 0; color: var(--status-negative); font-size: 13px; }
.validation:empty { display: none; }

.logs-panel {
  min-height: calc(100vh - 230px);
  margin-top: 16px;
  overflow: hidden;
}

.logs-toolbar {
  min-height: 80px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-alternative);
}

.title-row { display: flex; align-items: center; gap: 10px; }

.count {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--background-alternative);
  color: var(--label-alternative);
  font-size: 12px;
  font-weight: 600;
}

.search-field input { width: 240px; height: 40px; padding-left: 42px; font-size: 14px; }
.search-field .search-icon { top: 12px; }
.toolbar-actions .button { min-height: 40px; padding: 0 14px; font-size: 13px; }

.table-wrap {
  position: relative;
  min-height: 440px;
  max-height: calc(100vh - 310px);
  overflow: auto;
}

table { width: 100%; border-collapse: collapse; table-layout: fixed; }
thead { position: sticky; top: 0; z-index: 2; background: var(--background-alternative); }

th {
  padding: 12px 20px;
  border-bottom: 1px solid var(--line-neutral);
  color: var(--label-alternative);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.34;
  text-align: left;
}

th:nth-child(1) { width: 118px; }
th:nth-child(2) { width: 142px; }
th:nth-child(3) { width: 105px; }

td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--line-alternative);
  color: var(--label-neutral);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  line-height: 1.5;
  vertical-align: top;
}

tbody tr { transition: background-color 0.12s; }
tbody tr:hover { background: rgba(0, 102, 255, 0.025); }
.log-date { color: var(--label-alternative); }
.log-time { color: var(--label-neutral); }
.log-message { white-space: pre-wrap; overflow-wrap: anywhere; }

.level-badge {
  min-width: 60px;
  display: inline-block;
  padding: 4px 7px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.level-badge--error,
.level-badge--assert { color: var(--status-negative); background: rgba(255, 66, 66, 0.08); }
.level-badge--warn { color: var(--status-warning); background: rgba(217, 119, 6, 0.08); }
.level-badge--info { color: var(--status-info); background: rgba(0, 102, 255, 0.08); }
.level-badge--debug { color: var(--status-violet); background: rgba(101, 65, 242, 0.08); }
.level-badge--verbose,
.level-badge--unknown { color: var(--label-alternative); background: var(--background-alternative); }

.empty-state {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}

.empty-state[hidden] { display: none; }

.empty-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius-large);
  background: rgba(0, 102, 255, 0.06);
}

.empty-icon span {
  position: relative;
  width: 22px;
  height: 17px;
  border: 2px solid var(--primary-normal);
  border-top: 0;
}

.empty-icon span::before {
  content: "";
  position: absolute;
  left: 9px;
  top: -12px;
  width: 2px;
  height: 20px;
  background: var(--primary-normal);
  transform: rotate(40deg);
}

.empty-state h3 { margin-bottom: 7px; font-size: 16px; line-height: 1.5; }
.empty-state p { margin-bottom: 0; color: var(--label-alternative); font-size: 13px; line-height: 1.45; }

.pagination-status {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--line-alternative);
  color: var(--label-alternative);
  font-size: 12px;
  text-align: center;
}

.pagination-status[hidden] { display: none; }
.pagination-status.is-loading::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border: 2px solid var(--line-neutral);
  border-top-color: var(--primary-normal);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Keycloak entry page */
.login-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: var(--background-alternative);
}

.login-shell {
  width: min(1000px, 100%);
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  border: 1px solid var(--line-neutral);
  border-radius: 24px;
  background: var(--background-normal);
  box-shadow: var(--shadow-medium);
}

.login-brand-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 52px;
  background: var(--label-normal);
  color: var(--static-white);
}

.login-brand-panel img { width: min(300px, 78%); height: auto; filter: brightness(0) invert(1); }
.login-brand-panel .eyebrow { color: rgba(255, 255, 255, 0.55); }
.login-brand-panel h1 { margin-bottom: 18px; font-size: 42px; line-height: 1.15; letter-spacing: -1.4px; }
.login-brand-panel p:last-child { max-width: 430px; margin: 0; color: rgba(255, 255, 255, 0.68); font-size: 15px; line-height: 1.65; }

.login-card { display: flex; flex-direction: column; justify-content: center; padding: 52px; }
.login-card h2 { margin-bottom: 12px; font-size: 28px; line-height: 1.35; }
.login-card > p:not(.eyebrow) { margin-bottom: 28px; color: var(--label-alternative); font-size: 14px; line-height: 1.6; }

.sso-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: var(--radius-large);
  background: rgba(0, 102, 255, 0.08);
}

.sso-mark span { width: 18px; height: 22px; border: 2px solid var(--primary-normal); border-radius: 9px 9px 5px 5px; }
.login-button { width: 100%; min-height: 48px; }
.login-security { margin-top: 18px; color: var(--label-alternative); font-size: 11px; text-align: center; }
.login-security span { width: 6px; height: 6px; display: inline-block; margin-right: 5px; border-radius: 50%; background: var(--status-positive); }

@keyframes pulse { 50% { opacity: 0.35; } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1000px) {
  .brand-logo { width: 138px; height: 24px; }
  .billing-badge { display: none; }
  .filter-core { grid-template-columns: 1fr 1fr auto; }
  .detail-grid { grid-template-columns: 1fr 1fr; }
  .query-note { grid-column: 1 / -1; }
  .logs-toolbar { align-items: flex-start; flex-direction: column; }
  .toolbar-actions { width: 100%; }
  .search-field { flex: 1; }
  .search-field input { width: 100%; }
  .login-shell { grid-template-columns: 1fr; }
  .login-brand-panel { min-height: 270px; padding: 40px; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 20px, 1480px); padding-bottom: 20px; }
  .topbar { min-height: 76px; }
  .brand { gap: 10px; }
  .brand-logo { width: 112px; height: 21px; }
  .brand-divider { display: none; }
  .brand .eyebrow { display: none; }
  .brand h1 { font-size: 18px; }
  .header-status { gap: 6px; }
  .connection { min-height: 34px; padding: 0 10px; }
  .user-menu span { display: none; }
  .filter-panel { padding: 14px; border-radius: var(--radius-large); }
  .filter-heading { align-items: flex-start; }
  .filter-heading-actions { align-items: flex-end; flex-direction: column-reverse; gap: 6px; }
  .charger-type-option { padding: 0 9px; }
  .filter-core { grid-template-columns: 1fr auto; gap: 12px; }
  .field--charger { grid-column: 1 / -1; }
  .compact-range { padding-bottom: 0; }
  .compact-range .quick-buttons { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 2px; }
  .compact-range .chip { min-height: 40px; white-space: nowrap; }
  .button--query { min-height: 40px; margin-top: 18px; padding: 0 16px; }
  .detail-grid { grid-template-columns: 1fr; }
  .query-note { grid-column: auto; }
  .levels legend { float: none; display: block; margin-bottom: 10px; }
  .diagnostics-card { align-items: stretch; flex-direction: column; }
  .diagnostics-actions { width: 100%; }
  .diagnostics-actions .button { flex: 1; }
  .logs-panel { min-height: calc(100vh - 250px); border-radius: var(--radius-large); }
  .logs-toolbar { padding: 14px; }
  .toolbar-actions { align-items: stretch; }
  .search-field { flex-basis: 100%; }
  .toolbar-actions .button { flex: 1 1 auto; padding: 0 10px; }
  .table-wrap { max-height: calc(100vh - 320px); overflow-x: auto; }
  table { min-width: 760px; }
  th:nth-child(1) { width: 105px; }
  th:nth-child(2) { width: 125px; }
  th:nth-child(3) { width: 88px; }
  th, td { padding-left: 12px; padding-right: 12px; }
  .login-body { padding: 14px; }
  .login-brand-panel { min-height: 230px; padding: 28px; }
  .login-brand-panel h1 { font-size: 34px; }
  .login-card { padding: 34px 28px; }
  .login-card h2 { font-size: 25px; }
}
