    /* ===============================
    WRAPPER (SCROLL + DRAG)
    =============================== */

    .org-wrapper {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        cursor: grab;
    }


    .org-wrapper:hover {
        cursor: grab;
    }


    .org-wrapper.dragging {
        cursor: grabbing;
    }

    .org-wrapper:active {
        cursor: grabbing;
    }

    /* ===============================
    TREE CONTAINER
    =============================== */

    #orgTree {
        min-width: max-content;
    }

    /* ===============================
    TREANT BASE
    =============================== */

    .Treant {
        position: relative;
        display: block;
    }

    /* ===============================
    NODE DESIGN
    =============================== */

    .Treant .node {
        border-radius: 8px;
        border: 1px solid #dee2e6;
        background: #ffffff;

        min-width: 180px;
        max-width: 220px;

        padding: 10px 12px;
        text-align: center;

        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
        transition: all 0.2s ease;

        /* ✅ TEXT WRAP FIX */
        white-space: normal !important;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .Treant .node:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    /* ===============================
    TEXT STYLING
    =============================== */

    .Treant .node-name {
        font-weight: 600;
        font-size: 16px;
        color: #0d3b66;
        line-height: 1.3;
        text-align: center;
        white-space: normal !important;
    }

    .Treant .node-title {
        font-size: 12px;
        color: #6c757d;
        white-space: normal !important;
    }

    /* ===============================
    ROOT NODE
    =============================== */

    .Treant>.node {
        border: 2px solid #0d3b66;
        background: linear-gradient(180deg, #f1f6ff 0%, #ffffff 100%);
    }

    /* ===============================
    CONNECTORS
    =============================== */

    .Treant path {
        stroke: #6c757d !important;
        stroke-width: 2px !important;
        fill: none !important;
    }

    /* ===============================
    SCROLLBAR STYLING
    =============================== */

    /* Chrome */
    .org-wrapper::-webkit-scrollbar {
        height: 6px;
    }

    .org-wrapper::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .org-wrapper::-webkit-scrollbar-thumb {
        background: #adb5bd;
        border-radius: 10px;
    }

    /* Firefox */
    .org-wrapper {
        scrollbar-width: thin;
        scrollbar-color: #adb5bd #f1f1f1;
    }

    /* ===============================
    RESPONSIVE
    =============================== */

    @media (max-width: 992px) {
        .Treant .node {
            min-width: 160px;
            max-width: 200px;
        }
    }

    @media (max-width: 768px) {
        .Treant .node {
            min-width: 140px;
            max-width: 180px;
            padding: 8px;
        }

        .Treant .node-name {
            font-size: 12px;
        }
    }

    @media (max-width: 480px) {
        .Treant .node {
            min-width: 120px;
            max-width: 150px;
            padding: 6px;
        }

        .Treant .node-name {
            font-size: 11px;
        }
    }

    /* ===============================
    CLEANUP
    =============================== */

    html,
    body {
        overflow-x: hidden;
    }

    .paragraph-wrapper p {
        margin-bottom: 0;
    }