/* dashboard-tiles.css — stopgap Today tiles for /admin/dashboard.html      */
/* Scoped to .tiles-section, .tile, .tiles-nav-sep. No other files touched. */
/* Temporary: superseded by issue_sidebar_redesign.md when it ships.        */

.tiles-section {
  max-width: var(--a-max-w);
  margin: 12px auto 0;
  padding: 0 16px;
}

.tiles-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--a-muted);
  margin-bottom: 8px;
}

.tiles-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 480px) {
  .tiles-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .tiles-row::-webkit-scrollbar { display: none; }
}

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 120px;
  flex-shrink: 0;
  background: var(--a-card);
  border: 1px solid var(--a-border);
  border-radius: 8px;
  padding: 12px;
  text-decoration: none;
  color: var(--a-text);
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}

.tile:hover {
  border-color: var(--a-teal);
  box-shadow: 0 2px 6px rgba(13,168,158,.12);
}

.tile-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--a-muted);
}

.tile-badge.green { background: var(--a-green);  }
.tile-badge.amber { background: var(--a-orange); }
.tile-badge.red   { background: var(--a-red);    }

.tile-num {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--a-text);
}

.tile-lbl {
  font-size: 11px;
  color: var(--a-muted);
  line-height: 1.3;
}

/* Visual divider between existing nav links and new feature-flagged links */
.tiles-nav-sep {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.25);
  margin: 0 4px;
  align-self: center;
  flex-shrink: 0;
}
