/* [project]/app/globals.css [app-client] (css) */
:root {
  --orange: #f60;
  --bg: #f6f6ef;
  --text: #828282;
  --link: #000;
  --link-hover: #f60;
  --border: #e0e0e0;
  --heading: #000;
}

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

body {
  background: var(--bg);
  color: #333;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 10pt;
  line-height: 1.5;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:visited {
  color: #555;
}

a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

.retro-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 4px;
}

.retro-title a {
  color: var(--link);
  font-size: 12pt;
  text-decoration: none;
}

.retro-title a:hover {
  text-decoration: underline;
}

.retro-meta {
  color: var(--text);
  font-size: 8pt;
}

.retro-meta a {
  color: var(--text);
}

.retro-meta a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

.retro-divider {
  background: var(--border);
  height: 1px;
  margin: 4px 0;
}

.retro-tag {
  color: #fff;
  background: var(--orange);
  vertical-align: middle;
  border-radius: 2px;
  padding: 1px 4px;
  font-size: 7pt;
  display: inline-block;
}

.retro-price {
  color: var(--link);
  font-size: 10pt;
  font-weight: 700;
}

.retro-price-free {
  color: #3a9;
  background: #e6fff5;
  border-radius: 2px;
  padding: 1px 4px;
  font-size: 8pt;
  font-weight: 700;
}

.retro-btn {
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  padding: 4px 12px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 9pt;
  display: inline-block;
}

.retro-btn:hover {
  color: #fff;
  background: #e65c00;
  text-decoration: none;
}

.retro-btn-secondary {
  color: var(--orange);
  border: 1px solid var(--orange);
  cursor: pointer;
  background: none;
  border-radius: 2px;
  padding: 3px 12px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 9pt;
  display: inline-block;
}

.retro-btn-secondary:hover {
  background: #fff5ee;
  text-decoration: none;
}

.retro-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 1px;
  margin-bottom: 4px;
  padding: 8px 10px;
}

.retro-grid {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 4px;
  display: grid;
}

.retro-upvote {
  color: var(--text);
  cursor: pointer;
  padding: 0 2px;
  font-size: 8pt;
}

.retro-upvote:hover {
  color: var(--orange);
}

.dropdown-parent {
  position: relative;
}

.dropdown-menu {
  z-index: 100;
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 2px;
  min-width: 160px;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 2px 2px 4px #00000026;
}

.dropdown-menu a {
  color: var(--text);
  padding: 3px 8px;
  font-size: 9pt;
  display: block;
}

.dropdown-menu a:hover {
  color: var(--link-hover);
  background: #f0f0e8;
  text-decoration: none;
}

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

  body {
    font-size: 9pt;
  }
}

/*# sourceMappingURL=app_globals_0jn8.0u.css.map*/