/* Chrome Tooltip Styles */

.chrome-tooltip-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 6px 7px 10px 7px;
}

.chrome-tooltip-image {
    width: 100%;
    max-width: 255px;
    height: auto;
    display: block;
    border-radius: 2px;
    object-fit: cover;
    background: #f5f5f5;
}

.chrome-tooltip-text {
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    font-weight: 500;
}

.chrome-tooltip-highlight {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1px 5px;
    border-radius: 3px;
    display: inline-block;
}

/* Tippy theme customization */
.tippy-box[data-theme~='chrome-agent'] {
    border-radius: 4px;
    box-shadow: 0 4px 20px rgb(0 0 0 / 11%), 0 0 1px rgb(0 0 0 / 9%);
    z-index: 9999 !important;
}

.tippy-box[data-theme~='chrome-agent'] > .tippy-content {
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
}

