/**
 * Custom styling for IC organization name tooltips
 */

/* Custom tooltip styling for black background and white text */
.ic-tooltip {
  --bs-tooltip-bg: #000000;
  --bs-tooltip-color: #ffffff;
  --bs-tooltip-opacity: 0.9;
}

.ic-tooltip .tooltip-inner {
  background-color: #000000;
  color: #ffffff;
  font-size: 0.875rem;
  max-width: 300px;
  text-align: center;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.ic-tooltip .tooltip-arrow {
  color: #000000;
}

/* Ensure orgName elements are properly styled */
.orgName {
  border-bottom: 1px dashed #000000;
  cursor: pointer;
  transition: border-bottom-color 0.2s ease;
}

.orgName:hover {
  border-bottom-color: #666666;
}

/* Responsive tooltip sizing */
@media (max-width: 768px) {
  .ic-tooltip .tooltip-inner {
    font-size: 0.8rem;
    max-width: 250px;
    padding: 0.4rem 0.6rem;
  }
}