:root {
  --navy-900: #1a2f4a;
  --navy-800: #1e3856;
  --navy-700: #234463;
  --blue-600: #235a86;
  --blue-500: #3572a0;
  --blue-100: #e7eef4;
  --brand-gradient: linear-gradient(135deg, #1a2f4a, #235a86);
  --ink: #1a2433;
  --gray-500: #667085;
  --gray-200: #e2e6ec;
  --gray-100: #f4f6f9;
  --white: #ffffff;
  --red-600: #c02b2b;
  --red-50: #fdecec;
  --radius: 10px;
  --shadow: 0 20px 50px rgba(10, 30, 60, 0.25);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
}

a {
  color: inherit;
}

/* ---------- Login page ---------- */

.login-page {
  height: 100vh;
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.login-split {
  display: flex;
  height: 100%;
}

.login-panel {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}

.login-card {
  width: 100%;
  max-width: 420px;
  padding: 12px 4px;
}

.login-image-panel {
  position: relative;
  flex: 1 1 50%;
  overflow: hidden;
}

.login-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.login-image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26, 47, 74, 0.65), rgba(35, 90, 134, 0.35));
}

.brand {
  text-align: center;
  margin-bottom: 28px;
}

.brand-logo {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
  margin: 0 auto 14px;
  border-radius: 6px;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.2px;
}

.brand-subtitle {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.login-card .brand-subtitle {
  font-size: 15px;
}

@media (max-width: 900px) {
  .login-page {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .login-split {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .login-panel {
    padding: 40px 24px 24px;
    overflow-y: visible;
  }

  .login-image-panel {
    flex: none;
    height: 220px;
    order: 2;
  }
}

@media (max-width: 560px) {
  .login-image-panel {
    display: none;
  }
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 7px;
}

.field input {
  width: 100%;
  padding: 15px 16px;
  font-size: 17px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--gray-100);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus {
  outline: none;
  border-color: var(--blue-500);
  background: var(--white);
}

.btn-primary {
  width: 100%;
  padding: 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  background: var(--blue-600);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-primary:hover {
  background: var(--brand-gradient);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: default;
}

.error-message {
  display: none;
  background: var(--red-50);
  color: var(--red-600);
  border: 1px solid #f4c7c7;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13.5px;
  margin-bottom: 16px;
}

.error-message.visible {
  display: block;
}

.login-footer {
  text-align: center;
  margin-top: 22px;
  font-size: 12px;
  color: var(--gray-500);
}

/* ---------- Dashboard page ---------- */

.dashboard-page {
  min-height: 100vh;
  background: var(--gray-100);
}

.topbar {
  background: var(--navy-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.25;
}

.topbar-logo {
  height: 40px;
  width: auto;
  border-radius: 4px;
  display: block;
}

.topbar-brand .brand-name {
  color: var(--white);
  text-align: left;
  font-size: 18px;
}

.topbar-brand .brand-subtitle {
  color: #9fc1e6;
  text-align: left;
  margin: 0;
}

.topbar-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-user .agent-name {
  font-size: 14px;
  font-weight: 600;
}

.topbar-user .agent-name .label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #9fc1e6;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.btn-logout {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.btn-logout:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.dashboard-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 32px;
}

.dashboard-heading {
  margin-bottom: 32px;
}

.dashboard-heading h1 {
  font-size: 24px;
  margin: 0 0 6px;
  color: var(--navy-900);
}

.dashboard-heading p {
  margin: 0;
  color: var(--gray-500);
  font-size: 14.5px;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.action-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 30, 60, 0.1);
  border-color: var(--blue-500);
}

.action-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-100);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.action-card h2 {
  margin: 0;
  font-size: 17px;
  color: var(--navy-900);
}

.action-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.45;
}

.action-card .cta {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
}

.loading-state {
  text-align: center;
  color: var(--gray-500);
  padding: 80px 0;
  font-size: 14px;
}

.dashboard-error {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  background: var(--red-50);
  color: var(--red-600);
  border: 1px solid #f4c7c7;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13.5px;
}

.dashboard-error-dismiss {
  background: none;
  border: none;
  color: inherit;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
}

/* ---------- Admin page ---------- */

.admin-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 28px;
}

.admin-tab {
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}

.admin-tab:hover {
  color: var(--navy-800);
}

.admin-tab.active {
  color: var(--blue-600);
  border-bottom-color: var(--blue-600);
}

.admin-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.admin-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px;
}

.admin-card h2 {
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--navy-900);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px 20px;
}

.field input:disabled {
  color: var(--gray-500);
  cursor: default;
}

.table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--gray-200);
}

.admin-table th {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

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

.admin-message {
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 18px;
  font-size: 13.5px;
}

.admin-message.error {
  background: var(--red-50);
  color: var(--red-600);
  border: 1px solid #f4c7c7;
}

.admin-message.success {
  background: #e7f6ec;
  color: #1f7a3f;
  border: 1px solid #bfe6cb;
}

/* ---------- Profile forms ---------- */

.field select {
  width: 100%;
  padding: 15px 16px;
  font-size: 17px;
  color: var(--ink);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--gray-100);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field select:focus {
  outline: none;
  border-color: var(--blue-500);
  background: var(--white);
}

.field select:disabled,
.field input[readonly] {
  color: var(--gray-500);
  cursor: default;
}

.field label .req {
  margin-left: 2px;
  color: var(--red-600);
}

.field-hint {
  margin: -10px 0 18px;
  font-size: 12.5px;
  color: var(--gray-500);
}

/* An input with a button sitting inside it — the password show/hide eye.
   The wrapper replaces the input as the .field's child, so the input keeps
   its full width and only gives up room on the right for the button. */

.field-with-action {
  position: relative;
}

.field-with-action input {
  padding-right: 46px;
}

.field-action {
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: none;
  color: var(--gray-500);
  cursor: pointer;
  transition: color 0.15s, background-color 0.15s;
}

.field-action:hover {
  color: var(--blue-600);
  background: var(--blue-100);
}

.field-action:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 1px;
}

.field-action svg {
  display: block;
  width: 18px;
  height: 18px;
}

.form-section {
  margin-bottom: 8px;
}

.form-section h3 {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-actions .btn-primary {
  width: auto;
  padding: 14px 26px;
}

.btn-secondary {
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.btn-small {
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.btn-secondary:hover,
.btn-small:hover {
  background: var(--blue-100);
  border-color: var(--blue-500);
}

.agency-code {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
}

.agency-code .label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.agency-code .value,
.admin-table .code-cell {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
}

.agency-code .value {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
}

.topbar-link {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 7px;
  transition: background 0.15s, border-color 0.15s;
}

.topbar-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ---------- Admin dashboard shell ---------- */

/* Everything here is scoped to .adm-page or an .adm- class. The admin area
   shares .field, .form-section, .admin-message and friends with the
   agent-facing my-profile page, so the few adjustments it needs are made
   under .adm-page rather than on the shared rule. */

.adm-page {
  --adm-navy: #14263f;
  --adm-content: #f4f6f9;
  --adm-hover: #1e3654;
  --adm-idle: #b7c6d9;
  --adm-danger: #f0999b;
  --adm-link: #185fa5;
  --adm-border: #e8edf3;
  --adm-topbar-h: 52px;
  --adm-side-w: 220px;
  margin: 0;
  min-height: 100vh;
  background: var(--adm-content);
}

/* Top bar */

.adm-topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: var(--adm-topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: var(--adm-navy);
  color: var(--white);
}

.adm-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.adm-logo {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background: var(--white);
  color: var(--adm-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.adm-brand-text {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
}

.adm-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #27405f;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

/* Sidebar */

.adm-sidebar {
  position: fixed;
  top: var(--adm-topbar-h);
  bottom: 0;
  left: 0;
  z-index: 10;
  width: var(--adm-side-w);
  background: var(--adm-navy);
  display: flex;
  flex-direction: column;
  padding: 18px 0 16px;
}

.adm-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.adm-nav-foot {
  margin-top: auto;
  padding-top: 14px;
}

.adm-nav-foot::before {
  content: '';
  display: block;
  height: 1px;
  margin: 0 20px 12px;
  background: rgba(255, 255, 255, 0.12);
}

/* One class for every item. Every state shares the same inset, fully rounded
   pill — active, hover and idle differ only in colour. */
.adm-nav-item {
  display: flex;
  align-items: center;
  gap: 11px;
  height: 42px;
  padding: 0 16px;
  /* Inset on BOTH sides so no item, in any state, touches a sidebar edge. */
  margin-left: 14px;
  margin-right: 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  color: var(--adm-idle);
  text-align: left;
  text-decoration: none;
  background: transparent;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.adm-nav-item svg {
  width: 17px;
  height: 17px;
  flex: none;
}

/* Hover on an inactive item: a subtle lighter-navy fill in the same pill. */
.adm-nav-item:hover {
  background: var(--adm-hover);
  color: var(--white);
}

/* The active item keeps the shared pill and only changes colour/weight. */
.adm-nav-item.is-active,
.adm-nav-item.is-active:hover {
  background: var(--adm-content);
  color: var(--adm-navy);
  font-weight: 500;
}

.adm-nav-item.is-logout {
  color: var(--adm-danger);
}

.adm-nav-item.is-logout:hover {
  background: var(--adm-hover);
  color: var(--adm-danger);
}

/* Content area */

.adm-main {
  margin-left: var(--adm-side-w);
  padding: calc(var(--adm-topbar-h) + 24px) 24px 40px;
}

.adm-view {
  max-width: 1080px;
}

.adm-loading {
  margin-left: var(--adm-side-w);
  padding: calc(var(--adm-topbar-h) + 80px) 24px;
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
}

.adm-card {
  background: var(--white);
  border: 1px solid var(--adm-border);
  border-radius: 12px;
  padding: 22px;
}

.adm-card + .adm-card {
  margin-top: 20px;
}

.adm-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.adm-card-head h2,
.adm-card > h2 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--adm-navy);
}

.adm-card-head h2 {
  margin: 0;
}

/* Page heading */

.adm-heading {
  margin-bottom: 22px;
}

.adm-heading h1 {
  margin: 0 0 6px;
  font-size: 23px;
  font-weight: 600;
  color: var(--adm-navy);
}

.adm-heading p {
  margin: 0;
  font-size: 14px;
  color: var(--gray-500);
}

/* Overview stat cards */

.adm-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.adm-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 132px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--adm-border);
  border-radius: 12px;
}

.adm-stat .adm-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
}

.adm-stat .adm-stat-value {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--adm-navy);
  font-variant-numeric: tabular-nums;
}

.adm-stat .adm-stat-sub {
  margin-top: auto;
  font-size: 12.5px;
  color: var(--gray-500);
}

.adm-stat-action {
  background: var(--adm-navy);
  border-color: var(--adm-navy);
  color: var(--white);
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
}

.adm-stat-action:hover {
  background: #1b3252;
}

.adm-stat-action .adm-stat-plus {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.adm-stat-action .adm-stat-label {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

.adm-stat-action .adm-stat-sub {
  color: #b7c6d9;
}

/* Tables */

.adm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.adm-table th,
.adm-table td {
  text-align: left;
  padding: 11px 14px;
}

.adm-table th {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-bottom: 1px solid var(--adm-border);
}

.adm-table tbody tr:nth-child(even) {
  background: #fafbfd;
}

.adm-table .adm-code {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 12.5px;
  letter-spacing: 0.4px;
}

.adm-table .adm-muted {
  color: var(--gray-500);
}

.adm-link {
  color: var(--adm-link);
  font-weight: 500;
  text-decoration: none;
}

.adm-link:hover {
  text-decoration: underline;
}

.adm-back {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--gray-500);
  text-decoration: none;
}

.adm-back:hover {
  color: var(--adm-navy);
}

.adm-empty {
  padding: 26px 14px;
  text-align: center;
  font-size: 13.5px;
  color: var(--gray-500);
}

/* Buttons in the admin shell */

.adm-btn {
  padding: 9px 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--adm-navy);
  border: 1px solid var(--adm-navy);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.adm-btn:hover {
  background: #1b3252;
}

.adm-btn-ghost {
  color: var(--adm-navy);
  background: var(--white);
  border-color: var(--adm-border);
}

.adm-btn-ghost:hover {
  background: var(--adm-content);
  border-color: #d6dde6;
}

/* Agency code callout on the detail page */

.adm-code-block {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--adm-border);
}

.adm-code-block .adm-code-label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.adm-code-block .adm-code-value {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 26px;
  font-weight: 600;
  color: var(--adm-navy);
  letter-spacing: 1px;
}

.adm-code-block .adm-code-hint {
  margin: 8px 0 0;
  font-size: 12.5px;
  color: var(--gray-500);
}

/* Read-only definition list */

.adm-group {
  margin-bottom: 22px;
}

.adm-group:last-child {
  margin-bottom: 0;
}

.adm-group h3 {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.adm-dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px 22px;
  margin: 0;
}

.adm-dl dt {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 3px;
}

.adm-dl dd {
  margin: 0;
  font-size: 14px;
  color: var(--ink);
  word-break: break-word;
}

.adm-dl dd.is-empty {
  color: #a6b0be;
}

/* Shared form styling, dialled down for the denser admin cards */

.adm-page .field input,
.adm-page .field select {
  padding: 11px 13px;
  font-size: 14px;
}

.adm-page .field label {
  font-size: 13px;
}

.adm-page .field {
  margin-bottom: 16px;
}

.adm-page .form-actions .btn-primary {
  padding: 11px 22px;
  font-size: 14px;
}

.adm-page .btn-secondary {
  padding: 11px 22px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .adm-page {
    --adm-side-w: 62px;
  }

  .adm-nav-item {
    justify-content: center;
    gap: 0;
    padding: 0 10px;
    margin-left: 8px;
    margin-right: 8px;
  }

  .adm-nav-item span {
    display: none;
  }

  .adm-brand-text {
    display: none;
  }
}
