/* ==========================================================================
   ZeroSeven — Mobile-Optimized Pure Dark Black & White Minimalist Design System
   No Overlaps, Clean Address Input, Unified White Icons, High-Contrast Sleek Aesthetics
   ========================================================================== */

:root {
  --bg-pure-black: #000000;
  --bg-card: #090909;
  --bg-card-inner: #121212;
  --bg-hover: #181818;
  --bg-badge: #1c1c1c;
  --bg-input: #050505;

  --border-dim: #1e1e1e;
  --border-medium: #2a2a2a;
  --border-light: #3a3a3a;
  --border-focus: #ffffff;

  --text-white: #ffffff;
  --text-gray: #a1a1aa;
  --text-muted: #71717a;
  --text-dark: #3f3f46;

  --font-mono: 'Geist Mono', 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --font-sans: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 15px;
  }
}

body {
  background-color: var(--bg-pure-black);
  color: var(--text-white);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Unified Pure White SVG Icons */
.svg-icon {
  width: 15px;
  height: 15px;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.svg-icon-black {
  stroke: #000000;
}

/* 1. Top Announcement Bar */
.top-announcement {
  background-color: #0c0c0c;
  border-bottom: 1px solid var(--border-dim);
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  line-height: 1.4;
}

.top-announcement strong {
  color: #ffffff;
  font-weight: 700;
}

.top-announcement-close {
  position: absolute;
  right: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-announcement-close .svg-icon {
  width: 13px;
  height: 13px;
  stroke: var(--text-muted);
}

.top-announcement-close:hover .svg-icon {
  stroke: #ffffff;
}

/* 2. Navbar */
.navbar-root {
  background-color: var(--bg-pure-black);
  border-bottom: 1px solid var(--border-dim);
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.85rem;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand-box {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.brand-icon-box {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  font-family: var(--font-mono);
}

.brand-titles {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1.15;
}

.brand-sub {
  font-size: 0.55rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 640px) {
  .nav-links-menu {
    display: none;
  }
}

.nav-external-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-gray);
  font-size: 0.8rem;
  font-weight: 600;
  transition: color 0.15s;
}

.nav-external-link:hover {
  color: #ffffff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.icon-btn-dark {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  color: #ffffff;
  padding: 0.4rem 0.55rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.15s;
  font-family: var(--font-mono);
  font-weight: 600;
  text-decoration: none;
}

.icon-btn-dark:hover {
  background: var(--bg-hover);
  border-color: var(--border-medium);
  color: #ffffff;
}

/* 3. Main Container */
.main-wrapper {
  max-width: 1200px;
  margin: 0.75rem auto 2.5rem;
  padding: 0 0.65rem;
  width: 100%;
}

@media (min-width: 768px) {
  .main-wrapper {
    margin: 1.25rem auto 3rem;
    padding: 0 1rem;
  }
}

/* Terminal / Mailbox Main Box */
.terminal-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Terminal Header */
.terminal-header {
  padding: 0.5rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-dim);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  background-color: #040404;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.terminal-header-left {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.7rem;
}

.status-dot-white {
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
}

.terminal-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
}

.status-dot-pulse {
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
  animation: whitePulse 2s infinite;
}

@keyframes whitePulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* Address Input Row Section (Clean, Copy & New) */
.address-section {
  padding: 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .address-section {
    padding: 1rem;
    gap: 0.75rem;
  }
}

.address-bar-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .address-bar-row {
    flex-direction: row;
    align-items: center;
    background-color: var(--bg-input);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-sm);
    padding: 0.35rem 0.5rem;
    gap: 0.4rem;
  }
  .address-bar-row:focus-within {
    border-color: #ffffff;
  }
}

/* The Input Box Containing Username & Domain Select */
.address-inputs {
  display: flex;
  align-items: center;
  background-color: var(--bg-input);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.45rem;
  gap: 0.35rem;
  width: 100%;
  min-width: 0;
}

.address-inputs:focus-within {
  border-color: #ffffff;
}

@media (min-width: 768px) {
  .address-inputs {
    background: transparent;
    border: none;
    padding: 0;
    flex: 1;
  }
}

.input-prefix {
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 600;
  outline: none;
  flex: 1;
  min-width: 60px;
  width: 100%;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .input-prefix {
    font-size: 0.95rem;
  }
}

.domain-select-custom {
  background: var(--bg-card-inner);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-xs);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  padding: 0.3rem 0.45rem;
  flex-shrink: 0;
  max-width: 50%;
}

@media (min-width: 768px) {
  .domain-select-custom {
    font-size: 0.85rem;
    max-width: none;
  }
}

.domain-select-custom option {
  background: var(--bg-card);
  color: #ffffff;
}

/* Action Buttons Container (Copy & New) */
.address-actions {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.4rem;
  width: 100%;
}

@media (min-width: 768px) {
  .address-actions {
    display: flex;
    align-items: center;
    width: auto;
    gap: 0.35rem;
    flex-shrink: 0;
  }
}

.btn-addr-action {
  background: var(--bg-card-inner);
  border: 1px solid var(--border-dim);
  color: #ffffff;
  padding: 0.45rem 0.5rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: all 0.15s;
  min-height: 36px;
}

.btn-addr-action:hover {
  background: var(--bg-hover);
  border-color: var(--border-medium);
}

.btn-addr-action.primary-btn {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
  font-weight: 700;
}

.btn-addr-action.primary-btn:hover {
  background: #e4e4e7;
}

.btn-addr-action.primary-btn .svg-icon {
  stroke: #000000;
}

/* Action Toolbar with Shortcuts */
.actions-toolbar {
  padding: 0.45rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-dim);
  background-color: #040404;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.toolbar-group {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .toolbar-group {
    width: auto;
    justify-content: flex-start;
    gap: 0.75rem;
  }
}

.toolbar-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-gray);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.45rem;
  border-radius: var(--radius-xs);
  transition: all 0.15s;
}

.toolbar-btn:hover {
  color: #ffffff;
  background: var(--bg-hover);
  border-color: var(--border-dim);
}

.kbd-shortcut {
  background: var(--bg-badge);
  border: 1px solid var(--border-dim);
  color: var(--text-muted);
  font-size: 0.58rem;
  padding: 0.05rem 0.25rem;
  border-radius: 3px;
}

@media (max-width: 480px) {
  .kbd-shortcut {
    display: none;
  }
}

/* Refresh Icon Spin Animation */
.spinning-icon {
  animation: rotateIcon 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes rotateIcon {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Table Header */
.inbox-table-header {
  padding: 0.5rem 0.85rem;
  border-bottom: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.02);
}

/* Inbox Empty Terminal Display */
.inbox-feed-area {
  min-height: 240px;
}

.terminal-empty-view {
  padding: 2.5rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (min-width: 768px) {
  .terminal-empty-view {
    padding: 3.5rem 1rem;
  }
}

.terminal-cmd-line {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #ffffff;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  background: var(--bg-input);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dim);
  max-width: 100%;
  word-break: break-all;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .terminal-cmd-line {
    font-size: 0.85rem;
  }
}

.terminal-cmd-line .prompt-sym {
  color: #ffffff;
  font-weight: 700;
}

.terminal-cmd-line .cursor-blink {
  display: inline-block;
  width: 6px;
  height: 12px;
  background-color: #ffffff;
  animation: blinkCursor 1s step-end infinite;
  margin-left: 2px;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.empty-main-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.empty-sub-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.4;
}

/* Email Item Rows */
.email-table-row {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--border-dim);
  cursor: pointer;
  transition: background-color 0.15s;
  gap: 0.25rem;
}

@media (min-width: 640px) {
  .email-table-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    gap: 0.75rem;
  }
}

.email-table-row:last-child {
  border-bottom: none;
}

.email-table-row:hover {
  background-color: var(--bg-hover);
}

.row-left {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1;
  min-width: 0;
}

.row-index {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  width: 18px;
  flex-shrink: 0;
}

.row-sender {
  font-weight: 600;
  font-size: 0.82rem;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 0;
  max-width: 140px;
}

@media (min-width: 640px) {
  .row-sender {
    width: 160px;
    max-width: none;
  }
}

.row-subject {
  font-size: 0.82rem;
  color: var(--text-gray);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.row-time {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-left: 1.5rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .row-time {
    margin-left: 0;
    font-size: 0.72rem;
  }
}

/* 4. Inline Email Reader Pane */
.inline-reader-view {
  display: none;
  background-color: var(--bg-card);
  animation: fadeIn 0.15s ease-in-out;
}

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

.reader-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.85rem;
  border-bottom: 1px solid var(--border-dim);
  background-color: #040404;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.reader-actions-left, .reader-actions-right {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-back-inbox {
  background: var(--bg-card-inner);
  border: 1px solid var(--border-dim);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.15s;
}

.btn-back-inbox:hover {
  background: var(--bg-hover);
  border-color: var(--border-medium);
}

.reader-meta-header {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--border-dim);
}

@media (min-width: 768px) {
  .reader-meta-header {
    padding: 1rem;
  }
}

.reader-subject-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
  line-height: 1.3;
  word-break: break-word;
}

@media (min-width: 768px) {
  .reader-subject-title {
    font-size: 1.15rem;
  }
}

.reader-meta-grid {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.reader-meta-line {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.reader-meta-line .k {
  color: var(--text-muted);
  width: 48px;
  flex-shrink: 0;
}

.reader-meta-line .v {
  color: #ffffff;
  word-break: break-all;
}

.reader-tabs-row {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.85rem 0;
  border-bottom: 1px solid var(--border-dim);
  background-color: #040404;
  overflow-x: auto;
}

.reader-tabs-left {
  display: flex;
  gap: 0.4rem;
}

.reader-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-gray);
  padding: 0.4rem 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.reader-tab-btn.active {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.reader-body-container {
  padding: 0.75rem 0.85rem;
  min-height: 360px;
  background-color: var(--bg-card);
}

.email-iframe-reader {
  width: 100%;
  min-height: 420px;
  background-color: #080808;
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-xs);
  color: #e4e4e7;
  display: block;
}

.email-raw-reader {
  background: var(--bg-input);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-xs);
  padding: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  white-space: pre-wrap;
  word-break: break-all;
  max-height: 450px;
  overflow-y: auto;
  color: var(--text-gray);
}

/* 5. Revamped Email History Section (Up to 10 Created Emails) */
.history-section-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  margin-top: 1.25rem;
  overflow: hidden;
}

.history-header {
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--border-dim);
  background-color: #040404;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
}

@media (min-width: 768px) {
  .history-header {
    padding: 0.75rem 1.25rem;
  }
}

.history-title-box {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.history-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.history-counter-badge {
  background: var(--bg-badge);
  border: 1px solid var(--border-dim);
  color: var(--text-muted);
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  font-size: 0.65rem;
}

.btn-clear-history {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  cursor: pointer;
  padding: 0.2rem 0.35rem;
  transition: color 0.15s;
}

.btn-clear-history:hover {
  color: #ffffff;
}

.history-list-grid {
  display: flex;
  flex-direction: column;
}

.history-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--border-dim);
  transition: background-color 0.15s;
  cursor: pointer;
  gap: 0.4rem;
}

@media (min-width: 768px) {
  .history-item-row {
    padding: 0.75rem 1.25rem;
  }
}

.history-item-row:last-child {
  border-bottom: none;
}

.history-item-row:hover {
  background-color: var(--bg-hover);
}

.history-item-row.is-active {
  background-color: #101010;
}

.history-item-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex: 1;
}

.history-item-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-dark);
  flex-shrink: 0;
}

.history-item-row.is-active .history-item-dot {
  background: #ffffff;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

.history-item-addr {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.history-active-tag {
  background: #ffffff;
  color: #000000;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 0.08rem 0.3rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.history-item-right {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.history-item-time {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
}

.btn-history-copy, .btn-history-remove {
  background: var(--bg-card-inner);
  border: 1px solid var(--border-dim);
  color: #ffffff;
  padding: 0.25rem 0.35rem;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.btn-history-copy:hover {
  background: var(--bg-hover);
  border-color: var(--border-medium);
}

.btn-history-remove {
  color: var(--text-muted);
}

.btn-history-remove:hover {
  color: #ffffff;
  border-color: var(--border-medium);
}

.history-empty-placeholder {
  padding: 1.75rem 0.85rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-family: var(--font-mono);
}

/* Toast */
#toast-container {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
  max-width: 92%;
}

.toast-msg {
  background: #111111;
  border: 1px solid var(--border-medium);
  color: #ffffff;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
  pointer-events: auto;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
