/* styles.css - extracted from inline styles in index.html and redact.html */

/* Shared utilities */
.ghost-class {
    opacity: 0.5;
    background: #e2e8f0;
    border: 2px dashed #94a3b8;
}

.drag-class {
    opacity: 1;
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Hide scrollbar for cleaner look in lists */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 20px;
}

/* Redaction-specific styles */
.redaction-box {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid white;
    position: absolute;
    cursor: pointer;
}
.redaction-box:hover {
    background-color: rgba(0, 0, 0, 0.85);
    border-color: #ef4444; /* indicate deletable */
}

.page-container {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s;
}

.cursor-crosshair {
    cursor: crosshair;
}
