/* Hint icon styles */
.hint-icon {
  cursor: pointer;
  font-size: 0.80rem;
  background: linear-gradient(135deg, #6EC6FF 0%, #54b1fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #54b1fe; /* Fallback for browsers that don't support text gradients */
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hint-icon:hover {
  transform: scale(1.2) rotate(3deg);
  opacity: 0.85;
}

/* Ensure hint icons in AG Grid headers are properly aligned */
.ag-header-cell .hint-icon {
  margin-left: 4px;
  vertical-align: middle;
  display: inline-block;
}

/* Ensure the icon doesn't interfere with sorting */
.ag-header-cell-label {
  display: flex;
  align-items: center;
}

.ag-header-cell-text {
  flex-grow: 1;
} 