/* ===========================
   Prestige Password Audit
   UserCP summary row styling
   =========================== */

/* Match your existing summary-row look */
.ppa-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}

/* Let the icon inherit theme styles (no dimming) */
.ppa-item .summary-row__icon i {
  font-size: 16px; /* same size as other icons */
  color: inherit;  /* matches theme’s default icon color */
}

/* Transparent inline cog link (right side) */
.ppa-cog {
  margin-left: auto;
  font-size: 15px;
  color: inherit;           /* same as theme text/icon */
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.2s ease;
}

.ppa-cog:hover {
  color: #005999;           /* MyBB default hover blue */
}

/* Warning state for stale password */
.ppa-item.ppa-stale {
  background: #faecec;
  border: 1px solid #e3b1b1;
  border-radius: 8px;
  padding: 8px;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .ppa-item {
    flex-wrap: wrap;
    gap: 8px;
  }
  .ppa-cog {
    font-size: 16px;
    padding: 2px;
  }
}