@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES (RIZZ PAY PALETTE) ===== */
:root {
  --bg-primary: #0D0D0D;
  --bg-secondary: #111111;
  --bg-card: rgba(255, 255, 255, 0.02);
  --border: #1E1E1E;
  --border-glass: rgba(255, 255, 255, 0.05);
  
  --brand-main: #3B82F6;
  --brand-gradient: linear-gradient(135deg, #3B82F6 0%, #2563eb 100%);
  --brand-glow: rgba(59, 130, 246, 0.3);
  
  --text-primary: #ffffff;
  --text-secondary: #6b7280;
  --text-muted: #4b5563;
  
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  
  --sidebar-width: 80px;
  --sidebar-expanded-width: 280px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sidebar Toggle Desktop */
.desktop-toggle {
    position: absolute;
    right: -12px;
    top: 32px;
    width: 24px;
    height: 24px;
    background: var(--brand-main);
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.desktop-toggle:hover {
    transform: scale(1.1);
    background: #2563eb;
}

.sidebar-collapsed .desktop-toggle {
    transform: rotate(180deg);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-main);
}

/* Utility Classes */
.glass-card {
  background: var(--bg-card) !important;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass) !important;
}

.animate-fade-in {
  animation: fadeIn 0.4s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.5s cubic-bezier(0, 0, 0.2, 1) forwards;
}

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

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

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

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

/* Sidebar Base (Mini por padrão no Desktop) */
.sidebar {
  width: var(--sidebar-width);
  background: var(--bg-secondary);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  z-index: 1001;
  padding: 2rem 0.75rem;
  transition: var(--transition);
  overflow: hidden;
}

/* Sidebar Hover Expansion (Peek) */
.sidebar:hover {
    width: var(--sidebar-expanded-width);
    padding: 2rem 1.5rem;
    box-shadow: 20px 0 40px rgba(0, 0, 0, 0.4);
    z-index: 1002;
    overflow-y: auto;
}

/* Logo Management */
.sidebar-logo-icon {
    width: 100%;
    display: flex;
    justify-content: center;
    transition: var(--transition);
}

.logo-collapsed {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo-full {
    display: none;
}

.sidebar:hover .logo-collapsed {
    display: none;
}

.sidebar:hover .logo-full {
    display: block;
    width: auto;
    height: 100%;
    max-height: 40px;
    object-fit: contain;
    animation: fadeIn 0.2s ease-out;
}

/* Sidebar Links & User Card (Collapsed vs Expanded) */
.sidebar-link {
    justify-content: center;
    padding: 0.75rem;
    gap: 0;
}

.sidebar-link span,
.sidebar-user-info,
.sidebar-nav div[style*="font-size: 10px"] {
    display: none !important;
}

.sidebar-user-card {
    justify-content: center;
    padding: 0.75rem;
    gap: 0;
}

.sidebar-user-card a {
    display: none;
}

/* Expanded state on Hover */
.sidebar:hover .sidebar-link {
    justify-content: flex-start;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
}

.sidebar:hover .sidebar-link span,
.sidebar:hover .sidebar-user-info,
.sidebar:hover .sidebar-nav div[style*="font-size: 10px"] {
    display: block !important;
    animation: fadeIn 0.2s ease-out;
}

.sidebar:hover .sidebar-user-card {
    justify-content: flex-start;
    padding: 1rem;
    gap: 0.75rem;
}

.sidebar:hover .sidebar-user-card a {
    display: block;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.sidebar-logo-text {
  display: none;
}

.sidebar-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 12px;
  transition: var(--transition);
  margin-bottom: 0.25rem;
}

.sidebar-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.sidebar-link.active {
  background: var(--brand-main);
  color: #fff;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.sidebar-user-card {
  background: #0D0D0D;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.sidebar-user-avatar {
  width: 36px;
  height: 36px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--brand-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.sidebar-user-info {
  flex: 1;
  min-width: 0;
}

.sidebar-user-name {
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Main Content */
.main-content {
  margin-left: var(--sidebar-width);
  flex: 1;
  padding: 2rem;
  width: calc(100% - var(--sidebar-width));
  min-height: 100vh;
  transition: var(--transition);
}

@media (max-width: 1024px) {
  .desktop-toggle {
    display: none;
  }
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .sidebar.active {
    transform: translateX(0);
  }
  .main-content {
    margin-left: 0;
    padding: 1.5rem;
    width: 100%;
  }
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--brand-main);
}

.breadcrumb-sep {
  opacity: 0.3;
}

.breadcrumb-current {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--brand-main);
  background: rgba(59, 130, 246, 0.1);
  padding: 2px 8px;
  border-radius: 6px;
}

/* Page Header */
.page-header {
  margin-bottom: 2.5rem;
}

.page-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* Tab Navigation */
.tab-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

/* Topbar */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  gap: 2rem;
}

.user-greeting {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.header-date {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.journey-bar {
  width: 150px;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  overflow: hidden;
}

.journey-progress {
  height: 100%;
  background: var(--brand-main);
  border-radius: 100px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile Header & Sidebar Toggle */
.mobile-header {
  display: none;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 101;
}

.sidebar-toggle-btn {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 1024px) {
  .mobile-header {
    display: flex;
  }
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 20px 0 40px rgba(0, 0, 0, 0.5);
  }
  .sidebar.active {
    transform: translateX(0);
  }
}

.tab-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  border: 1px solid transparent;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.tab-btn.active {
  background: var(--brand-main);
  color: #fff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.user-greeting {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.header-date {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Dashboard Specific Store */
.journey-bar {
  width: 100%;
  height: 6px;
  background: #1A1A1A;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.journey-progress {
  height: 100%;
  background: var(--brand-main);
  border-radius: 100px;
  transition: width 1s ease-out;
}

.filter-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 0.4rem;
  border-radius: 100px;
  width: fit-content;
}

.filter-pill {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  background: transparent;
}

.filter-pill.active {
  background: var(--brand-main);
  color: #fff;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.stat-card-rizz {
  border-radius: 24px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid var(--border-glass);
  background: var(--bg-card);
}

.stat-card-rizz:hover {
  transform: translateY(-4px);
}

.stat-card-rizz.primary {
  background: var(--brand-gradient);
  border: none;
  box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.5);
}

.stat-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.primary .stat-icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.primary .stat-label {
  color: rgba(255, 255, 255, 0.8);
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.stat-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
}

.primary .stat-sub {
  color: rgba(255, 255, 255, 0.6);
}

/* Transações */
.tx-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  margin-bottom: 0.75rem;
  transition: background 0.2s;
}

.tx-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.tx-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
}

.tx-status-pill {
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Grid System */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* Buttons */
.btn-premium {
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  background: var(--bg-secondary);
  color: #fff;
  border: 1px solid var(--border);
}

.btn-premium:hover {
  background: #1A1A1A;
}

/* Helpers */
.hidden { display: none; }
.w-full { width: 100%; }
.mt-4 { margin-top: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* ===== COMPATIBILITY CLASSES (REINTRODUCED) ===== */
.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.card-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Tables */
.table-wrapper {
  overflow-x: auto;
  width: 100%;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th {
  text-align: left;
  padding: 1rem 1.5rem;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--border);
}

.table td {
  padding: 1rem 1.5rem;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* Badges */
.badge {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-success { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.badge-warning { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.badge-danger { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.badge-info { background: rgba(59, 130, 246, 0.1); color: var(--brand-main); }
.badge-neutral { background: rgba(255, 255, 255, 0.05); color: var(--text-secondary); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  gap: 8px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.btn-icon:hover {
  background: rgba(59, 130, 246, 0.15);
  color: var(--brand-main);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-1px);
}

.btn-icon.danger:hover {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary {
  background: var(--brand-main);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--border);
}

.btn-danger {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Form Units */
.form-group {
  margin-bottom: 0; /* Gap handles spacing now */
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.form-input, .form-control, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.9rem 1.25rem;
  color: #fff;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-input:hover, .form-select:hover, .form-textarea:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand-main);
  background: rgba(13, 13, 13, 0.95);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 0 20px rgba(59, 130, 246, 0.2);
  transform: translateY(-1px);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #6b7280;
  font-weight: 400;
}

.form-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* Premium Switch */
.premium-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.premium-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.premium-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  transition: .4s;
  border-radius: 34px;
}

.premium-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: var(--text-muted);
  transition: .4s;
  border-radius: 50%;
}

.premium-switch input:checked + .premium-slider {
  background-color: rgba(59, 130, 246, 0.2);
  border-color: var(--brand-main);
}

.premium-switch input:checked + .premium-slider:before {
  transform: translateX(20px);
  background-color: var(--brand-main);
  box-shadow: 0 0 10px var(--brand-glow);
}

/* Priority List for Gateways */
.priority-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.auth-split-container {
  display: flex;
  min-height: 100vh;
  width: 100%;
  flex-direction: row;
}

.auth-split-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 4.5rem;
  overflow: hidden;
}

.auth-split-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
}

.auth-image-content {
  position: relative;
  z-index: 10;
  max-width: 550px;
}

.auth-image-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  color: #fff;
}

.auth-image-text {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  font-weight: 400;
}

.auth-split-form {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem;
  background: var(--bg-primary);
  position: relative;
  z-index: 20;
}

.auth-form-wrapper {
  width: 100%;
  max-width: 440px;
}

/* Fix Mobile */
@media (max-width: 1024px) {
  .auth-split-container {
    flex-direction: column;
  }
  .auth-split-image {
    display: none;
  }
  .auth-split-form {
    padding: 2.5rem;
  }
}

.priority-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.priority-item:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(20, 20, 20, 0.8);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.priority-item.dragging {
  opacity: 0.5;
  border-color: var(--brand-main);
}

.drag-handle {
  cursor: grab;
  color: var(--text-muted);
  transition: color 0.2s;
}

.drag-handle:active {
  cursor: grabbing;
}

.drag-handle:hover {
  color: #fff;
}

.priority-number {
  font-weight: 800;
  color: var(--text-muted);
  font-size: 1.1rem;
  min-width: 24px;
}
