/* Nest preview card styles */
.nest-preview-card {
  display: block;
  margin: 8px 0 8px 3px;
  padding: 12px 16px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 6px;
  background: #fff;
  max-width: 540px;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nest-preview-card:hover {
  background: #fafafa;
  border-color: var(--color-cactus);
}

.nest-preview-badge {
  position: absolute;
  top: 8px;
  right: 12px;
  font-family: 'Ubuntu Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  letter-spacing: 0.5px;
}

.nest-preview-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nest-preview-emoji {
  font-size: 48px;
  line-height: 1;
}

.nest-preview-title {
  font-family: 'Ubuntu Sans', sans-serif;
  font-size: 18px;
  color: #000;
}
