.custom-small-order-charge {
    background-color: #fff3cd; /* Light yellow background */
    border: 1px solid #ffeeba; /* Border matching background */
    font-weight: bold;
    font-size: 1.1em;
    padding: 10px;
    border-radius: 5px;
}

.small-order-tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-left: 5px;
    color: #0071a1; /* WooCommerce link color */
}

.small-order-tooltip .tooltip-text {
    display: none;
    width: 200px;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 150%; /* Position above the tooltip icon */
    left: 50%;
    margin-left: -100px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.small-order-tooltip.active .tooltip-text {
    display: block;
}