/* 關鍵字高亮樣式 */
.abmedia-keyword-highlight {
    border-bottom: 1px dashed #0073aa; /* WordPress 藍色 */
    cursor: help; /* 鼠標變成問號提示 */
    position: relative; /* 為了資訊框定位 */
    color: #333; /* 確保文字顏色清晰 */
    text-decoration: none; /* 移除可能的下劃線 */
    font-weight: bold; /* 讓關鍵字更突出 */
}

/* 新增：用於顯示 Last Price 的樣式 */
.abmedia-last-price {
    font-size: 0.85em; /* 稍微小一點 */
    color: #555; /* 顏色稍微淺一點 */
    margin-left: 4px; /* 與關鍵字保持一些距離 */
    font-weight: normal; /* 確保價格不是粗體，如果關鍵字是粗體 */
    display: inline-block; /* 確保能正確設置 margin */
    min-width: 30px; /* 預留一些空間，防止內容跳動 */
    text-align: left; /* 文字靠左 */
    vertical-align: baseline; /* 與關鍵字底部對齊 */
}

/* 資訊框樣式 */
.abmedia-keyword-tooltip {
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: normal;
    max-width: 250px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* 資訊框的小箭頭 */
.abmedia-keyword-tooltip::after {
    content: "";
    position: absolute;
    left: 20px;
    top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #333 transparent;
}