#ai-pop {
    position: fixed;
    right: 20px;
    bottom: 40px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: self-end;
    justify-content: center;
    background: #f0f0f0;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #fff;
}
#ai-pop:hover #ai-tag {
    display: block;
}
#ai-close {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
#ai-tag {
    position: absolute;
    background: #333;
    color: #fff;
    left: 50%;
    bottom: -30px;
    font-size: 12px;
    white-space: nowrap;
    transform: translateX(-50%);
    padding: 2px 5px;
    display: none;
    border-radius: 3px;
}
#ai-frame {
    border: 1px solid #d2d2d2;
    display: block;
    height: 80vh;
    width: 400px;
    position: fixed;
    right: 20px;
    bottom: 110px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
    transition: 0.3s linear;
    z-index: 10000;
    transform: translate(150%, 0);
}
#ai-frame.show {
    transform: translate(0, 0);
}
