
    /* Document Editor Container Styles */
    #container {
        width: 80%;
    }

    /* Title Bar - Hidden but maintain layout */
    #documenteditor_titlebar {
        height: 0;
    }

    /* Export Button Positioning */
    #de-print {
        position: relative;
        top: 27px;
        right: 279px;
        z-index: 9999;
        color: black !important;
        font-weight: bold !important;
    }

    /* Hide Syncfusion share button */
    #documenteditor-share {
        display: none !important;
    }

    /* Ensure proper toolbar display */
    .e-de-ctn-title {
        min-height: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 991.98px) {
        #container {
            width: 100% !important;
            height: calc(-162px + 100dvh) !important;
        }

        #rightAd {
            display: none !important;
        }

        #ad {
            height: 90px !important;
            position: inherit !important;
        }
        #de-print {
            right: 20px;
        }
    }

    /* Optional: Custom scrollbar for document editor */
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }