/**
 * ═══════════════════════════════════════════════════════════════
 * RepCenter Layout v2.1 — rc-layout.css
 * ═══════════════════════════════════════════════════════════════
 * 
 * Standalone Layout-CSS mit rc- Prefix.
 * Keine Konflikte mit bestehendem style.css.
 *
 * Integration:
 *   <link rel="stylesheet" href="assets/css/rc-layout.css?v=HASH">
 *   Nach style.css einbinden.
 *
 * Font:
 *   Inter self-hosted in assets/fonts/inter/
 *   Alternativ: Google Fonts CDN als Fallback
 *
 * ═══════════════════════════════════════════════════════════════
 */

/* ═══════════════════════════════════════════
   FONT (self-hosted)
   Wenn Inter nicht auf dem Server liegt,
   Google Fonts CDN als Fallback im <head>:
   <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
   ═══════════════════════════════════════════ */
/*
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
*/

/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  --rc-sidebar-bg: #070d18;
  --rc-sidebar-hover: #0f1628;
  --rc-sidebar-active: #152238;
  --rc-header-bg: #070d18;
  --rc-content-bg: #f0f2f5;
  --rc-accent: #3ecfb2;
  --rc-accent-hover: #33b89d;
  --rc-accent-dim: rgba(62,207,178,0.12);
  --rc-blue: #4a7cff;
  --rc-text-white: #e8eaf0;
  --rc-text-muted: #7b8099;
  --rc-text-dim: #5c6078;
  --rc-text-dark: #1a1d2e;
  --rc-text-dark-muted: #6b7085;
  --rc-border-dark: #1a2744;
  --rc-border-light: #e0e3ea;
  --rc-field-bg: #f8f9fb;
  --rc-sidebar-width: 72px;
  --rc-header-height: 54px;
  --rc-radius-panel: 14px;
}

/* ═══════════════════════════════════════════
   APP LAYOUT
   ═══════════════════════════════════════════ */
.rc-app {
  display: flex;
  flex-direction: column;
  height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--rc-sidebar-bg);
  color: var(--rc-text-dark);
  overflow: hidden;
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.rc-header {
  height: var(--rc-header-height);
  background: var(--rc-header-bg);
  display: flex;
  align-items: center;
  padding: 0 16px 0 0;
  z-index: 100;
  flex-shrink: 0;
  position: relative;
}

.rc-header-logo {
  width: var(--rc-sidebar-width);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.rc-header-logo img {
  height: 32px;
  width: 32px;
  object-fit: contain;
  border-radius: 6px;
}
.rc-logo-accent { color: var(--rc-accent); }

.rc-page-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--rc-text-white);
  white-space: nowrap;
  letter-spacing: -0.2px;
  margin-right: 16px;
}

.rc-header-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.rc-entity-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--rc-sidebar-active);
  border: 1px solid var(--rc-border-dark);
  border-radius: 8px 0 0 8px;
  padding: 7px 14px;
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  height: 36px;
  transition: background 0.15s;
}
.rc-entity-selector:hover { background: #363c58; }
.rc-entity-selector svg { width: 13px; height: 13px; opacity: 0.6; }

.rc-header-search {
  display: flex;
  align-items: center;
  background: var(--rc-sidebar-active);
  border: 1px solid var(--rc-border-dark);
  border-left: none;
  border-radius: 0 8px 8px 0;
  padding: 0 14px;
  height: 36px;
  min-width: 300px;
}
.rc-header-search input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--rc-text-white);
  font-size: 12.5px;
  font-family: inherit;
  width: 100%;
}
.rc-header-search input::placeholder { color: var(--rc-text-dim); }
.rc-header-search svg {
  width: 15px; height: 15px;
  color: var(--rc-text-dim);
  margin-right: 8px;
  flex-shrink: 0;
}

.rc-header-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--rc-border-dark);
  background: transparent;
  color: var(--rc-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  margin-left: 6px;
}
.rc-header-btn:hover {
  background: var(--rc-sidebar-hover);
  color: var(--rc-text-white);
}
.rc-header-btn--primary {
  background: var(--rc-sidebar-active);
  color: var(--rc-text-white);
}
.rc-header-btn--primary:hover { background: #363c58; }
.rc-header-btn svg { width: 16px; height: 16px; }

.rc-header-right { display: flex; align-items: center; }

.rc-header-user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
  margin-left: 12px;
}
.rc-header-user:hover { background: var(--rc-sidebar-hover); }

.rc-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #93D500, #7ab800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.rc-header-user-name {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--rc-text-white);
}

.rc-header-user .rc-chevron {
  width: 12px; height: 12px;
  opacity: 0.4;
  color: var(--rc-text-muted);
}

/* ═══════════════════════════════════════════
   BODY
   ═══════════════════════════════════════════ */
.rc-body {
  display: flex;
  flex: 1;
  overflow: hidden;
  background: var(--rc-sidebar-bg);
}

/* ═══════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════ */
.rc-sidebar {
  width: var(--rc-sidebar-width);
  background: var(--rc-sidebar-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  flex-shrink: 0;
  padding: 8px 0 12px;
  scrollbar-width: none;
  transition: width 0.25s ease, transform 0.25s ease;
  z-index: 50;
}
.rc-sidebar::-webkit-scrollbar { display: none; }

.rc-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 56px;
  padding: 10px 0 8px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--rc-text-muted);
  font-size: 9.5px;
  font-weight: 500;
  text-align: center;
  transition: all 0.12s ease;
  user-select: none;
  margin: 3px 0;
  position: relative;
  line-height: 1;
  letter-spacing: 0.02em;
}
.rc-nav-item:hover {
  background: var(--rc-sidebar-hover);
  color: var(--rc-text-white);
}
.rc-nav-item.active {
  background: var(--rc-sidebar-active);
  color: #fff;
}

.rc-nav-icon {
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.rc-nav-icon svg {
  width: 18px; height: 18px;
  stroke-width: 1.5;
}

.rc-nav-divider {
  width: 32px;
  height: 1px;
  background: var(--rc-border-dark);
  margin: 6px 0;
  opacity: 0.6;
}

/* Einstellungen (nur Icon, unten) */
.rc-nav-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  width: 100%;
}
.rc-nav-bottom .rc-nav-item {
  padding: 10px 0;
  color: var(--rc-text-dim);
}
.rc-nav-bottom .rc-nav-item:hover {
  background: var(--rc-sidebar-hover);
  color: var(--rc-text-white);
}
.rc-nav-bottom .rc-nav-item.active {
  background: var(--rc-sidebar-active);
  color: #fff;
}
.rc-nav-bottom .rc-nav-icon { margin-bottom: 0; }

/* Sidebar Overlay (Tablet/Mobile) */
.rc-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 49;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.rc-sidebar-overlay.visible {
  display: block;
  opacity: 1;
}

/* Hamburger Toggle */
.rc-sidebar-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--rc-text-muted);
  cursor: pointer;
  transition: all 0.15s;
  flex-shrink: 0;
  margin-right: 6px;
}
.rc-sidebar-toggle:hover {
  background: var(--rc-sidebar-hover);
  color: var(--rc-text-white);
}
.rc-sidebar-toggle svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════
   CONTENT
   ═══════════════════════════════════════════ */
.rc-content {
  flex: 1;
  background: var(--rc-content-bg);
  overflow-y: auto;
  border-top-left-radius: var(--rc-radius-panel);
  box-shadow: -1px 0 8px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
}

.rc-content-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--rc-text-dim);
  gap: 10px;
}
.rc-content-placeholder svg { opacity: 0.25; }
.rc-content-placeholder .rc-ph-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--rc-text-dark-muted);
}
.rc-content-placeholder .rc-ph-sub {
  font-size: 12.5px;
  color: #999;
}

/* ═══════════════════════════════════════════
   LOGIN MODAL
   z-index: 500 — über RepCenter-Modalen (≤400)
   ═══════════════════════════════════════════ */
.rc-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 500;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
}
.rc-modal-overlay.visible { display: flex; }

.rc-login-modal {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  width: 360px;
  position: relative;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  animation: rcModalIn 0.2s ease;
}
@keyframes rcModalIn {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.rc-login-logo {
  text-align: center;
  margin-bottom: 22px;
  font-size: 20px;
  font-weight: 700;
  color: var(--rc-text-dark);
}

.rc-login-field { margin-bottom: 14px; }
.rc-login-field label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--rc-text-dark-muted);
  margin-bottom: 5px;
}
.rc-login-field input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--rc-border-light);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  color: var(--rc-text-dark);
  background: var(--rc-field-bg);
  transition: border-color 0.15s;
}
.rc-login-field input:focus {
  outline: none;
  border-color: var(--rc-accent);
  box-shadow: 0 0 0 3px var(--rc-accent-dim);
}

.rc-login-btn {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: var(--rc-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 6px;
}
.rc-login-btn:hover { background: var(--rc-accent-hover); }

.rc-login-error {
  display: none;
  color: #e53e3e;
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
}
.rc-login-close {
  position: absolute;
  top: 10px; right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--rc-text-dim);
  font-size: 18px;
  line-height: 1;
}
.rc-login-close:hover { color: var(--rc-text-dark); }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

/* Desktop ≥1280: Sidebar fest */
@media (min-width: 1280px) {
  .rc-sidebar-toggle { display: none !important; }
  .rc-sidebar-overlay { display: none !important; }
}

/* Small-Desktop 1024–1279 */
@media (min-width: 1024px) and (max-width: 1279px) {
  .rc-sidebar-toggle { display: flex; }
  .rc-header-search { min-width: 240px; }
}

/* Tablet 768–1023: Overlay-Drawer */
@media (min-width: 768px) and (max-width: 1023px) {
  .rc-sidebar-toggle { display: flex; }
  .rc-sidebar {
    position: fixed !important;
    top: var(--rc-header-height) !important;
    left: 0 !important; bottom: 0 !important;
    width: var(--rc-sidebar-width) !important;
    z-index: 200 !important;
    transform: translateX(-100%) !important;
    box-shadow: 4px 0 20px rgba(0,0,0,0.2);
  }
  .rc-body.rc-sidebar-open .rc-sidebar { transform: translateX(0) !important; }
  .rc-header-logo { width: auto; }
  .rc-header-search { min-width: 200px; }
  .rc-header-user-name { display: none; }
  .rc-content { border-top-left-radius: 0; }
}

/* Mobile <768: Overlay + Header-Center hidden */
@media (max-width: 767px) {
  .rc-sidebar-toggle { display: flex; }
  .rc-header { padding: 0 10px; height: 48px; }
  .rc-header-logo { width: auto; font-size: 16px; }
  .rc-header-center { display: none; }
  .rc-header-user-name { display: none; }
  .rc-sidebar {
    position: fixed !important;
    top: 48px !important;
    left: 0 !important; bottom: 0 !important;
    width: var(--rc-sidebar-width) !important;
    z-index: 200 !important;
    transform: translateX(-100%) !important;
    box-shadow: 4px 0 20px rgba(0,0,0,0.3);
  }
  .rc-body.rc-sidebar-open .rc-sidebar { transform: translateX(0) !important; }
  .rc-content { border-top-left-radius: 0; }
  .rc-nav-item { width: 46px; font-size: 8.5px; }
  .rc-nav-icon svg { width: 16px; height: 16px; }
}
/* ═══════════════════════════════════════════
   OVERRIDES — alte styles.css Konflikte
   Nach vollständiger Migration entfernen.
   ═══════════════════════════════════════════ */

/* Advanced Filter Bar: direkt unter Header, über Status-Tabs */
.advanced-filter-bar,
.filter-bar-container,
#advancedFilterBar {
  position: sticky !important;
  top: var(--sticky-filter-top, 1rem) !important;
  z-index: 30 !important;
  background: #fff !important;
  border-bottom: 1px solid var(--rc-border-light) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

/* Alter Filter-Button im Content-Bereich ausblenden */
#afToggleBtn,
.af-toggle,
.filter-toggle-btn,
button[onclick*="toggleAdvancedFilter"],
button[onclick*="AdvancedFilter.toggle"],
.content .filter-btn {
  display: none !important;
}

/* FilterBar über Status-Tabs positionieren */
.filter-bar-container {
  position: sticky !important;
  top: var(--sticky-filter-top, 1rem) !important;
  z-index: 100 !important;
  background: #f1f5f9 !important;
  border-bottom: none !important;
  box-shadow: none !important;
  overflow: visible !important;
}

/* table-card-new darf Dropdowns nicht clippen */
.table-card-new {
  overflow: visible !important;
}
.table-wrapper {
  position: relative !important;
  z-index: 1 !important;
}

/* Filter-Felder ÜBER den Status-Tabs anzeigen */
.filter-section {
  display: flex !important;
  flex-direction: column-reverse !important;
}

/* Advanced Filter Inline: kein weißer Hintergrund */
.af-inline,
.af-inline.open,
.filter-section .af-inline,
.filter-bar-container .af-inline {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  border-bottom: none !important;
  position: relative !important;
  z-index: 100 !important;
}

/* Dropdowns über der Tabelle */
.af-dropdown-wrap,
.af-dropdown-list,
.af-kunde-wrap {
  z-index: 200 !important;
}
.af-dropdown-wrap select,
.af-dropdown-wrap .af-dropdown-list {
  z-index: 200 !important;
}

/* Active-State für Header Filter-Button */
.rc-header-btn--active {
  background: var(--rc-accent) !important;
  color: #fff !important;
  border-color: var(--rc-accent) !important;
}
.rc-app {
  position: fixed !important;
  inset: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100vh !important;
  width: 100vw !important;
  z-index: 10 !important;
  overflow: hidden !important;
}
.rc-body {
  display: flex !important;
  flex: 1 !important;
  overflow: hidden !important;
}
.rc-sidebar {
  display: flex !important;
  width: var(--rc-sidebar-width) !important;
  min-width: var(--rc-sidebar-width) !important;
  flex-shrink: 0 !important;
  position: relative !important;
  left: 0 !important;
  top: auto !important;
  transform: none !important;
}
.rc-content {
  flex: 1 !important;
  overflow-y: auto;
  min-width: 0 !important;
}
.rc-header {
  display: flex !important;
  height: var(--rc-header-height) !important;
  flex-shrink: 0 !important;
}

/* ═══════════════════════════════════════════
   v5.9.0 — ANNOUNCEMENT BANNER (global, oberhalb Header)
   z-index 600 → über Login-Modal (500) damit Wartungshinweise
   auch in Session-Ablauf sichtbar sind.
   ═══════════════════════════════════════════ */
.rc-announce {
  position: relative;
  z-index: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  line-height: 1.4;
}
.rc-announce.is-info {
  background: #1e3a5f;
  color: #dbeafe;
  border-bottom-color: #2a4a73;
}
.rc-announce.is-info .rc-announce-icon { color: #93c5fd; }
.rc-announce.is-warn {
  background: #78350f;
  color: #fef3c7;
  border-bottom-color: #92400e;
}
.rc-announce.is-warn .rc-announce-icon { color: #fcd34d; }
.rc-announce.is-error {
  background: #7f1d1d;
  color: #fee2e2;
  border-bottom-color: #991b1b;
}
.rc-announce.is-error .rc-announce-icon { color: #fca5a5; }
.rc-announce-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.rc-announce-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rc-announce-badge {
  flex-shrink: 0;
  font-size: 9px;
  letter-spacing: 0.5px;
  padding: 2px 7px;
  border-radius: 3px;
  font-weight: 600;
  background: rgba(255,255,255,0.12);
}
.rc-announce-dismiss {
  flex-shrink: 0;
  background: none;
  border: none;
  color: inherit;
  opacity: 0.7;
  cursor: pointer;
  font-size: 16px;
  padding: 0 4px;
  line-height: 1;
}
.rc-announce-dismiss:hover { opacity: 1; }

/* Banner bei Stapelscan-Fullscreen ausblenden (Stapelscan hat z-index 500 und
   würde teilweise überlagert werden; Fokus soll beim Scannen uneingeschränkt sein).
   Element #si-fullscreen existiert nur während Fullscreen-Modus. */
body:has(#si-fullscreen) .rc-announce { display: none; }

/* Mobile: Text kann zweizeilig werden bei sehr langen Messages */
@media (max-width: 767px) {
  .rc-announce-text { white-space: normal; }
  .rc-announce { padding: 8px 12px; font-size: 11px; }
}

/* ═══════════════════════════════════════════
   v5.9.0 — QUICK ACTIONS DROPDOWN am "+"-Button
   ═══════════════════════════════════════════ */
.rc-qa-wrap {
  position: relative;
  display: inline-flex;
}
.rc-qa-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--rc-header-bg, #0b1221);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  padding: 4px;
  z-index: 150;
  display: none;
}
.rc-qa-menu.visible { display: block; }
.rc-qa-header {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 12px 4px;
  font-weight: 500;
}
.rc-qa-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 6px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: #e2e8f0;
  font-size: 12px;
  font-family: inherit;
  transition: background 0.12s;
}
.rc-qa-item:hover,
.rc-qa-item:focus {
  background: rgba(255,255,255,0.06);
  outline: none;
}
.rc-qa-item-icon {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rc-qa-item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.rc-qa-item-title {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}
.rc-qa-item-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  line-height: 1.2;
}
.rc-qa-sep {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 4px 8px;
}

/* ═══════════════════════════════════════════
   v5.9.0 — DASHBOARD GREETING (Begrüßungszeile)
   Hinweis: #dashboard hat bereits padding:24px 32px — deshalb hier 0,
   nur margin nach unten + interne Ausrichtung.
   ═══════════════════════════════════════════ */
.dv2-greeting {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 0 12px 0;
  margin-bottom: 12px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--dv2-border, #1a2744);
}
.dv2-greeting-text {
  font-size: 17px;
  font-weight: 500;
  color: var(--dv2-text, #e2e8f0);
  line-height: 1.2;
}
.dv2-greeting-meta {
  font-size: 11px;
  color: var(--dv2-dim, #7a8ba8);
  margin-top: 3px;
}
.dv2-greeting-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--dv2-dim, #7a8ba8);
}
.dv2-greeting-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .dv2-greeting { flex-wrap: wrap; gap: 4px; }
  .dv2-greeting-text { font-size: 15px; }
}
