/* VideoPlayer drawing canvas (created by JS, no Blazor scope) */
.vjs-drawing-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    cursor: crosshair;
    z-index: 10;
    pointer-events: auto;
}

/* Drawing position markers on the VideoJS seekbar */
.vjs-drawing-marker {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #ff4400;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
    border-radius: 2px;
}

.vjs-drawing-marker::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: #ff4400;
    border-radius: 50%;
}

/* Botón de acción destructiva (borrar selección) */
.dtb-danger {
    background: #8b1a1a !important;
    border-color: #cc2222 !important;
    color: #fff !important;
}

.dtb-danger:hover {
    background: #cc2222 !important;
}

/* Botón cancelar */
.dtb-cancel {
    width: auto !important;
    padding: 0 10px !important;
    background: #555 !important;
    border-color: #777 !important;
    color: #fff !important;
}

.dtb-cancel:hover {
    background: #777 !important;
}