/* ── App card base ──────────────────────────────────────────────────────────── */
.app-card {
  border-radius: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Active (live) card */
.app-card--active {
  background: #fff;
  cursor: pointer;
}
.app-card--active:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(13, 110, 253, 0.15) !important;
}

/* Placeholder card */
.app-card--placeholder {
  background: #f8f9fa;
  opacity: 0.72;
  cursor: default;
}

/* ── App icon ───────────────────────────────────────────────────────────────── */
.app-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #e9f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-icon__symbol {
  font-size: 1.5rem;
  line-height: 1;
}
