/* Shared styling for the Season Awards section (Previous Season tab) and
   the player award-history popover (Master Roster) - used by both
   statistics.html (public) and private.html. */

.rise-clickable-name {
  cursor: pointer;
  border-bottom: 1px dotted rgba(100, 216, 255, 0.4);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.rise-clickable-name:hover {
  color: #64d8ff;
  border-bottom-color: #64d8ff;
}

.rise-awards-empty {
  font-size: 0.82rem;
  color: #555566;
  font-style: italic;
  padding: 10px 0;
}

.rise-award-category { margin-bottom: 16px; }
.rise-award-category-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6060a0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.rise-award-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}
.rise-award-card {
  background: #0e0e1a;
  border: 1px solid #22223a;
  border-radius: 8px;
  padding: 10px 12px;
}
.rise-award-card-head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.rise-award-card-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #c8bce8;
  flex: 1;
}
.rise-award-info {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(100, 216, 255, 0.4);
  background: none;
  color: #64d8ff;
  font-size: 0.65rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.rise-award-info:hover { background: rgba(100, 216, 255, 0.12); }
.rise-award-card-winner {
  font-size: 0.9rem;
  font-weight: 700;
  color: #e8e0d0;
}
.rise-award-card-value {
  font-size: 0.76rem;
  color: #8888a8;
  margin-top: 2px;
}

.rise-popover {
  display: none;
  position: absolute;
  z-index: 500;
  max-width: 280px;
  background: #14142a;
  border: 1px solid rgba(100, 216, 255, 0.3);
  border-radius: 8px;
  padding: 10px 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  font-size: 0.8rem;
}
.rise-popover-title {
  font-weight: 700;
  color: #e8e0d0;
  margin-bottom: 6px;
}
.rise-popover-desc {
  color: #b0a8c8;
  line-height: 1.4;
}
.rise-popover-empty {
  color: #555566;
  font-style: italic;
}
.rise-popover-list { display: flex; flex-direction: column; gap: 6px; }
.rise-award-row {
  font-size: 0.78rem;
  color: #b0a8c8;
  line-height: 1.4;
}
.rise-award-row strong { color: #d4c8f0; }
.rise-award-seasons {
  display: block;
  color: #6070a0;
  font-size: 0.72rem;
  font-style: italic;
}
