
        :root {
            --bg-color: #ffffff;
            --text-color: #000000;
            --editor-bg: #f5f5f5;
            --toolbar-bg: #e0e0e0;
        }
        [data-theme="dark"] {
            --bg-color: #1e1e1e;
            --text-color: #ffffff;
            --editor-bg: #2d2d2d;
            --toolbar-bg: #3c3c3c;
        }
       
        .containersa {
            max-width: 800px;
            margin: 20px auto;
            border-radius: 5px;
            background-color: #fff;
            border: 2px solid #d1fae5;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
        }
        .toolbar {
            background-color: #f8f9fa;
            padding: 0;
            border-bottom: 1px solid #ccc;
        }
        .menu-bar {
            display: flex;
            gap: 15px;
            padding: 5px 10px;
            border-bottom: 1px solid #ccc;
        }
        .menu-item {
            position: relative;
            cursor: pointer;
            padding: 5px;
        }
        .menu-item:hover {
            background-color: #e0e0e0;
        }
        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #fff;
            border: 1px solid #ccc;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }
        .menu-item:hover .dropdown {
            display: block;
        }
        .dropdown-item {
            padding: 5px 10px;
            cursor: pointer;
        }
        .dropdown-item:hover {
            background-color: #e0e0e0;
        }
        .icon-bar {
            display: flex;
            gap: 5px;
            padding: 5px 10px;
            justify-content: flex-start;
            flex-wrap: wrap;
        }
        .icon-btn {
            background: none;
            border: none;
            font-size: 16px;
            cursor: pointer;
            padding: 5px;
            color: #333;
        }
        .icon-btn:hover {
            background-color: #e0e0e0;
            border-radius: 3px;
        }
        .editor {
            background-color: #fff;
            min-height: 400px;
            padding: 15px;
            outline: none;
            overflow-y: auto;
            border-bottom-left-radius: 5px;
            border-bottom-right-radius: 5px;
        }
        .status-bar {
            padding: 5px 15px;
            font-size: 14px;
            border-top: 1px solid #ccc;
            background-color: #f8f9fa;
        }
        .distraction-free .toolbar, .distraction-free .status-bar {
            display: none;
        }
        .distraction-free .editor {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 0;
            padding: 20px;
            z-index: 1000;
            margin: 0;
        }
        /* Hide the file input */
        #fileInput, #colorPicker {
            display: none;
        }
        select {
            padding: 2px;
            border-radius: 3px;
            border: 1px solid #ccc;
            cursor: pointer;
        }
        select:hover {
            background-color: #e0e0e0;
        }