#grants-indicator {
  background: #FFC107 !important;
  color: #222 !important;
  border: none !important;
  font-weight: 500;
}
#grants-indicator:focus, #grants-indicator:hover, #grants-indicator.active {
  background: #FFC107 !important;
  color: #222 !important;
  border: none !important;
}
.grants-hover-panel {
  position: fixed;
  min-width: 220px;
  width: 500px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 0.5rem;
  margin-top: 0.5rem;
  right: 20px;
  top: 80px;
  display: block;
  font-size: 0.95rem;
  z-index: 9999;
}
.grants-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.grant-row {
  padding: 0.1rem 0.1rem;
  margin: 0;
  border-bottom: none;
}
.grant-impl .grant-name {
  color: #388e3c;
  font-weight: 600;
}
.grant-missing .grant-name {
  color: #888;
  font-weight: 500;
}
.grant-desc {
  margin-left: 1rem;
}
.grants-hover-panel .badge {
  float: right;
  margin-left: 1em;
  font-size: 0.8em;
  padding: 0.2em 0.6em;
}
.grant-name {
  display: inline-block;
  vertical-align: middle;
  max-width: 70%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
} 