body { font-family: sans-serif; margin: 2em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}
form { display: flex; flex-direction: column; max-width: 400px; gap: 10px; margin-bottom: 2em; }
input, select, button, textarea { 
    padding: 10px; font-size: 1em; 
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}
table { width: 100%; border-collapse: collapse; }
th, td { border: 1px solid #ccc; padding: 8px; text-align: left; }
th { background-color: #f2f2f2; }
.status-pending { color: orange; }
.status-processing { color: blue; }
.status-success { color: green; }
.status-failed { color: red; }

img, a {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}