.tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin-left: 4px;
    cursor: help;
    font-size: 12px;
    color: #6b7280;
    transition: color 0.2s ease;
}

.tooltip-icon:hover {
    color: #1f2937;
}

.group {
    position: relative;
}

.tooltip-content {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    margin-bottom: 0;
    padding: 8px 12px;
    background-color: #1f2937;
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.4;
    border-radius: 6px;
    white-space: normal;
    width: max-content;
    max-width: 256px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.tooltip-content::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1f2937;
}

.group:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
}

/* Syncfusion Tooltip Trigger Styles */
.tooltip-trigger {
    cursor: help;
    /*border-bottom: 1px dotted currentColor;*/
}

/* Custom Syncfusion Tooltip Styling */
.e-tooltip-wrap.custom-tooltip {
    border-radius: 6px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.e-tooltip-wrap.custom-tooltip .e-tip-content {
    background-color: #1f2937;
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.4;
    padding: 8px 12px;
    border-radius: 6px;
    max-width: 300px;
}

.e-tooltip-wrap.custom-tooltip .e-arrow-tip-outer,
.e-tooltip-wrap.custom-tooltip .e-arrow-tip-inner {
    border-top-color: #1f2937;
}

.e-tooltip-wrap.custom-tooltip.e-tooltip-bottom .e-arrow-tip-outer,
.e-tooltip-wrap.custom-tooltip.e-tooltip-bottom .e-arrow-tip-inner {
    border-bottom-color: #1f2937;
}