/* Style du bouton de capture */
#h5p-capture-button {
    padding: 8px 14px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin: 10px;
    z-index: 9999;
}

#h5p-capture-button:hover {
    background: #005a87;
}

/* Style de la zone sélectionnée pour capture */
.h5p-capture-overlay {
    position: absolute;
    border: 2px dashed red;
    pointer-events: none;
    z-index: 99999;
}

/* Optionnel : curseur en mode sélection */
body.selecting-capture {
    cursor: crosshair !important;
}
