#ai-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    pointer-events: none;
    border: 1px solid #000;
    transition: all 0.2s;
}
#ai-crosshair.hover {
    background: #ff3333;
    transform: translate(-50%, -50%) scale(1.5);
}

#ai-modal-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
#ai-modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    max-height: 90%;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    overflow-y: auto;
    text-align: left;
    color: #333;
    font-family: sans-serif;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
#ai-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
}
#ai-modal-close:hover {
    color: #000;
}
#ai-modal-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}
#ai-modal-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: bold;
}
#ai-modal-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    white-space: pre-wrap;
}
#ai-modal-link {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s;
}
#ai-modal-link:hover {
    background: #005177;
}
