	.md-wysiwyg-editor-wrapper {
	    border: 1px solid #ddd;
	    border-radius: 8px;
	    background-color: #fff;
	    overflow: hidden;
	    display: flex;
	    flex-direction: column;
	    position: relative;
	}

	.md-toolbar {
	    background-color: #f7f7f7;
	    padding: 8px 10px;
	    border-bottom: 1px solid #ddd;
	    display: flex;
	    flex-wrap: wrap;
	    gap: 5px;
	    align-items: center;
	}

	.md-toolbar-button {
	    padding: 6px 8px;
	    border: 1px solid #ccc;
	    background-color: #fff;
	    border-radius: 4px;
	    cursor: pointer;
	    font-size: 14px;
	    transition: background-color 0.2s ease;
	    display: inline-flex;
	    align-items: center;
	    justify-content: center;
	    min-width: 30px;
	    min-height: 30px;
	}

	.md-toolbar-button:hover {
	    background-color: #e9e9e9;
	    border-color: #bbb;
	}

	.md-toolbar-button.active {
	    background-color: #d0e4ff;
	    border-color: #007bff;
	    color: #0056b3;
	}

	.md-toolbar-button svg {
	    width: 18px;
	    /* Icon size */
	    height: 18px;
	    /* Icon size */
	    vertical-align: middle;
	}

	.md-editor-content-area {
	    position: relative;
	    display: flex;
	    flex-direction: column;
	    height: 500px;
	}

	.md-editable-area,
	.md-markdown-area {
	    height: 100%;
	    overflow-y: auto;
	    padding: 15px;
	    outline: none;
	    word-wrap: break-word;
	    font-size: 15px;
	    line-height: 1.7;
	    width: 100%;
	    box-sizing: border-box;
	    border: none;
	}

	.md-editable-area h1 {
	    font-size: 2em;
	    font-weight: bold;
	    margin-top: 0.67em;
	    margin-bottom: 0.67em;
	    border-bottom: 1px solid #eee;
	    padding-bottom: 0.3em;
	}

	.md-editable-area h2 {
	    font-size: 1.5em;
	    font-weight: bold;
	    margin-top: 0.83em;
	    margin-bottom: 0.83em;
	    border-bottom: 1px solid #eee;
	    padding-bottom: 0.3em;
	}

	.md-editable-area h3 {
	    font-size: 1.17em;
	    font-weight: bold;
	    margin-top: 1em;
	    margin-bottom: 1em;
	}

	.md-editable-area p {
	    margin-bottom: 1em;
	}

	.md-editable-area strong,
	.md-editable-area b {
	    font-weight: bold;
	}

	.md-editable-area em,
	.md-editable-area i {
	    font-style: italic;
	}

	.md-editable-area s,
	.md-editable-area del {
	    text-decoration: line-through;
	}

	.md-editable-area a {
	    color: #0366d6;
	    text-decoration: underline;
	}

	.md-editable-area ul,
	.md-editable-area ol {
	    margin-left: 20px;
	    margin-bottom: 1em;
	}

	.md-editable-area li {
	    margin-bottom: 0.2em;
	}

	.md-editable-area blockquote {
	    border-left: 3px solid #007bff;
	    margin-left: 0;
	    padding-left: 1em;
	    color: #555;
	    font-style: italic;
	    margin-bottom: 1em;
	}

	.md-editable-area blockquote p {
	    margin-bottom: 0.5em;
	}

	.md-editable-area pre {
	    background-color: #f0f0f0;
	    padding: 10px;
	    border-radius: 4px;
	    overflow-x: auto;
	    font-family: 'Menlo', 'Consolas', monospace;
	    font-size: 0.9em;
	    margin-bottom: 1em;
	    white-space: pre;
	}

	.md-editable-area code {
	    font-family: 'Menlo', 'Consolas', monospace;
	    background-color: #f0f0f0;
	    padding: 0.1em 0.3em;
	    border-radius: 3px;
	}

	.md-editable-area pre code {
	    background-color: transparent;
	    padding: 0;
	    font-size: inherit;
	}

	.md-editable-area hr {
	    margin-top: 1em;
	    margin-bottom: 1em;
	    border: 0;
	    border-top: 1px solid #eee;
	}

	.md-editable-area table {
	    border-collapse: collapse;
	    width: 100%;
	    margin-bottom: 1em;
	    border: 1px solid #ddd;
	}

	.md-editable-area th,
	.md-editable-area td {
	    border: 1px solid #ddd;
	    padding: 8px 10px;
	    text-align: left;
	    min-width: 50px;
	}

	.md-editable-area th {
	    background-color: #f7f7f7;
	    font-weight: bold;
	}

	.md-editable-area td:empty::before,
	.md-editable-area th:empty::before {
	    content: "\200B";
	}

	.md-markdown-area {
	    font-family: 'Menlo', 'Consolas', monospace;
	    resize: none;
	    display: none;
	}

	.md-tabs {
	    display: flex;
	    border-top: 1px solid #ddd;
	    background-color: #f7f7f7;
	}

	.md-tab-button {
	    padding: 10px 15px;
	    border: none;
	    background-color: transparent;
	    cursor: pointer;
	    font-size: 14px;
	    color: #555;
	    border-right: 1px solid #ddd;
	}

	.md-tab-button:last-child {
	    border-right: none;
	}

	.md-tab-button.active {
	    background-color: #fff;
	    color: #007bff;
	    font-weight: bold;
	    border-bottom: 2px solid #007bff;
	    margin-bottom: -1px;
	}

	.md-tab-button:hover:not(.active) {
	    background-color: #e9e9e9;
	}

	.md-table-grid-selector {
	    position: absolute;
	    background-color: #fff;
	    border: 1px solid #ccc;
	    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	    padding: 8px;
	    z-index: 1050;
	    border-radius: 4px;
	    display: none;
	}

	.md-table-grid-cells-container {
	    display: grid;
	    grid-gap: 2px;
	}

	.md-table-grid-cell {
	    width: 18px;
	    height: 18px;
	    background-color: #f0f0f0;
	    border: 1px solid #ddd;
	    cursor: pointer;
	    box-sizing: border-box;
	}

	.md-table-grid-cell.highlighted {
	    background-color: #cce5ff;
	    border-color: #007bff;
	}

	.md-table-grid-label {
	    text-align: center;
	    margin-top: 8px;
	    font-size: 13px;
	    color: #555;
	}