/* WPTooltip.css */

.wp-tooltip-wrapper {
    position: relative;
    display: inline-block;
    font-family: inherit;
    font-size: 12px;
    line-height: 1;
    margin-left: 4px;
}

.wp-tooltip-icon {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: #9b9da0;
    color: #fff;
    text-align: center;
    line-height: 15px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: normal;
    cursor: default;
}

.wp-tooltip-wrapper:hover .wp-tooltip-text {
    opacity: 1;
    visibility: visible;
}

.wp-tooltip-text {
    visibility: hidden;
    opacity: 0;
    width: 120px;
    transition: all 0.2s ease;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #23282d;
    color: #fff;
    padding: 6px 8px;
    border-radius: 4px;
    text-align: center;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
