/**
 * gp-notes.css — GP Notes tab enhancements.
 * Loaded alongside pulse.html. Adds hover-reveal edit/delete on note cards.
 * Does NOT redefine the core pn-* styles — those live in pulse.html.
 */

/* Reveal edit/delete buttons on card hover */
.pn-card:hover .pn-card-actions {
  opacity: 1;
}

/* Subtle card hover lift */
.pn-card {
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.pn-card:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

/* Author badge style (if author field is added later) */
.pn-author-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent, #0091ea);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  margin-left: 6px;
}

/* Mobile: full-width text inputs */
@media (max-width: 600px) {
  .pn-title-input,
  .pn-content-input,
  .pn-attendees-input,
  .pn-tags-input {
    width: 100% !important;
    max-width: 100% !important;
  }

  .pn-form-row {
    flex-direction: column;
    gap: 8px;
  }

  .pn-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .pn-filters {
    flex-wrap: wrap;
  }
}