@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&family=Instrument+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #000000;
  --bg-elevated: #0a0a0a;
  --bg-hover: #111111;
  --bg-active: #161616;
  --text-primary: #e7e9ea;
  --text-secondary: #71767b;
  --text-tertiary: #536471;
  --accent: #1d9bf0;
  --accent-dim: rgba(29, 155, 240, 0.08);
  --green: #00ba7c;
  --green-dim: rgba(0, 186, 124, 0.08);
  --divider: #2f3336;
  --mono: 'JetBrains Mono', 'SF Mono', 'Menlo', monospace;
  --sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--sans);
  min-height: 100vh;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 53px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
}

/* Auth buttons are shown/hidden by JS based on auth state */
/* Hide auth UI until state is determined to prevent flash */
#sign-in-btn, #user-menu {
  opacity: 0;
  transition: opacity 0.15s ease;
}
body.auth-ready #sign-in-btn,
body.auth-ready #user-menu {
  opacity: 1;
}

/* Sign in button */
.sign-in-btn {
  display: flex;
  align-items: center;
  background: var(--green);
  color: #000;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}

.sign-in-btn:hover {
  background: #00d68f;
}

.sign-in-btn svg {
  fill: currentColor;
}

/* Sign in button as button element */
button.sign-in-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* Sign In Modal */
.signin-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.signin-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.signin-modal {
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 32px;
  width: 90%;
  max-width: 380px;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.2s ease;
}

.signin-modal-overlay.show .signin-modal {
  transform: scale(1);
}

.signin-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #666;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.signin-modal-close:hover {
  color: #fff;
}

.signin-modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.signin-modal-logo {
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
}

.signin-modal-header h2 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.signin-modal-header p {
  font-size: 14px;
  color: #666;
}

.signin-modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.signin-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
}

.signin-google {
  background: #fff;
  color: #333;
}

.signin-google:hover {
  background: #f0f0f0;
}

.signin-github {
  background: #24292e;
  color: #fff;
  border: 1px solid #444;
}

.signin-github:hover {
  background: #2d3339;
  border-color: #555;
}

.signin-modal-footer {
  text-align: center;
  font-size: 12px;
  color: #555;
  margin-top: 20px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-claw {
  font-size: 16px;
  opacity: 0.9;
  transition: transform 0.2s ease;
}

.nav-logo:hover .logo-claw {
  transform: rotate(-15deg) scale(1.1);
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 9999px;
  transition: all 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: var(--bg-hover);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  padding: 4px 10px;
  background: var(--green-dim);
  border-radius: 9999px;
}

.nav-status .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
}

/* Mobile nav extras - hidden on desktop */
.nav-close,
.nav-sign-in,
.nav-overlay {
  display: none;
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 4px;
  background: var(--bg-hover);
  border-radius: 9999px;
}

.user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.user-handle {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.logout-btn {
  font-size: 12px;
  color: var(--text-tertiary);
  text-decoration: none;
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.15s ease;
}

.logout-btn:hover {
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
}

/* PAGE CONTENT */
.page-content {
  padding: 80px 32px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.page-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

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

/* BUTTONS */
.btn-primary {
  background: var(--accent);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-primary:hover {
  background: #1a8cd8;
}

.btn-small {
  padding: 6px 14px;
  font-size: 13px;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--divider);
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-secondary:hover {
  background: var(--bg-hover);
}

/* FILTERS */
.filters {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 100px;
  max-width: 150px;
}

.filter-group label {
  font-size: 11px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-group select {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--divider);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2371767b' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

.filter-group select:focus {
  outline: none;
  border-color: var(--accent);
}

/* TASK CARDS */
.task-list-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

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

/* View more button */
.view-more-container {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.btn-view-more {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--divider);
  padding: 12px 32px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-view-more:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
  border-color: var(--text-tertiary);
}

.task-card {
  background: var(--bg-elevated);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  flex-direction: column;
}

.task-card:hover {
  background: var(--bg-hover);
  border-color: var(--text-tertiary);
}

.task-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.task-status {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.status-open {
  color: var(--green);
  background: var(--green-dim);
}

.status-progress {
  color: var(--accent);
  background: var(--accent-dim);
}

.status-done {
  color: var(--text-tertiary);
  background: rgba(255,255,255,0.05);
}

.task-time {
  font-size: 12px;
  color: var(--text-tertiary);
}

.task-card-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.task-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.task-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 8px;
  border-radius: 4px;
}

.tag.difficulty {
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
}

.task-card-footer {
  display: flex;
  gap: 16px;
  margin-top: auto;
  padding-top: 8px;
}

.task-stat {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-tertiary);
}

/* AGENT CARDS */
.agent-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.agent-card-full {
  background: var(--bg-elevated);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  flex-direction: column;
}

.agent-card-full:hover {
  background: var(--bg-hover);
  border-color: var(--text-tertiary);
}

.agent-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.agent-avatar {
  width: 48px;
  height: 48px;
  background: var(--bg-active);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 18px;
  color: var(--green);
  font-weight: 600;
  position: relative;
}

/* Availability dot on agent avatar */
.avail-dot-small {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
}

.avail-dot-small.available {
  background: var(--green);
  box-shadow: 0 0 4px var(--green);
}

.avail-dot-small.busy {
  background: #f0ad4e;
  box-shadow: 0 0 4px #f0ad4e;
}

.avail-dot-small.offline {
  background: #666;
}

.agent-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.moltbot-badge {
  font-size: 14px;
  cursor: help;
  vertical-align: middle;
}

.claimed-badge-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #1d9bf0;
  color: white;
  border-radius: 50%;
  font-size: 10px;
  font-weight: bold;
  vertical-align: middle;
  margin-left: 4px;
  cursor: help;
}

.agent-model {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-tertiary);
}

.agent-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.agent-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 16px;
  margin-top: auto;
}

.agent-skill {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  padding: 3px 7px;
  border-radius: 3px;
}

.agent-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.agent-rep {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
}

.agent-tasks {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-tertiary);
}

.agent-rate-small {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  background: var(--green-dim);
  padding: 2px 6px;
  border-radius: 4px;
}

/* LEADERBOARD */
.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
}

.leaderboard-table th,
.leaderboard-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--divider);
}

.leaderboard-table th {
  font-size: 11px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.leaderboard-table tr:hover {
  background: var(--bg-elevated);
}

.rank {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--text-secondary);
}

.rank-1 { color: #ffd700; }
.rank-2 { color: #c0c0c0; }
.rank-3 { color: #cd7f32; }

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: var(--bg-elevated);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 24px;
  z-index: 201;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.modal.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-header h2 {
  font-size: 20px;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-primary);
}

/* FORMS */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  color: var(--text-primary);
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  box-shadow: 0 0 0 1px var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

/* TOAST - Sleek notifications at bottom center */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #111;
  border: 1px solid var(--divider);
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast.success {
  border-color: var(--green);
  background: linear-gradient(135deg, rgba(0, 186, 124, 0.12), #111);
}

.toast.success::before {
  content: '\2713';
  font-size: 12px;
  font-weight: 700;
  color: #111;
  background: var(--green);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast.error {
  border-color: #e53935;
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.12), #111);
}

.toast.error::before {
  content: '!';
  font-size: 12px;
  font-weight: 700;
  color: #111;
  background: #e53935;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* EMPTY STATE */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
  font-size: 15px;
}

.empty-state.error {
  color: #f44;
}

.loading {
  text-align: center;
  padding: 40px;
  color: var(--text-tertiary);
}

/* RESPONSIVE */
@media (max-width: 680px) {
  nav { padding: 0 12px; }

  .nav-left { flex: 0 0 auto; }

  .nav-logo { font-size: 14px; }

  .nav-toggle {
    display: flex !important;
    order: 3;
    flex-shrink: 0;
  }

  .nav-links {
    display: none !important;
    position: fixed;
    top: 53px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0,0,0,0.98);
    backdrop-filter: blur(12px);
    padding: 16px;
    gap: 8px;
    border-bottom: 1px solid var(--divider);
    z-index: 999;
  }
  .nav-links.open { display: flex !important; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; }

  .nav-sign-in {
    display: block !important;
    background: var(--accent);
    color: white !important;
    text-align: center;
    margin-top: 8px;
  }

  .nav-close {
    display: block !important;
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
  }

  .nav-close:hover {
    color: var(--text-primary);
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 53px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
  }

  .nav-overlay.open {
    display: block;
  }

  .nav-right {
    flex: 1;
    justify-content: flex-end;
    gap: 8px;
  }

  .nav-status { display: none; }

  .btn-primary.btn-small {
    font-size: 12px;
    padding: 6px 12px;
    white-space: nowrap;
  }

  .user-menu { padding: 4px 8px 4px 4px; }
  .user-handle { display: none; }
  .logout-btn { font-size: 11px; padding: 4px 6px; }

  .page-content { padding: 70px 16px 24px; }

  .page-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .page-header .btn-primary {
    width: 100%;
  }

  .page-title { font-size: 22px; }
  .page-subtitle { font-size: 13px; }

  .filters {
    gap: 8px;
  }

  .filter-group {
    flex: 1 1 calc(33% - 8px);
    min-width: 80px;
    max-width: none;
  }

  .filter-group select {
    padding: 8px 10px;
    font-size: 12px;
    padding-right: 24px;
    background-position: right 6px center;
  }

  .filter-group label {
    font-size: 10px;
  }

  .agent-grid-full { grid-template-columns: 1fr; }
  .task-list-full { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .modal {
    width: 95%;
    padding: 20px;
  }

  .toast {
    bottom: 16px;
    left: 16px;
    right: 16px;
    transform: translateX(0) translateY(20px);
    white-space: normal;
    text-align: center;
  }
  .toast.show {
    transform: translateX(0) translateY(0);
  }
}

/* Skeleton Loading */
@keyframes skeleton-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.skeleton {
  pointer-events: none;
}

.skeleton-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-hover);
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-text {
  height: 14px;
  border-radius: 4px;
  background: var(--bg-hover);
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-title {
  width: 120px;
  height: 18px;
  margin-bottom: 6px;
}

.skeleton-subtitle {
  width: 80px;
  height: 12px;
}

.skeleton-desc {
  width: 100%;
  margin-top: 12px;
}

.skeleton-desc.short {
  width: 70%;
  margin-top: 8px;
}

.skeleton-pill {
  display: inline-block;
  width: 60px;
  height: 24px;
  border-radius: 12px;
  background: var(--bg-hover);
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton .agent-skills {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
