  .sforc-tooltip {
  position: absolute;
  background-color: #fff;
  color: #333;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  padding: 12px 16px;
  max-width: 300px;
  font-family: system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  z-index: 1000;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.sforc-tooltip-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: bold;
  color: #222;
}

.sforc-tooltip-content {
  margin-bottom: 8px;
}

.sforc-tooltip-label {
  font-weight: 400;
  color: silver;
  text-transform: uppercase;
}

.sforc-tooltip-description {
  display: block;
  color: #333;
}

.sforc-tooltip {
  opacity: 0;
  animation: fadeInTooltip 0.3s forwards;
}

@keyframes fadeInTooltip {
  to {
    opacity: 1;
  }
}


.sforc-calendar-element a {
  text-decoration: none !important;
  cursor: pointer;
}
