    .page-wrapper.compact-wrapper .page-body-wrapper div.sidebar-wrapper .logo-wrapper {
        padding: 0px 30px;
    }

    .page-wrapper.compact-wrapper .page-body-wrapper div.sidebar-wrapper .logo-icon-wrapper {
        padding: 20px 30px;
    }

    /* For Logo Setting  */
    .pointer {
        cursor: pointer;
    }

    .sidebar-title.active {
        color: var(--theme-deafult) !important;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        margin-top: 5px !important;
    }

    .form-group span {
        color: #FF0000;
    }

    .cke_button_label,
    .cke_combo_text {
        color: black !important;
    }

    .cke_chrome {
        border: 1px solid #ced4da !important;
        border-radius: .25rem !important;
    }

    .cke_top {
        background: #f6f6f6 !important;
    }

    .table th:last-child,
    table td:last-child {
        position: sticky !important;
        right: 0px;
        background-color: #fff;
    }

    .img-box {
        display: inline-block;
        padding: 5px;
        border: 1px solid #ccc;
    }

    .notify-alert {
        z-index: 99999999999 !important;
    }

    .switch input:checked+.switch-state {
        background-color: #198754 !important;
    }

    .switch-state {
        background-color: #dc3545 !important;
    }

    .cke_bottom.cke_reset_all {
        display: block;
    }
    .w-200px{
        width: 200px;
    }
    

    .modal.right .modal-dialog {
        position: fixed;
        margin: auto;
        width: 400px;
        height: 100%;
        right: 0;
        top: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .modal.right.show .modal-dialog {
        transform: translateX(0);
    }

    .modal-content {
        height: 100%;
        overflow-y: auto;
    }

    .modal.bottom_popup .modal-dialog {
        position: fixed;
        bottom: 0;
        right: 20px; /* Position it on the right side */
        width: 450px; /* Small width like a chat box */
        margin: 0;
        transform: translateY(100%); /* Start hidden */
        transition: transform 0.3s ease-in-out;
        max-height: 75vh; /* Adjust to limit height */
        display: flex;
        flex-direction: column;
    }

    .modal.bottom_popup .modal-content {
        max-height: 75vh;
        display: flex;
        flex-direction: column;
        border-radius: 10px;
    }
    
    /* Show the modal by sliding up */
    .modal.bottom_popup.show .modal-dialog {
        transform: translateY(0);
    }
    /* ✅ Fixed Header (User Info) */
    .right-sidebar-title {
        background: #fff; /* Background color */
        padding: 10px;
        border-bottom: 1px solid #ddd;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    /* ✅ Chat Box - Scrollable */
    .msger-chat {
        flex: 1;
        overflow-y: auto;
        max-height: 55vh; /* Adjust for input box space */
        padding: 10px;
    }

    /* ✅ Fixed Input Area */
    .msger-inputarea {
        background: #fff; /* Background color */
        padding: 10px;
        border-top: 1px solid #ddd;
        position: sticky;
        bottom: 0;
        z-index: 10;
    }
    