/**
 * DowntownRP — SCEditor modern skin (theme override)
 * SMF bu dosyayi editor varsa OTOMATIK yukler (Subs-Editor.php: jquery.sceditor.theme.css).
 * Upgrade-safe: cekirdek jquery.sceditor.css'e dokunmaz, sadece ezer.
 * Marka rengi: #93020A (DowntownRP kirmizisi).
 */

/* Dark tema varsayilan (html class yok) */
:root {
	--dt-accent: #93020A;
	--dt-accent-soft: rgba(147, 2, 10, 0.12);
	--dt-toolbar-bg: #1D2125;
	--dt-toolbar-border: #3A3F45;
	--dt-btn-fg: #A1A6AD;
	--dt-editor-bg: #181B1F;
	--dt-dropdown-bg: #1D2125;
	--dt-emoji-tab-bg: #2A2E33;
}
/* Light tema override */
html.light {
	--dt-toolbar-bg: #ffffff;
	--dt-toolbar-border: #e3e3e6;
	--dt-btn-fg: #4a4a4f;
	--dt-editor-bg: #ffffff;
	--dt-dropdown-bg: #ffffff;
	--dt-emoji-tab-bg: #f3f3f4;
	--dt-accent-soft: rgba(147, 2, 10, 0.08);
}

/* ---- Konteyner: temiz, yuvarlak, hafif golge ---- */
div.sceditor-container {
	border: 1px solid var(--dt-toolbar-border) !important;
	border-radius: 10px !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18) !important;
	overflow: hidden;
	background: var(--dt-editor-bg);
}
div.sceditor-container:focus-within {
	border-color: var(--dt-accent) !important;
	box-shadow: 0 0 0 3px var(--dt-accent-soft) !important;
}

/* ---- Toolbar ---- */
div.sceditor-toolbar {
	background: var(--dt-toolbar-bg) !important;
	border-bottom: 1px solid var(--dt-toolbar-border) !important;
	border-radius: 0 !important;
	padding: 6px 8px !important;
	margin: 0 !important;
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
	align-items: center;
}

/* ---- Buton gruplari: cizgisiz, ince ayirici ---- */
div.sceditor-group {
	background: transparent !important;
	border: 0 !important;
	margin: 0 4px 0 0 !important;
	padding: 0 4px 0 0 !important;
	border-radius: 0 !important;
	position: relative;
	display: inline-flex;
	align-items: center;
}
/* gruplar arasi dikey ayirici */
div.sceditor-group:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 18%;
	height: 64%;
	width: 1px;
	background: var(--dt-toolbar-border);
}

/* ---- Butonlar: daha buyuk tiklama alani, yumusak ---- */
.sceditor-button {
	width: 22px !important;
	height: 22px !important;
	padding: 5px !important;
	margin: 1px !important;
	border-radius: 7px !important;
	opacity: 0.78;
	transition: background 0.12s ease, opacity 0.12s ease, transform 0.06s ease;
}
.sceditor-button div,
.sceditor-button svg {
	width: 22px;
	height: 22px;
}
.sceditor-button:hover {
	background: var(--dt-accent-soft) !important;
	box-shadow: none !important;
	opacity: 1;
}
.sceditor-button:active {
	transform: translateY(1px);
	box-shadow: none !important;
}
.sceditor-button.active {
	background: var(--dt-accent-soft) !important;
	box-shadow: inset 0 0 0 1px rgba(147, 2, 10, 0.25) !important;
	opacity: 1;
}
.sceditor-button.disabled {
	opacity: 0.3;
}

/* ---- WYSIWYG / kaynak alani: ferah ---- */
div.sceditor-container textarea,
div.sceditor-container iframe {
	padding: 4px !important;
}

/* ---- Acilir kutular (renk, font, emoji): modern kart ---- */
div.sceditor-dropdown,
div.sceditor-smileyPopup {
	border: 1px solid var(--dt-toolbar-border) !important;
	border-radius: 10px !important;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
	padding: 8px !important;
	background: var(--dt-dropdown-bg) !important;
}
.sceditor-insertemoticon img {
	border-radius: 4px;
	transition: transform 0.08s ease, background 0.08s ease;
}
.sceditor-insertemoticon img:hover {
	background: var(--dt-accent-soft);
	transform: scale(1.15);
}

/* ---- dtemoji butonu ikonu (emoji yuzu) ---- */
.sceditor-button-dtemoji div {
	background: none !important;
	position: relative;
}
.sceditor-button-dtemoji div::after {
	content: "😀";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	line-height: 1;
}

/* ---- Modern emoji picker paneli (dt-emoji.js) ---- */
.dt-emoji-panel {
	width: 280px;
	max-width: 88vw;
	font-family: inherit;
}
.dt-emoji-search {
	width: 100%;
	box-sizing: border-box;
	padding: 7px 10px;
	margin-bottom: 8px;
	border: 1px solid var(--dt-toolbar-border, #e3e3e6);
	border-radius: 8px;
	font-size: 13px;
	outline: none;
}
.dt-emoji-search:focus {
	border-color: var(--dt-accent, #93020A);
	box-shadow: 0 0 0 3px var(--dt-accent-soft, rgba(147,2,10,0.08));
}
.dt-emoji-tabs {
	display: flex;
	gap: 4px;
	margin-bottom: 8px;
}
.dt-emoji-tab {
	flex: 1;
	border: 0;
	background: var(--dt-emoji-tab-bg);
	border-radius: 8px;
	padding: 6px 0;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.12s ease;
}
.dt-emoji-tab:hover {
	background: var(--dt-accent-soft, rgba(147,2,10,0.08));
}
.dt-emoji-tab.active {
	background: var(--dt-accent-soft, rgba(147,2,10,0.08));
	box-shadow: inset 0 0 0 2px rgba(147, 2, 10, 0.3);
}
.dt-emoji-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 2px;
	max-height: 220px;
	overflow-y: auto;
}
.dt-emoji-item {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	font-size: 21px;
	line-height: 1;
	border-radius: 7px;
	cursor: pointer;
	transition: background 0.1s ease, transform 0.06s ease;
}
.dt-emoji-item:hover {
	background: var(--dt-accent-soft, rgba(147,2,10,0.08));
	transform: scale(1.2);
}

/* ===== Modern SVG ikon seti (eski editor_sprite.png override) ===== */
/* Sprite'i gizle, her butona temiz cizgisel SVG (data-uri, stroke=%234a4a4f = light-fg) */
.sceditor-button div {
	background-image: none !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	background-size: 17px 17px !important;
	width: 22px !important;
	height: 22px !important;
}
/* Dark temada SVG ikonlari aciyor (koyu stroke -> açık renk) */
html:not(.light) .sceditor-button div {
	filter: brightness(0) invert(1) opacity(0.65);
}
html:not(.light) .sceditor-button:hover div,
html:not(.light) .sceditor-button.active div {
	filter: brightness(0) invert(1) opacity(1);
}
/* dt-emoji-search dark */
html:not(.light) .dt-emoji-search {
	background: var(--dt-editor-bg);
	color: #A1A6AD;
}
html:not(.light) div.sceditor-dropdown *,
html:not(.light) div.sceditor-smileyPopup * {
	color: #A1A6AD;
}
/* DowntownRP: dtemoji (😀 render olmuyordu) + ozel BBCode butonlari → SVG ikon. RESET'TEN SONRA olmali (yoksa .sceditor-button div reset'i eziyor). */
.sceditor-button-dtemoji div::after { content: none !important; }
.sceditor-button-dtemoji div  { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='9'/><path d='M8.5 14.5a4 4 0 0 0 7 0'/><line x1='9' y1='9.5' x2='9.01' y2='9.5'/><line x1='15' y1='9.5' x2='15.01' y2='9.5'/></svg>") !important; }
.sceditor-button-spotify div  { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='7' cy='17' r='3'/><circle cx='17' cy='15' r='3'/><path d='M10 17V6l10-2v11'/></svg>") !important; }
.sceditor-button-divbox div   { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='18' height='14' rx='2'/></svg>") !important; }
.sceditor-button-divboxex div { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' stroke-dasharray='3 3'><rect x='3' y='5' width='18' height='14' rx='2'/></svg>") !important; }
.sceditor-button-spoiler div  { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M2 12s4-7 10-7 10 7 10 7-4 7-10 7-10-7-10-7z'/><circle cx='12' cy='12' r='3'/><line x1='3' y1='3' x2='21' y2='21'/></svg>") !important; }
/* stroke=#4a4a4f (--dt-btn-fg) cizgisel ikonlar */
.sceditor-button-bold div        { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M6 4h8a4 4 0 0 1 0 8H6z'/><path d='M6 12h9a4 4 0 0 1 0 8H6z'/></svg>") !important; }
.sceditor-button-italic div      { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round'><line x1='19' y1='4' x2='10' y2='4'/><line x1='14' y1='20' x2='5' y2='20'/><line x1='15' y1='4' x2='9' y2='20'/></svg>") !important; }
.sceditor-button-underline div   { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round'><path d='M6 3v7a6 6 0 0 0 12 0V3'/><line x1='4' y1='21' x2='20' y2='21'/></svg>") !important; }
.sceditor-button-strike div      { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round'><line x1='4' y1='12' x2='20' y2='12'/><path d='M7 7a4 3 0 0 1 8 0M9 17a4 3 0 0 0 8 0'/></svg>") !important; }
.sceditor-button-link div        { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M10 13a5 5 0 0 0 7 0l3-3a5 5 0 0 0-7-7l-1 1'/><path d='M14 11a5 5 0 0 0-7 0l-3 3a5 5 0 0 0 7 7l1-1'/></svg>") !important; }
.sceditor-button-email div       { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='18' height='14' rx='2'/><path d='m3 7 9 6 9-6'/></svg>") !important; }
.sceditor-button-image div       { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='3' width='18' height='18' rx='2'/><circle cx='9' cy='9' r='2'/><path d='m21 15-5-5L5 21'/></svg>") !important; }
.sceditor-button-youtube div     { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linejoin='round'><rect x='2' y='5' width='20' height='14' rx='4'/><path d='m10 9 5 3-5 3z' fill='%234a4a4f' stroke='none'/></svg>") !important; }
.sceditor-button-table div       { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linejoin='round'><rect x='3' y='3' width='18' height='18' rx='2'/><line x1='3' y1='9' x2='21' y2='9'/><line x1='3' y1='15' x2='21' y2='15'/><line x1='9' y1='3' x2='9' y2='21'/></svg>") !important; }
.sceditor-button-code div        { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='16 18 22 12 16 6'/><polyline points='8 6 2 12 8 18'/></svg>") !important; }
.sceditor-button-quote div       { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%234a4a4f' stroke='none'><path d='M7 7H4a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h2v1a2 2 0 0 1-2 2H4v2h0a4 4 0 0 0 4-4V8a1 1 0 0 0-1-1Zm10 0h-3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h2v1a2 2 0 0 1-2 2h0v2h0a4 4 0 0 0 4-4V8a1 1 0 0 0-1-1Z'/></svg>") !important; }
.sceditor-button-bulletlist div  { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round'><line x1='9' y1='6' x2='20' y2='6'/><line x1='9' y1='12' x2='20' y2='12'/><line x1='9' y1='18' x2='20' y2='18'/><circle cx='4' cy='6' r='1.4' fill='%234a4a4f'/><circle cx='4' cy='12' r='1.4' fill='%234a4a4f'/><circle cx='4' cy='18' r='1.4' fill='%234a4a4f'/></svg>") !important; }
.sceditor-button-orderedlist div { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round'><line x1='10' y1='6' x2='21' y2='6'/><line x1='10' y1='12' x2='21' y2='12'/><line x1='10' y1='18' x2='21' y2='18'/><path d='M4 6h1v4M4 10h2' stroke-width='1.6'/><path d='M4 14h2v2H4v2h2' stroke-width='1.6'/></svg>") !important; }
.sceditor-button-source div      { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 6 1 12l3 6M20 6l3 6-3 6M14 4l-4 16'/></svg>") !important; }
.sceditor-button-maximize div    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M8 3H5a2 2 0 0 0-2 2v3M16 3h3a2 2 0 0 1 2 2v3M8 21H5a2 2 0 0 1-2-2v-3M16 21h3a2 2 0 0 0 2-2v-3'/></svg>") !important; }
.sceditor-button-removeformat div{ background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 7V5h16M9 5l-2 14M13 5l-1 7'/><line x1='15' y1='15' x2='21' y2='21'/><line x1='21' y1='15' x2='15' y2='21'/></svg>") !important; }
.sceditor-button-horizontalrule div { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round'><line x1='4' y1='12' x2='20' y2='12'/></svg>") !important; }
.sceditor-button-pre div         { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='16' rx='2'/><path d='M7 9l2 2-2 2M12 13h4' stroke-width='1.7'/></svg>") !important; }
.sceditor-button-superscript div { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 7l8 10M12 7L4 17'/><path d='M18 8a2 2 0 1 1 3 1.5L18 12h3' stroke-width='1.5'/></svg>") !important; }
.sceditor-button-subscript div   { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 5l8 10M12 5L4 15'/><path d='M18 16a2 2 0 1 1 3 1.5L18 20h3' stroke-width='1.5'/></svg>") !important; }
.sceditor-button-left div        { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round'><line x1='3' y1='6' x2='21' y2='6'/><line x1='3' y1='12' x2='15' y2='12'/><line x1='3' y1='18' x2='18' y2='18'/></svg>") !important; }
.sceditor-button-center div      { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round'><line x1='3' y1='6' x2='21' y2='6'/><line x1='6' y1='12' x2='18' y2='12'/><line x1='4' y1='18' x2='20' y2='18'/></svg>") !important; }
.sceditor-button-right div       { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round'><line x1='3' y1='6' x2='21' y2='6'/><line x1='9' y1='12' x2='21' y2='12'/><line x1='6' y1='18' x2='21' y2='18'/></svg>") !important; }
.sceditor-button-justify div     { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round'><line x1='3' y1='6' x2='21' y2='6'/><line x1='3' y1='12' x2='21' y2='12'/><line x1='3' y1='18' x2='21' y2='18'/></svg>") !important; }
.sceditor-button-font div        { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 20l5-14 5 14M6 14h6'/><path d='M16 20l3-8 3 8M17.5 17h3' stroke-width='1.6'/></svg>") !important; }
.sceditor-button-size div        { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 18l5-12 5 12M5 13h6'/><path d='M15 18l3-7 3 7M16 15h4' stroke-width='1.6'/></svg>") !important; }
.sceditor-button-color div       { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3l5 12H7z'/><line x1='5' y1='20' x2='19' y2='20' stroke='%2393020A' stroke-width='3'/></svg>") !important; }
.sceditor-button-floatleft div   { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='8' height='8' rx='1'/><line x1='13' y1='7' x2='21' y2='7'/><line x1='13' y1='11' x2='21' y2='11'/><line x1='3' y1='17' x2='21' y2='17'/><line x1='3' y1='21' x2='21' y2='21'/></svg>") !important; }
.sceditor-button-floatright div  { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='13' y='5' width='8' height='8' rx='1'/><line x1='3' y1='7' x2='11' y2='7'/><line x1='3' y1='11' x2='11' y2='11'/><line x1='3' y1='17' x2='21' y2='17'/><line x1='3' y1='21' x2='21' y2='21'/></svg>") !important; }

/* ---- Mobil: butonlar daha rahat, toolbar kayar ---- */
@media (max-width: 480px) {
	div.sceditor-toolbar {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding: 6px !important;
	}
	.sceditor-button {
		width: 26px !important;
		height: 26px !important;
	}
}
