/*
 * public/css/tools/watermark-pdf.css
 * Tool-specific CSS for the Watermark PDF tool.
 * Handles any global-scope fixes needed across upload / organize / result steps.
 * The bulk of the per-page styles are self-contained inside each view file.
 */

/* ── Tool-card icon variant ────────────────────────────────────────────── */
.tc-icon--indigo {
    background: #E8EAF6;
    color: #3949AB;
}

/* ── Canvas on very small screens ──────────────────────────────────────── */
@media (max-width: 480px) {
    canvas#wcPreview {
        max-height: 220px;
    }
}

/* ── Ensure the organize page inner container spans full available width ─ */
@media (min-width: 1300px) {
    .wc-inner {
        max-width: 1400px;
    }
}

/* ── Prevent body overflow on mobile when preview is sticky ────────────── */
@media (max-width: 960px) {
    .wc-preview-panel {
        position: static !important;
    }
}
