#translate-prompt-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#translate-prompt-box {
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    font-family: Arial, sans-serif;
}

#translate-prompt-box button {
    margin: 10px 8px 0;
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

#translate-yes {
    background: #2e7d32;
    color: #fff;
}

#translate-no {
    background: #ccc;
    color: #333;
}

