:root {
  --kan-block-shadow: 0 0px 5px 0 rgba(50, 53, 61, 0.1);
  --kan-block-radius: 5px;
  --kan-theme-color: #d7050f;
  --kan-border-color: rgba(91, 97, 110, 0.2);
  --kan-border-color2: #868685;
  --kan-border-color3: #868685;
  --kan-font-family: "Inter", sans-serif;
  --kan-placeholder-bg: #f8f9fa;
  --kan-bg-white-color: #fff;
}
/* Yeni Panel */
.kan__container {
  --global--color-green: #d1e4dd;
  --global--color-blue: #d1dfe4;
  --global--color-purple: #d1d1e4;
  --global--color-red: #e4d1d1;
  --global--color-orange: #e4dad1;
  --global--color-yellow: #eeeadd;
  --background: #fff;
  --subtle-background: #eeeadd;
  --text: #000;
  --text-light: #fff;
  --accent-1: #d92e2e;
  --accent-2: #000;
  --nav-background: #f8f8f8;
  --nav-border: #767676;
  --nav-color: #767676;
  --nav-current: #000;
}
.kan-wrap-2 {
  margin-left: 4px !important;
  margin-right: 25px !important;
  margin-bottom: -56px !important;
}

@media screen and (max-width: 782px) {
  .kan-php.auto-fold #wpcontent,
  .credits-php.auto-fold #wpcontent,
  .freedoms-php.auto-fold #wpcontent,
  .privacy-php.auto-fold #wpcontent {
    padding-left: 24px;
  }
}
.kan__container {
  max-width: 100%;
  margin: 25px 40px 0 20px;
  clear: both;
}
.kan__container .alignleft {
  float: left;
}
.kan__container .alignright {
  float: right;
}
.kan__container .aligncenter {
  text-align: center;
}
.kan__container .is-vertically-aligned-top {
  -ms-grid-row-align: start;
  align-self: start;
}
.kan__container .is-vertically-aligned-center {
  -ms-grid-row-align: center;
  align-self: center;
}
.kan__container .is-vertically-aligned-bottom {
  -ms-grid-row-align: end;
  align-self: end;
}
.kan__section {
  background: #fff;
  background: var(--background);
  clear: both;
}
.kan__container .has-accent-background-color {
  background-color: #d1e4dd;
  background-color: var(--accent-1);
}
.kan__container .has-transparent-background-color {
  background-color: transparent;
}
.kan__container .has-accent-color {
  color: #000;
  color: var(--text);
  font-weight: 700;
}
.kan__container .has-border {
  border: 3px solid currentColor;
}
.kan__container .has-subtle-background-color {
  background-color: #eeeadd;
  background-color: var(--subtle-background);
}
.kan__container .has-background-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.kan__section {
  margin: 1em 0;
}
.kan__section .column {
  padding: 32px;
}
.kan__section + .kan__section .column {
  padding-top: 0;
}
.kan__section .column.has-border,
.kan__section .column[class*="background-color"] {
  padding-top: 32px;
}
.kan__section .column.is-edge-to-edge {
  padding: 0;
}
.kan__section .column p:first-of-type {
  margin-top: 0;
}
.kan__section .column p:last-of-type {
  margin-bottom: 0;
}
.kan__section .has-text-columns {
  columns: 2;
  column-gap: 64px;
}
.kan__section .is-section-header {
  margin-bottom: 0;
  padding: 32px 32px 0;
}
.kan__section .is-section-header p:last-child {
  margin-bottom: 0;
}
.kan__section .is-section-header:first-child:last-child {
  padding: 0;
}
.kan__section.is-feature {
  padding: 32px;
}
.kan__section.is-feature p {
  margin: 0;
}
.kan__section.is-feature p + p {
  margin-top: 1rem;
}
.kan__section.has-1-column {
  margin-left: auto;
  margin-right: auto;
  max-width: 36em;
}
.kan__section.has-2-columns,
.kan__section.has-3-columns,
.kan__section.has-4-columns,
.kan__section.has-overlap-style {
  display: -ms-grid;
  display: grid;
}
.kan__section.has-gutters {
  gap: 16px;
}
.kan__section.has-2-columns {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
.kan__section.has-2-columns.is-wider-right {
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
}
.kan__section.has-2-columns.is-wider-left {
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
}
.kan__section.has-2-columns .is-section-header {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}
.kan__section.has-2-columns .column:nth-of-type(2n + 1) {
  -ms-grid-column: 1;
  grid-column-start: 1;
}
.kan__section.has-2-columns .column:nth-of-type(2n) {
  -ms-grid-column: 2;
  grid-column-start: 2;
}
.kan__section.has-3-columns {
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
}
.kan__section.has-3-columns .is-section-header {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
}
.kan__section.has-3-columns .column:nth-of-type(3n + 1) {
  -ms-grid-column: 1;
  grid-column-start: 1;
}
.kan__section.has-3-columns .column:nth-of-type(3n + 2) {
  -ms-grid-column: 2;
  grid-column-start: 2;
}
.kan__section.has-3-columns .column:nth-of-type(3n) {
  -ms-grid-column: 3;
  grid-column-start: 3;
}
.kan__section.has-4-columns {
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
}
.kan__section.has-4-columns .is-section-header {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 4;
  grid-column-end: span 4;
}
.kan__section.has-4-columns .column:nth-of-type(4n + 1) {
  -ms-grid-column: 1;
  grid-column-start: 1;
}
.kan__section.has-4-columns .column:nth-of-type(4n + 2) {
  -ms-grid-column: 2;
  grid-column-start: 2;
}
.kan__section.has-4-columns .column:nth-of-type(4n + 3) {
  -ms-grid-column: 3;
  grid-column-start: 3;
}
.kan__section.has-4-columns .column:nth-of-type(4n) {
  -ms-grid-column: 4;
  grid-column-start: 4;
}
.kan__section.has-2-columns .is-section-header ~ .column,
.kan__section.has-3-columns .is-section-header ~ .column,
.kan__section.has-4-columns .is-section-header ~ .column,
.kan__section.has-overlap-style .is-section-header ~ .column {
  -ms-grid-row: 2;
  grid-row-start: 2;
}
.kan__section.has-overlap-style {
  -ms-grid-columns: (1fr) [7];
  grid-template-columns: repeat(7, 1fr);
}
.kan__section.has-overlap-style .column {
  -ms-grid-row: 1;
  grid-row-start: 1;
}
.kan__section.has-overlap-style .column:nth-of-type(2n + 1) {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
}
.kan__section.has-overlap-style .column:nth-of-type(2n) {
  -ms-grid-column: 4;
  grid-column-start: 4;
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
}
.kan__section.has-overlap-style .column.is-top-layer {
  z-index: 1;
}
@media screen and (max-width: 782px) {
  .kan__section.has-2-columns.is-wider-left,
  .kan__section.has-2-columns.is-wider-right,
  .kan__section.has-3-columns {
    display: block;
    padding-bottom: 16px;
  }
  .kan__section.has-2-columns.has-gutters .column,
  .kan__section.has-3-columns.has-gutters .column {
    margin-bottom: 16px;
  }
  .kan__section.has-2-columns.has-gutters .column:last-child,
  .kan__section.has-3-columns.has-gutters .column:last-child {
    margin-bottom: 0;
  }
  .kan__section.has-3-columns .column:nth-of-type(n) {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .kan__section.has-4-columns {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
  .kan__section.has-4-columns .column:nth-of-type(2n + 1) {
    -ms-grid-column: 1;
    grid-column-start: 1;
  }
  .kan__section.has-4-columns .column:nth-of-type(2n) {
    -ms-grid-column: 2;
    grid-column-start: 2;
  }
  .kan__section.has-4-columns .column:nth-of-type(4n),
  .kan__section.has-4-columns .column:nth-of-type(4n + 3) {
    -ms-grid-row: 2;
    grid-row-start: 2;
  }
  .kan__section.has-4-columns .is-section-header {
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }
  .kan__section.has-4-columns .is-section-header ~ .column:nth-of-type(4n),
  .kan__section.has-4-columns .is-section-header ~ .column:nth-of-type(4n + 3) {
    -ms-grid-row: 3;
    grid-row-start: 3;
  }
  .kan__section.has-overlap-style {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .kan__section.has-overlap-style .column.column {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
  }
}
@media screen and (max-width: 600px) {
  .kan__section.has-2-columns {
    display: block;
    padding-bottom: 16px;
  }
  .kan__section.has-2-columns.has-gutters .column {
    margin-bottom: 16px;
  }
  .kan__section.has-2-columns.has-gutters .column:last-child {
    margin-bottom: 0;
  }
  .kan__section.has-2-columns .column:nth-of-type(n) {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 480px) {
  .kan__section.has-4-columns {
    display: block;
    padding-bottom: 16px;
  }
  .kan__section.has-4-columns.has-gutters .column {
    margin-bottom: 16px;
  }
  .kan__section.has-4-columns.has-gutters .column:last-child {
    margin-bottom: 0;
  }
  .kan__section.has-4-columns .column:nth-of-type(n) {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.kan__container {
  line-height: 1.4;
  color: #000;
  color: var(--text);
}
.kan__container h1 {
  margin: 0 0 1em;
  padding: 0;
  font-weight: 600;
  color: inherit;
}
.kan__container h1,
.kan__container h2,
.kan__container h3.is-larger-heading {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-size: 2.9em;
  line-height: 1.2;
  font-weight: 400;
}
.kan__container h2.is-smaller-heading,
.kan__container h3 {
  margin-top: 0;
  font-size: 1.5em;
}
.kan__container p {
  font-size: inherit;
  line-height: inherit;
}
.kan__section a {
  color: #d92e2e;
  text-decoration: none;
}
.kan__section a:active,
.kan__section a:focus,
.kan__section a:hover {
  color: #000;
  color: var(--accent-2);
  text-decoration: none;
}
.wp-credits-list a {
  text-decoration: none;
}
.wp-credits-list a:active,
.wp-credits-list a:focus,
.wp-credits-list a:hover {
  text-decoration: underline;
}
.kan__container ul {
  list-style: disc;
  margin-left: 16px;
}
.kan__container img {
  margin: 0;
  max-width: 100%;
  vertical-align: middle;
}
.kan__container .kan__image {
  margin: 0;
}
.kan__container .kan__image img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.kan__container .kan__image .wp-video {
  margin-left: auto;
  margin-right: auto;
}
.kan__container .kan__image + h3 {
  margin-top: 1.5em;
}
.kan__container hr {
  margin: 0;
  height: 32px;
  border: none;
}
.kan__container hr.is-small {
  height: 8px;
}
.kan__container hr.is-large {
  height: 64px;
  width: 2px;
  margin: 16px auto;
  background: currentColor;
}
.kan__container .notice,
.kan__container div.error,
.kan__container div.updated {
  display: none !important;
}
.kan__section {
  font-size: 1.2em;
}
.kan__section.is-feature {
  font-size: 1.6em;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .kan__section.is-feature {
    font-size: 1.4em;
    font-weight: 500;
  }
  .kan__container h1,
  .kan__container h2,
  .kan__container h3.is-larger-heading {
    font-size: 2em;
  }
}
.kan__header {
  margin-bottom: 32px;
  /* padding: 20px; */
  background-color: #d1e4dd;
  background-color: var(--accent-1);
  color: #fff;
}
.kan__header-image {
  margin: 0 32px 3em;
}
.kan__header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
}
.kan__header-title {
  display: inline-block;
  text-align: center;
}
.kan__header-title p {
  margin: 0;
  padding: 0;
  font-size:2.75rem;
  line-height: 1;
  font-weight: 700;
}
.kan__header-text {
  margin: 0;
  max-width: 18em;
  font-size: 1.25em;
  line-height: 1.4;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
}
.kan__header-text p {
  margin: 0;
}
.kan__header-badge {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / span 2;
  -ms-grid-row-align: center;
  align-self: center;
}
.kan__header-navigation {
  clear: both;
  padding-top: 0;
  background: #fff;
  background: var(--nav-background);
  color: #767676;
  color: var(--nav-color);
  border-bottom: 3px solid #767676;
  border-bottom: 3px solid var(--nav-border);
}
.kan__header-navigation .nav-tab {
  margin-left: 0;
  padding: 24px 32px;
  font-size: 1.4em;
  line-height: 1;
  border-width: 0 0 3px;
  border-style: solid;
  border-color: transparent;
  background: 0 0;
  color: inherit;
}
.kan__header-navigation .nav-tab:active,
.kan__header-navigation .nav-tab:hover {
  background-color: #000;
  background-color: var(--text);
  color: #fff;
  color: var(--text-light);
}
.kan__header-navigation .nav-tab-active {
  margin-bottom: -3px;
  color: #000;
  color: var(--nav-current);
  border-width: 0 0 6px;
  border-color: #000;
  border-color: var(--nav-current);
}
.kan__header-navigation .nav-tab-active:active,
.kan__header-navigation .nav-tab-active:hover {
  background-color: #000;
  background-color: var(--text);
  color: #fff;
  color: var(--text-light);
  border-color: #000;
  border-color: var(--nav-current);
}
@media screen and (max-width: 782px) {
  .kan__container .kan__header-text {
    font-size: 1.4em;
  }
  .kan__header-container {
    display: block;
  }
  .kan__header-badge,
  .kan__header-image,
  .kan__header-text,
  .kan__header-title {
    margin-left: 16px;
    margin-right: 16px;
  }
  .kan__header-text {
    margin-bottom: 1em;
  }
  .kan__header-badge {
    margin-bottom: 3em;
  }
  .kan__header-navigation .nav-tab {
    margin-top: 0;
    margin-right: 0;
    padding: 24px 16px;
  }
}
@media screen and (max-width: 480px) {
  .kan__header-title p {
    font-size: 3.2em;
  }
  .kan__header-navigation .nav-tab {
    float: none;
    display: block;
    margin-bottom: 0;
    padding: 16px 16px;
    border-left-width: 6px;
    border-bottom: none;
  }
  .kan__header-navigation .nav-tab-active {
    border-bottom: none;
    border-left-width: 6px;
  }
}
.kan__section .wp-people-group {
  margin: 0;
}
.kan__section .wp-person {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  padding: 0 1em 1em 0;
  height: 6em;
  width: calc(33% - 4px);
  min-width: 280px;
}
.kan__section .compact .wp-person {
  height: auto;
  width: calc(25% - 4px);
  min-width: 220px;
  padding-bottom: 0.5em;
}
.kan__section .wp-person .gravatar {
  float: left;
  margin: -4px 0.85em 0.85em 0;
  padding: 1px;
  width: 80px;
  height: 80px;
  border-radius: 100%;
}
.kan__section .compact .wp-person .gravatar {
  width: 40px;
  height: 40px;
}
.kan__section .wp-person .web {
  font-size: 1.4em;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  color: var(--text);
}
.kan__section .wp-person .web:hover {
  text-decoration: underline;
}
.kan__section .compact .wp-person .web {
  font-size: 1.2em;
}
.kan__section .wp-person .title {
  display: block;
  margin-top: 0.5em;
}
@media screen and (max-width: 480px) {
  .kan__section .wp-person {
    min-width: 100%;
  }
  .kan__section .wp-person .gravatar {
    width: 60px;
    height: 60px;
  }
  .kan__section .wp-person .web {
    font-size: 1em;
  }
  .kan__section .compact .wp-person .web {
    font-size: 1em;
  }
}
.kan__section .column .freedoms-image {
  margin-bottom: 1em;
}
.kan-wrap {
  position: relative;
  margin: 25px 40px 0 20px;

  font-size: 15px;
}
.kan-wrap.full-width-layout {
  max-width: 1200px;
}
.kan-wrap-content {
  max-width: 1050px;
}
.kan-wrap .notice,
.kan-wrap div.error,
.kan-wrap div.updated {
  display: none !important;
}
.kan-wrap hr {
  border: 0;
  height: 0;
  margin: 3em 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.kan-wrap img {
  margin: 0;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.kan-wrap .inline-svg img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.kan-wrap video {
  margin: 1.5em auto;
}
.wp-badge {
  background: #0073aa url(images/w-logo-white.png?ver=20160308) no-repeat;
  background-position: center 25px;
  background-size: 80px 80px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  margin: 5px 0 0;
  padding-top: 120px;
  height: 40px;
  display: inline-block;
  width: 140px;
  text-rendering: optimizeLegibility;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.svg .wp-badge {
  background-image: url(images/wordpress-logo-white.svg?ver=20160308);
}
.kan-wrap .wp-badge {
  position: absolute;
  top: 0;
  right: 0;
}
.kan-wrap .nav-tab {
  padding-right: 15px;
  padding-left: 15px;
  font-size: 18px;
  line-height: 1.33333333;
}
.kan-wrap h1 {
  margin: 0.2em 200px 0 0;
  padding: 0;
  color: #32373c;
  line-height: 1.2;
  font-size: 2.8em;
  font-weight: 400;
}
.kan-wrap h2 {
  margin: 40px 0 0.6em;
  font-size: 2.7em;
  line-height: 1.3;
  font-weight: 300;
  text-align: center;
}
.kan-wrap h3 {
  margin: 1.25em 0 0.6em;
  font-size: 1.4em;
  line-height: 1.5;
}
.kan-wrap h4 {
  font-size: 16px;
  color: #23282d;
}
.kan-wrap p {
  line-height: 1.5;
  font-size: 16px;
}
.kan-wrap code,
.kan-wrap ol li p {
  font-size: 14px;
  font-weight: 400;
}
.kan-wrap figcaption {
  font-size: 13px;
  text-align: center;
  color: #fff;
  text-overflow: ellipsis;
}
.kan-wrap .kan-description,
.kan-wrap .kan-text {
  margin-top: 1.4em;
  font-weight: 400;
  line-height: 1.6;
  font-size: 19px;
}
.kan-wrap .kan-text {
  margin: 1em 200px 1em 0;
  color: #555d66;
}
.kan-wrap .has-1-columns,
.kan-wrap .has-2-columns,
.kan-wrap .has-3-columns,
.kan-wrap .has-4-columns {
  display: -ms-grid;
  display: grid;
  max-width: 800px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}
.kan-wrap .column {
  margin-right: 20px;
  margin-left: 20px;
}
.kan-wrap .is-wide {
  max-width: 760px;
}
.kan-wrap .is-fullwidth {
  max-width: 100%;
}
.kan-wrap .has-1-columns {
  display: block;
  max-width: 680px;
  margin: 0 auto 40px;
}
.kan-wrap .has-2-columns {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
.kan-wrap .has-2-columns .column:nth-of-type(2n + 1) {
  -ms-grid-column: 1;
  grid-column-start: 1;
}
.kan-wrap .has-2-columns .column:nth-of-type(2n) {
  -ms-grid-column: 2;
  grid-column-start: 2;
}
.kan-wrap .has-2-columns.is-wider-right {
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
}
.kan-wrap .has-2-columns.is-wider-left {
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
}
.kan-wrap .has-3-columns {
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
}
.kan-wrap .has-3-columns .column:nth-of-type(3n + 1) {
  -ms-grid-column: 1;
  grid-column-start: 1;
}
.kan-wrap .has-3-columns .column:nth-of-type(3n + 2) {
  -ms-grid-column: 2;
  grid-column-start: 2;
}
.kan-wrap .has-3-columns .column:nth-of-type(3n) {
  -ms-grid-column: 3;
  grid-column-start: 3;
}
.kan-wrap .has-4-columns {
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
}
.kan-wrap .has-4-columns .column:nth-of-type(4n + 1) {
  -ms-grid-column: 1;
  grid-column-start: 1;
}
.kan-wrap .has-4-columns .column:nth-of-type(4n + 2) {
  -ms-grid-column: 2;
  grid-column-start: 2;
}
.kan-wrap .has-4-columns .column:nth-of-type(4n + 3) {
  -ms-grid-column: 3;
  grid-column-start: 3;
}
.kan-wrap .has-4-columns .column:nth-of-type(4n) {
  -ms-grid-column: 4;
  grid-column-start: 4;
}
.kan-wrap .column :first-child {
  margin-top: 0;
}
.kan-wrap .aligncenter {
  text-align: center;
}
.kan-wrap .alignleft {
  float: left;
  margin-right: 40px;
}
.kan-wrap .alignright {
  float: right;
  margin-left: 40px;
}
.kan-wrap .is-vertically-aligned-top {
  -ms-grid-row-align: start;
  align-self: start;
}
.kan-wrap .is-vertically-aligned-center {
  -ms-grid-row-align: center;
  align-self: center;
}
.kan-wrap .is-vertically-aligned-bottom {
  -ms-grid-row-align: end;
  align-self: end;
}
.kan-wrap .point-releases {
  margin-top: 5px;
  border-bottom: 1px solid #ddd;
}
.kan-wrap .changelog {
  margin-bottom: 40px;
}
.kan-wrap .changelog.point-releases h3 {
  padding-top: 35px;
}
.kan-wrap .changelog.point-releases h3:first-child {
  padding-top: 7px;
}
.kan-wrap .changelog.feature-section .col {
  margin-top: 40px;
}
.kan-wrap .lead-description {
  font-size: 1.5em;
  text-align: center;
}
.kan-wrap .feature-section p {
  margin-top: 0.6em;
}
.kan-wrap .headline-feature {
  margin: 0 auto 40px;
  max-width: 680px;
}
.kan-wrap .headline-feature h2 {
  margin: 50px 0 0;
}
.kan-wrap .headline-feature img {
  max-width: 600px;
  width: 100%;
}
.kan-wrap .return-to-dashboard {
  margin: 30px 0 0 -5px;
  font-size: 14px;
  font-weight: 600;
}
.kan-wrap .return-to-dashboard a {
  text-decoration: none;
  padding: 0 5px;
}
.kan-wrap h2.wp-people-group {
  margin: 2.6em 0 1.33em;
  padding: 0;
  font-size: 16px;
  line-height: inherit;
  font-weight: 600;
  text-align: left;
}
.kan-wrap .wp-people-group {
  padding: 0 5px;
  margin: 0 -15px 0 -5px;
}
.kan-wrap .compact {
  margin-bottom: 0;
}
.kan-wrap .wp-person {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  padding-bottom: 15px;
  height: 70px;
  width: 280px;
}
.kan-wrap .compact .wp-person {
  height: auto;
  width: 180px;
  padding-bottom: 0;
  margin-bottom: 0;
}
.kan-wrap .wp-person .gravatar {
  float: left;
  margin: 0 10px 10px 0;
  padding: 1px;
  width: 60px;
  height: 60px;
}
.kan-wrap .compact .wp-person .gravatar {
  width: 30px;
  height: 30px;
}
.kan-wrap .wp-person .web {
  margin: 6px 0 2px;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  text-decoration: none;
}
.kan-wrap .wp-person .title {
  display: block;
}
.kan-wrap #wp-people-group-validators + p.wp-credits-list {
  margin-top: 0;
}
.kan-wrap p.wp-credits-list a {
  white-space: nowrap;
}
.freedoms-php .kan-wrap ol {
  margin: 40px 60px;
}
.freedoms-php .kan-wrap ol li {
  list-style-type: decimal;
  font-weight: 600;
}
.freedoms-php .kan-wrap ol p {
  font-weight: 400;
  margin: 0.6em 0;
}
.freedoms-php .column .freedoms-image {
  background-image: url(images/freedoms.png);
  background-size: 100%;
  padding-top: 100%;
}
.freedoms-php .column:nth-of-type(2) .freedoms-image {
  background-position: 0 34%;
}
.freedoms-php .column:nth-of-type(3) .freedoms-image {
  background-position: 0 66%;
}
.freedoms-php .column:nth-of-type(4) .freedoms-image {
  background-position: 0 100%;
}
@media screen and (max-width: 782px) {
  .kan-wrap .has-3-columns,
  .kan-wrap .has-4-columns {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .kan-wrap .has-3-columns .column:nth-of-type(3n + 1),
  .kan-wrap .has-4-columns .column:nth-of-type(4n + 1) {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }
  .kan-wrap .has-3-columns .column:nth-of-type(3n + 2),
  .kan-wrap .has-4-columns .column:nth-of-type(4n + 2) {
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }
  .kan-wrap .has-3-columns .column:nth-of-type(3n),
  .kan-wrap .has-4-columns .column:nth-of-type(4n + 3) {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 2;
    grid-row-start: 2;
  }
  .kan-wrap .has-4-columns .column:nth-of-type(4n) {
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row: 2;
    grid-row-start: 2;
  }
}
@media screen and (max-width: 600px) {
  .kan-wrap .has-2-columns,
  .kan-wrap .has-3-columns,
  .kan-wrap .has-4-columns {
    display: block;
  }
  .kan-wrap :not(.is-wider-right):not(.is-wider-left) .column {
    margin-right: 0;
    margin-left: 0;
  }
  .kan-wrap .has-2-columns.is-wider-left,
  .kan-wrap .has-2-columns.is-wider-right {
    display: -ms-grid;
    display: grid;
  }
}
@media only screen and (max-width: 500px) {
  .kan-wrap {
    margin-right: 20px;
    margin-left: 10px;
  }
  .kan-wrap .kan-text,
  .kan-wrap h1 {
    margin-right: 0;
  }
  .kan-wrap .kan-text {
    margin-bottom: 0.25em;
  }
  .kan-wrap .wp-badge {
    position: relative;
    margin-bottom: 1.5em;
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .kan-wrap .has-2-columns.is-wider-left,
  .kan-wrap .has-2-columns.is-wider-right {
    display: block;
  }
  .kan-wrap .column {
    margin-right: 0;
    margin-left: 0;
  }
  .kan-wrap .has-2-columns.is-wider-left img,
  .kan-wrap .has-2-columns.is-wider-right img {
    max-width: 160px;
  }
}

.kanews_page_kanews-welcome,
.kanews_page_kanews-import,
.kanews_page_kanews-options,
.kanews_page_kanews-update {
  background: #fff;
}

.kan-wrap {
  max-width: 100%;
  --accent-1: #d92e2e;
  --nav-background: #f8f8f8;
}
.kan-wrap .kan__header {
  color: #fff;
}
.kan-circle {
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
  border: 2px solid #1f1f1f;
  border-radius: 50%;
  display: inline-block;
}
.kan-update-alert {
  background: #404040;
  font-size: 22px;
  margin-top: -20px;
  padding: 15px;
}
.kan-update-alert .button {
  margin-left: 10px;
  border: 0;
  color: #444;
}

/* Yeni Panel - Bitti */

/* Acf */
.acf-field .acf-label label > span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-top: 2px;
}

/* Widgets */
.kanews-admin-divider {
  display: block;
  height: 1px;
  background: #eee;
  margin: 30px -15px 0;
}
.kanews-widgets-title {
  padding: 0 0 0 1em;
  position: relative;
  border-left: 3px solid #f44336;
}
.kanews-widgets-alert {
  padding: 4px 8px;
  position: relative;
  top: -3px;
  text-decoration: none;
  border: 1px solid #bcd8e4;
  border-radius: 2px;
  text-shadow: none;
  font-weight: 600;
  font-size: 13px;
  line-height: normal;
  color: #56879c;
  background: #f3f5f6;
  cursor: pointer;
}
.widget-content label {
  margin-right: 5px;
  font-weight: 500;
  display: inline-block;
}
.widget-content input,
.widget-content select,
.widget-content textarea {
  margin-top: 5px;
}

[id*="home-content"].widgets-sortables .kanews-grid-select,
[id*="home-sidebar"].widgets-sortables .kanews-grid-select,
[id*="home-content"].widgets-sortables
  .kanews-thumb-select
  option[value="right"],
[id*="home-sidebar"].widgets-sortables
  .kanews-thumb-select
  option[value="right"] {
  display: none;
}

[id*="home-sidebar"].widgets-sortables .kanews-grid-select-x,
[id*="home-sidebar"].widgets-sortables .kanews-col-select-x {
  display: none;
}

#widget-list [id*="kanews"] .widget-top,
#widget-list [id*="pt_mailchimp"] .widget-top {
  border-color: rgba(255, 0, 0, 0.5) !important;
}

/* Codestar */
.widget-content .csf-field  input, .widget-content .csf-field  select, .widget-content .csf-field  textarea{
  width: 100%
}
.csf-theme-light .csf-nav ul li.csf-tab-expanded>a {
  background: rgba(255,255,255,.1) !important;
}
.csf-theme-light .csf-nav ul li a[data-tab-id="diger-ayarlar"] {
  border-top: 1px solid rgba(255,255,255,.25) !important;
}

.item-demo-iframe {
  display: block;
  width: 100%;
  margin: 0;
  border: 1px solid #ddd;
  height: 175px;
}

#import_data.textarea {
  width: 100% !important;
}

.s-wrap h1,
.s-wrap .headline {
  margin: 0.2em 200px 0 0;
  padding: 0;
  color: #32373c;
  line-height: 1.2em;
  font-size: 2.8em;
  font-weight: 700;
}
.s-wrap,
.kanews-wrap {
  margin: 20px 0;
  position: relative;
}
.s-wrap .headline {
  font-size: 2.1em;
}
.s-wrap h1 + p {
  margin: 1em 1em 1em 0;
  color: #555d66;
  font-weight: 400;
  line-height: 1.6em;
  font-size: 16px;
}
.s-wrap p.text {
  margin: 1em 1em 4em 0;
}

.kan-widget-visible-desktop .widget-title:after {
  position: absolute;
  content: "Masaüstü";
  right: 40px;
  top: 10px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 25px;
  background: rgb(0, 156, 39);
}

.kan-widget-visible-mobile .widget-title:after {
  position: absolute;
  content: "Mobil";
  right: 40px;
  top: 10px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 25px;
  background: #000;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?2lntm9");
  src: url("..fonts/icomoon.eot?2lntm9#iefix") format("embedded-opentype"),
    url("../fonts/icomoon.ttf?2lntm9") format("truetype"),
    url("../fonts/icomoon.woff?2lntm9") format("woff"),
    url("../fonts/icomoon.svg?2lntm9#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-2x {
  font-size: 1.25rem;
}

.icon-3x {
  font-size: 1.7rem;
}

.icon-4x {
  font-size: 2rem;
}

.icon-90deg {
  transform: rotate(90deg);
  display: inline-block;
}
.icon-90degg {
  transform: rotate(-90deg);
  display: inline-block;
}
.icon-180deg {
  transform: rotate(180deg);
  display: inline-block;
}
.icon-tiktok:before {
  content: "\e90c";
}
.icon-add:before {
  content: "\e900";
}
.icon-gallery:before {
  content: "\e901";
}
.icon-tumblr:before {
  content: "\e92e";
}
.icon-close:before {
  content: "\e924";
}
.icon-forward:before {
  content: "\e904";
}
.icon-like:before {
  content: "\e931";
}
.icon-like-o:before {
  content: "\e932";
}
.icon-vpn_key:before {
  content: "\e911";
}
.icon-pin:before {
  content: "\e903";
}
.icon-play:before {
  content: "\e921";
}
.icon-standings:before {
  content: "\e92d";
}
.icon-local_pharmacy:before {
  content: "\e937";
}
.icon-traffic:before {
  content: "\e90d";
}
.icon-menu:before {
  content: "\e905";
}
.icon-notifications:before {
  content: "\e936";
}
.icon-local:before {
  content: "\e90a";
}
.icon-done:before {
  content: "\e907";
}
.icon-edit:before {
  content: "\e908";
}
.icon-article:before {
  content: "\e92c";
}
.icon-grid:before {
  content: "\e90f";
}
.icon-home:before {
  content: "\e90c";
}
.icon-subscriptions:before {
  content: "\e91c";
}
.icon-location:before {
  content: "\e910";
}
.icon-moon-fill:before {
  content: "\e91a";
}
.icon-menu2:before {
  content: "\e915";
}
.icon-call:before {
  content: "\e914";
}
.icon-rss:before {
  content: "\e935";
}
.icon-search:before {
  content: "\e917";
}
.icon-settings:before {
  content: "\e918";
}
.icon-share:before {
  content: "\e933";
}
.icon-exchange:before {
  content: "\e920";
}
.icon-type:before {
  content: "\e906";
}
.icon-unlock:before {
  content: "\e922";
}
.icon-user:before {
  content: "\e928";
}
.icon-bolt:before {
  content: "\e934";
}
.icon-envelope:before {
  content: "\e930";
}
.icon-live:before {
  content: "\e90b";
}
.icon-star:before {
  content: "\e925";
}
.icon-star-half:before {
  content: "\e926";
}
.icon-star-o:before {
  content: "\e92a";
}
.icon-bookmark:before {
  content: "\e912";
}
.icon-bookmark-o:before {
  content: "\e913";
}
.icon-logout:before {
  content: "\e923";
}
.icon-covid:before {
  content: "\e909";
}
.icon-caret:before {
  content: "\e91d";
}
.icon-arrow-long:before {
  content: "\e91e";
}
.icon-arrow:before {
  content: "\e91f";
}
.icon-video:before {
  content: "\f16a";
}
.icon-bitcoin:before {
  content: "\f15a";
}
.icon-money:before {
  content: "\f195";
}
.icon-newspaper:before {
  content: "\f1ea";
}
.icon-telegram:before {
  content: "\f2c6";
}
.icon-comment:before {
  content: "\e92b";
}
.icon-mic:before {
  content: "\e929";
}
.icon-view:before {
  content: "\e902";
}
.icon-mail-forward:before {
  content: "\e92f";
}
.icon-twitter:before {
  content: "\e90e";
}
.icon-gold .path1:before {
  content: "\e916";
  color: rgb(227, 227, 227);
}
.icon-gold .path2:before {
  content: "\e919";
  margin-left: -1em;
  color: rgb(214, 154, 0);
}
.icon-gold .path3:before {
  content: "\e91b";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}
.icon-weather:before {
  content: "\e927";
}
.icon-quotes-left:before {
  content: "\e977";
}
.icon-sun:before {
  content: "\e9d4";
}
.icon-facebook:before {
  content: "\ea90";
}
.icon-instagram:before {
  content: "\ea92";
}
.icon-whatsapp:before {
  content: "\ea93";
}
.icon-youtube:before {
  content: "\ea9d";
}
.icon-linkedin:before {
  content: "\eaca";
}
.icon-pinterest:before {
  content: "\ead1";
}

.ocdi-install-plugins-content-content .plugin-item:nth-child(1), .ocdi-install-plugins-content-content .plugin-item:nth-child(2) {
display: none
}

[data-tab-id="kanews-ai"]:after {
  content: 'Yeni';
  position: absolute;
  right: 8px;
  top: 12px;
  background: green;
  padding: 2px 5px;
  border-radius: 5px;
  color: #fff;
  font-size: 11px;
}
[data-tab-id="kanews-sayfalari2"]:after {
  /* content: '1'; */
  position: absolute;
  right: 8px;
  top: 12px;
  background: blue;
  padding: 2px 5px;
  border-radius: 5px;
  color: #fff;
  font-size: 11px;
}


.csf-field.yeni .csf-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.csf-field.yeni .csf-title::after {
  content: 'Yeni';
  background: green;
  margin-left: 5px;
  padding: 2px 5px;
  border-radius: 5px;
  color: #fff;
  font-size: 11px;
  height: auto;
  display: inline-block !important;
}

/**
 * Custom Sidebar
 */
#kan-add-widget input {
  max-width: 95%;
  padding: 8px;
  margin-bottom: 14px;
  width: 25em;
  margin-top: 3px;
  text-align: center;
}
#kan-add-widget p.submit {
padding: 0 ;
text-align: center;
margin: 0 
}
#kan-add-widget {
  text-align: center;
}
.sidebar-kan-custom {
  position: relative;
}
.kan-widget-delete {
  display: block;
    position: absolute;
    bottom: 15px;
    right: 15px;
    border-top: 1px solid #eee;
}

div#widgets-right .sidebar-kan-custom.closed .kan-widget-delete{
  display: none;
}



#kanews_review_notice h3 {
  color: #fff;

}
#kanews_review_notice {
  border-width: 0 0 0 4px;
  border-left-color: #6668BD;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  padding: 5px 10px 5px 65px;
}

#kanews_review_notice.is-dismissible {
  background: #253142;
  color: #e4e5e7;
  border-width: 3px;
  border-style: solid;
  border-color: #161e28;
  padding: 0.25rem 1rem 1rem;
  border-radius: 5px;
}
#kanews_review_notice.is-dismissible h3 {
  color: #f7d070;
}
#kanews_review_notice.is-dismissible p {
  font-size: 13px;
  color: #f7d070;
  opacity: 0.7;
  margin-bottom: 0;
}
#kanews_review_notice.is-dismissible ul {
  line-height: 1;
  margin-bottom: 0;
  text-align: left;
  opacity: 0.8;
  font-size: 15px;
  max-width: 530px;
}
#kanews_review_notice.is-dismissible li {
  display: inline-block;
  width: 49%;
  margin-bottom: 0.5rem;
}
#kanews_review_notice ul li:before {
  font-family: dashicons;
  font-size: 20px;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  content: '\f147';
  text-align: center;
  vertical-align: middle;
  color: #161e28;
  border-radius: 10px;
  background: #9ce2b6;
}
#kanews_review_notice small {
  opacity: 0.5
}
#kanews_review_notice .button {
  border-color: #f7d070;
  background: #f7d070;
  color: #5a4000;
  font-size: 15px;
  margin-right: 12px;
}
div#kanews_review_notice .kanews-maybe-later-action,
div#kanews_review_notice .kanews-already-upgraded-action {
  color: #f7d070;
  opacity: 0.7;
  margin: 0 12px;
  font-size: 13px;
}

div#kanews_review_notice .kanews-maybe-later-action:hover,
div#kanews_review_notice .kanews-already-upgraded-action:hover {
opacity: 1
}

.toplevel_page_kanews #kanews_review_notice,
body[class*="kanews_page_kanews-options-"] div#kanews_review_notice {
  display: none;
}

.csf-taxonomy .csf-section-title {
  border-left: 0;
  border-right: 0;
  border-top: 0
}
.csf-taxonomy-edit-fields>.csf-field, .csf-taxonomy-add-fields>.csf-field {
  padding: 15px;
}

#kanews-ai-launch svg {
  margin-right: 5px;
}

.kanews-ai-block select {
  margin-top: 8px;
}
.kanews-ai-block {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  padding-bottom: 5px;
  /* border-bottom: 1px solid #ccc; */
}
.kanews-ai-block-flex {
  display: flex;
  flex-direction: column;
}
.kanews-ai-block-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.kanews-ai-block-row  .kanews-ai-block-label {
  margin-bottom: 0;
}
.kanews-ai-block-label {
  font-size: 13px;

}
.kanews-ai-block-value {
  font-size: 1em;
  font-weight: 700;
  color:  var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));
}

.edit-post-meta-boxes-area #poststuff .stuffbox>h3, .edit-post-meta-boxes-area #poststuff h2.hndle, .edit-post-meta-boxes-area #poststuff h3.hndle {
  padding: 0 16px
}

.edit-post-meta-boxes-area .postbox>.inside {
  padding: 0 16px 16px
}

 #kanews_ai_meta_box .postbox-header .hndle {
  font-size: 12px;
 }

 #kanews-ai-selector {
  width: 100%;
  max-width: 100%;
 }
 #kanews_ai_meta_box .postbox-header {
  position: relative;
  background: linear-gradient(90deg,#42ca88 10.21%,#32dde8 23.26%,#f9d30d 51.47%,#ed8b30 79.67%,#834bde 91.04%);
 }
 #kanews_ai_meta_box .postbox-header::before {
  content: '';
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 2px;
  top: 2px;
  background:   #fff;
  z-index: 1;

 }
 #kanews_ai_meta_box .postbox-header>* {
  position: relative;
  z-index: 2;
 }

 .kanews-ai-task-selector {
  position: relative;
  margin-bottom: 10px;
 }
 .kanews-ai-task-selector svg {
  position: absolute;
  right: 10px;
  top: 8px;
  color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  border: 1px solid var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  border-radius: 100%;
 }
 

 /* CSF  */

:root {
  --kan-primary: #4a6ba7;
  --kan-ph: #eef0f5;
}

.icon-180deg {
  display: inline-block;
  transform: rotate(180deg);
}

.kan-theme-ver {
  background: var(--kan-primary);
  border-radius: 4.5px;
  color: #fff;
  font-size: 10px;
  line-height: 13px;
  font-weight: 600;
  margin-top: -4px;
  margin-left: 5px;
  padding: 4px 6px 4px 7px;
  letter-spacing: .4px;
  vertical-align: middle;
  text-transform: uppercase;
}

/* CSF */
.no-border .csf-title::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 25px;
  background: #ccc;
  position: absolute;
  left: 0;
  top: 0;
}
.no-border .csf-title::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #ccc;
  position: absolute;
  left: 0;
  top: 25px
}
.no-border .csf-title {
  padding-left: 2em !important;
}
.no-border {
  border: 0 !important;
  padding-top: 0 !important;
}
.csf-options {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 9px 65px 1px hsla(0,0%,54.9%,.15);
  position: relative;
  /* max-width: 1200px; */
  transition: all .7s ease;
  border: 1px solid #cfd4df;
  overflow: hidden;
}

.csf-options * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
.csf-header-left img {
  height: auto;
  vertical-align: middle;
}

.csf-theme-dark .csf-nav-background, .csf-header-left {
  background: #121623;
}

.csf-theme-dark .csf-header-inner {
  background: #fff;
  padding: 0;
  display: flex;
}

.csf-theme-dark .csf-nav ul li a {
  background: transparent !important;
  border: 0 !important;
  font-size: 14px;
  color: #6e778a;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10 px 20px;
  font-weight: 500;
  text-decoration: none;
  transition: all .25s ease-in-out;
}

.csf-nav-background, .csf-nav-normal, .csf-header-left {
  width: 260px;
}
.csf-metabox .csf-nav-normal {
  width: 220px;
}
@media only screen and (min-width: 782px) {
.csf-nav-normal+.csf-content {
  margin-left: 260px;
}
}

.csf-theme-dark .csf-nav-normal ul li .csf-active:after {
  content: none;
}

.csf-tab-icon {
  display: inline-block;
  margin-right: 16px !important;
  font-size: 16px !important;
}

.csf-nav-normal {
  padding: 20px;
}

.csf-header-left {
  height: 60px;
  border-bottom: 1px solid #242837;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 40px;
}

.csf-header-right {
  padding: 9px 50px;
  flex: 1;
  align-items: center;
  display: flex;
  border-bottom: 1px solid var(--kan-ph);
  justify-content: space-between;
}

.csf-expand-all {
  display: none;
}

.csf-theme-dark .csf-search {
  position: relative;
}
.csf-theme-dark .csf-search input {
  background: var(--kan-ph);
  color: #1c2c4e;
  font-weight: 400;
  border-radius: 5px;
  padding: 5px 5px 5px 35px;
  font-size: 14px;
}

.csf-theme-dark .csf-search::before {
  content: "\f002";
  position: absolute;
  left: 11px;
  top: 11px;
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  font-weight: 900;
}

.csf-notice {
  background: var(--kan-ph);
  border-left: 4px solid #1eaa69;
  box-shadow: none;
  font-size: 13px;
}

.csf-field-heading+.csf-field {
  border: 0;
  /* padding-top: 0; */
}

.csf-field-heading, .csf-field-notice, .csf-field-media .csf--placeholder input {
  background: transparent;
}

.csf-field .csf-subtitle-text {
  color: #5f6875;
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: -.2px;
}
.csf-field + .csf-field {
  border-color: var(--kan-ph)
}
.csf-field .csf-title h4 {
  color: #1c2c4e;
  font-weight: 500;
  font-size: 14px;
}

.csf-section > * {
  padding-left: 0;
  padding-right: 0;
}
.csf-section {
  padding: 50px;
}

.csf-field-heading, .csf-field-subheading {
  font-size: 21px;
  background: transparent;
  margin-top: 2em;
  border: 0 !important;
  font-weight: 500;
  line-height: 28px;
}

.csf-buttons .button:last-child {
  margin-right: 0 !important;
}
.csf-buttons .button {
  margin: 0 5px;
  line-height: 34px;
  background: transparent;
  font-size: 14px;
  padding: 0 15px;
}

.csf-options .button, .csf-options .button-secondary{
  color: var(--kan-primary);
  border-color: var(--kan-primary);
}

.csf-buttons .csf-save, .csf-options .button-primary {
  background: var(--kan-primary);
  color: #fff;
  border-color: var(--kan-primary);
}

@media only screen and (min-width: 782px) {
.csf-field .csf-title {
  width: 50%;
}

.csf-field .csf-fieldset {
  width: calc(50% - 20px);
}
}

.csf-field.csf-field-code_editor .csf-fieldset, .csf-field.csf-field-image_select .csf-fieldset {
  width: 100%;
  margin-top: 20px;
}
.csf-field-switcher .csf--ball {
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: var(--kan-primary);
  border-radius: 100%;
}
.csf-field-switcher .csf--switcher {
  width: 54px;
  height: 26px;
  border-radius: 12px;
  background-color: transparent;
  border: 1px solid #b0b8ca;
}

.csf-field-switcher .csf--active {
  background: var(--kan-primary);
  border-color: transparent
}

.csf-field-switcher .csf--active .csf--ball {
  background: #fff;
}

.csf-field-switcher .csf--active .csf--on {
  color: transparent !important;
}

.csf-field-switcher .csf--active .csf--ball {
  margin-left: -23px;
}

.csf-field-text input, .csf-field-typography .csf--input {
  min-height: 41px;
  display: block;
  padding: 0 20px;
  border-radius: 4px;
  border: 0;
  background-color: var(--kan-ph);
  font-size: 14px;
}

.csf-field-select select, .csf-field .chosen-container-single .chosen-single, .csf-field .chosen-container .chosen-drop, .csf-field .chosen-container-multi .chosen-choices{
  min-height: 41px;
  line-height: 41px;
  display: block;
  padding: 0 20px;
  cursor: pointer;
  border-radius: 4px;
  border: 0;
  box-shadow: none;
  background-color: var(--kan-ph);
  font-size: 14px;
  min-width: 130px;
  padding-right: 40px;
  background-position: 90%;
}

.csf-field .chosen-container .chosen-drop {
  padding: 10px;
  
}

.csf-field .chosen-container-single .chosen-single, .csf-field .chosen-container-multi .chosen-choices {
  background: var(--kan-ph) url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 5px top 55% !important;
}

.csf-field .chosen-container-single .chosen-search:before {
  top: 4px
}

.chosen-container-multi .chosen-choices li.search-choice {
  margin: 8px 5px 3px 0;
  padding: 5px 20px 5px 6px;
}

.chosen-container-single .chosen-search input[type=text] {
  background: #fff !important;
  border: 1px solid #000 !important;
  padding: 10px;
  border-radius: 5px;
}

.csf-image-preview {
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: var(--kan-ph);
  border: 0;
  outline: 1px dashed rgba(0,0,0,.2);
  outline-offset: -7px;
  padding: 11px;
}

.csf-field-media .csf--placeholder input {
  background: var(--kan-ph);
  border: 0;
}

.image_select_preloader .csf-fieldset {
  width: calc(50% - 20px) !important;
  margin: 0 !important
}
.image_select_preloader img{
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.csf-field-image_select .csf--image:not(.csf--active):not(:hover) {
  opacity: 0.25;
}

.csf-options .wp-picker-container .wp-color-result.button.wp-picker-open span {
opacity: 0;
}
.csf-options .wp-picker-container .wp-color-result.button span {
  position: absolute;
  left: 40px;
  top: -2px;
  background: transparent;
  border: 0;
  font-size: 14px;
}
.csf-options .wp-picker-container .wp-color-result.button {
  border: 0;
  position: relative;
  box-shadow: 0px 0px 7px 1px rgba(0,0,0,.1);
  background-color: var(--kan-ph);
  border-radius: 100%;
}

.csf-field-color_group .csf--title {
  color: #1c2c4e;
  margin: 0;
}

.csf-field .wp-color-result-text {
  display: none;
}

.csf--input {
  padding-right: 0 !important;
}
.csf--input input[type=number], .csf--input select {
  border: 0;
  min-height: 41px;
  background: var(--kan-ph);
}
.csf--input select  {
  margin-left: 5px !important;
  font-size: 1.2em !important;
  color: rgba(0,0,0,.3);
  padding: 0 10px !important;
  /* text-transform: uppercase; */
}
.csf-field-border .csf--label, .csf-field-dimensions .csf--label, .csf-field-spacing .csf--label {
  background: var(--kan-ph) !important;
  border: 0 !important;
  box-shadow:  none !important;
}

.wp-picker-open+.wp-picker-input-wrap {
  position: relative;
}

.hidden-ph .csf-input-number::placeholder {
  opacity: 0;
}

.csf-field-typography .csf--block-extra-styles {
  margin-top: 0 ;
}

.csf-field-color_group .csf--left::after {
  content: '';
  clear: both;
  display: block;
}
.csf-field-color_group .csf--left {
  margin-right: 10px;
  margin-bottom: 25px;
  position: relative;
  width: auto;
  background: var(--kan-ph);
  padding: 15px;
  border-radius: 5px;
  flex-direction: row-reverse;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  float: none;
}

#adminmenu li.toplevel_page_kanews-options img {
  width: 25px !important;
  margin-top: -4px !important;
  margin-left: 5px !important;
  margin-right: 10px !important;
}


/* Mega Menü */
.c4d-mega-menu-button {
  background: #cfcfcf;
  border-radius: 30px;
  height: 20px;
  width: 45px;
  display: inline-block;
  top: 0;
  left: 100%;
  vertical-align: middle;
  margin: 0 10px;
  cursor: pointer;
  }
  .c4d-mega-menu-button:after {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: red;
  content: "";
  display: block;
  transition: all 0.3s;
  margin: 4px 5px;
  }
  .c4d-mega-menu-button.active:after {
  background: green;
  margin-left: 27px;
  }
  .c4d-mega-menu-button-col {
  background: #cfcfcf;
  border-radius: 30px;
  height: 20px;
  width: 91px;
  display: inline-block;
  top: 0;
  left: 100%;
  vertical-align: middle;
  margin: 0 5px;
  cursor: pointer;
  text-align: center;
  }
  .c4d-mega-menu-button-col:after {
  content: "";
  display: block;
  clear: both;
  }
  .c4d-mega-menu-button-col .next,
  .c4d-mega-menu-button-col .prev {
  width: 12px;
  height: 12px;
  background: #000;
  color: #fff;
  text-align: center;
  line-height: 11px;
  display: inline-block;
  border-radius: 50%;
  margin: 4px 6px;
  }
  .c4d-mega-menu-button-col .next:hover,
  .c4d-mega-menu-button-col .prev:hover {
  background: red;
  }
  .c4d-mega-menu-button-col .prev {
  float: left;
  margin-right: 10px;
  }
  .c4d-mega-menu-button-col .next {
  float: right;
  margin-left: 10px;
  }
  .c4d-mega-menu-button-setting {
  background: #cfcfcf;
  border-radius: 30px;
  height: 20px;
  width: 20px;
  display: inline-block;
  top: 0;
  left: 100%;
  vertical-align: middle;
  margin: 0 10px;
  cursor: pointer;
  text-align: center;
  color: #fff;
  }
  .c4d-mega-menu-button-setting i:before {
  font-family: dashicons;
  content: "\f111";
  font-size: 10px;
  margin-right: 2px;
  display: inline-block;
  vertical-align: bottom;
  }
  .c4d-mega-menu-setting-page {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  }
  .c4d-mega-menu-setting-page.active {
  display: block;
  }
  .c4d-mega-menu-setting-page .main-content {
  max-width: 1024px;
  min-height: 400px;
  width: 100%;
  margin: 5% auto auto;
  background: #fff;
  }

  .csf-taxonomy {
    background: #fff;
  }

  .csf-field-sortable .csf-field-text input {
    width: 100%;
    max-width: 100%;
  }
  .csf-field-sortable .csf-sortable .csf-sortable-item {
    display: table;
    width: 100%;
    margin-bottom: 5px;
    border: 1px solid #eee;
  }
  .csf-field-sortable .csf-sortable .csf-sortable-item h4 {
    font-size: 1em;
  }
  .csf-field-sortable .csf-sortable-content {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
    background-color: #fff;
  }
  .csf-field-sortable .csf-sortable-content > .csf-field {
    padding: 15px;
  }
  .csf-field-sortable .csf-sortable-helper {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 14px;
    line-height: 1em;
    border-left: 1px solid #eee;
    background-color: #f7f7f7;
  }
  .csf-field-sortable .csf-sortable-helper i {
    display: inline-block;
    cursor: pointer;
    width: 50px;
    color: #555;
  }
  .csf-field-sortable .csf-sortable-helper i:hover {
    opacity: 0.5;
  }
  .csf-field-sortable .widget-placeholder {
    height: 50px;
    margin-bottom: 3px;
    border: 1px dashed #f1c40f;
    background-color: #fffae4;
  }
  .csf-field-sortable .ui-sortable-helper {
    height: 50px !important;
    overflow: hidden !important;
    border-color: #ccc !important;
    background-color: #eee !important;
    opacity: 0.5;
  }
  .csf-field-sortable .ui-sortable-helper .csf-sortable-helper,
  .csf-field-sortable .ui-sortable-helper .csf-sortable-content {
    display: none;
  }

.kanews-ai-input-group {
    /* margin-bottom: 15px; */
}

.kanews-ai-input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.kanews-ai-input-group input,
.kanews-ai-input-group select {
    margin-bottom: 8px;
    width: auto;
}

.kanews-ai-checkbox-group {
    margin-top: 5px;
}

.kanews-ai-checkbox-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: normal;
}

.kanews-ai-checkbox-group input[type="checkbox"] {
    margin-right: 8px;
    margin-bottom: 0;
}

/* KAI Popup Styles */
.kanews-ai-popup {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.kanews-ai-popup-content {
    position: relative;
    background-color: #fefefe;
    margin: 2% auto;
    padding: 15px;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.kanews-ai-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.kanews-ai-popup-header h2 {
    margin: 0;
    display: flex;
    align-items: center;
}

.kanews-ai-badge {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 3px;
    margin-left: 5px;
    color: #10AC84;
    background: rgba(16,172,132,0.1);
}

.kanews-ai-popup-close {
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    color: #666;
}

.kanews-ai-input-group {
    margin-bottom: 15px;
}

.kanews-ai-input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.kanews-ai-input-group input,
.kanews-ai-input-group select {
    width: 100%;
    padding: 3px 8px;
    border-radius: 4px;
}

.kanews-ai-checkbox-group {
    margin-top: 15px;
}

.kanews-ai-checkbox-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: normal;
}

.kanews-ai-checkbox-group input[type="checkbox"] {
    margin-right: 8px;
}

.kanews-ai-info-message {
    padding: 10px 15px;
    background: #f0f0f1;
    border-left: 4px solid #72aee6;
    margin-bottom: 20px;
}

.kanews-ai-results .notice {
  margin: 0;
  padding: 10px;
}

.loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

.success {
    padding: 10px 15px;
    background: #edfaef;
    border-left: 4px solid #10AC84;
    margin-bottom: 15px;
}

.error {
    padding: 10px 15px;
    background: #fef1f1;
    border-left: 4px solid #d63638;
    margin-bottom: 15px;
}

.kanews-ai-popup-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kanews-ai-api-status {
    display: flex;
    gap: 15px;
}

.api-status-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.api-status-item .status {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.api-status-item .status.active {
    background: #edfaef;
    color: #10AC84;
}

.api-status-item .status.inactive {
    background: #fef1f1;
    color: #d63638;
}

#kanews_primary_category h2 {
  font-size: 13px;
}

.kanews-ai-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.kanews-ai-image-item {
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
}

.kanews-ai-image-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.kanews-ai-image-item.selected {
    border-color: #2271b1;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.kanews-ai-image-item:hover .image-overlay {
    opacity: 1;
}


/* Önizleme için responsive kontrol araçları */
.kanews-manset-preview-controls {
    margin-bottom: 10px;
    text-align: right;
}

.preview-device-switch {
    display: inline-block;
    padding: 5px 10px;
    margin-left: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    background: #f5f5f5;
}

.preview-device-switch.active {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.kanews-manset-preview .preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    transition: background 0.3s;
}

.kanews-manset-preview .preview-tag {
    position: absolute;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.kanews-manset-preview .preview-content {
    position: absolute;
    padding: 30px;
    color: #fff;
    transition: all 0.3s;
}

.kanews-manset-preview .preview-title {
    margin: 0 0 15px;
    font-size: 24px;
    line-height: 1.3;
}

.kanews-manset-preview .preview-excerpt {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
}


.kanews-slide {
  position: relative;
  width: 100%;
  height: 450px;
  font-family: var(--theme_font);
}
.kanews-slide-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  z-index: 4;
}

.kanews-slide-thumb {
  object-fit: cover;
  width: 100%;
  position: relative;
  z-index: 1;
  transition: .3s;
  height: 100% !important;
}
.kanews-slide-overlay {
  position: absolute;
  left: 0;
  transition: opacity .3s;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 3;
  --gradient-start-color: rgba(0, 0, 0, 1);
  --gradient-end-color: rgba(0, 0, 0, 0.05);
  background: linear-gradient(var(--gradient-end-color), var(--gradient-start-color));
}

.kanews-slide{
  height: 450px !important;
}

.kanews-slide-thumb:before {
  content: "";
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index:2;
  width: 100%;
  height: 100%;
}

.kanews-slide-headline {
  margin: 7.5px 0 0 ;
  font-size: 38px ;
  font-weight: 700 ;
  line-height: 1.4 ;
  padding: 0 ;
  color: #fff ;
  max-width: 650px ;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, .75);
}

.kanews-category {
  padding: 3px 6px;
  border-radius: 3px;
  background-color: var(--kan-theme-color);
  letter-spacing: -.025em;
  display: inline-block;
  color: #fff;
  font-size: 14px;
}

.kanews-slide-spot {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 0;
  max-height: 60px;
  margin-top: 10px;
  color: rgba(255, 255, 255, .75);
}

.kanews-manset-tag {
  position: absolute;
  left: 30px;
  top: 30px;
  font-size: 16px;
  background: var(--kan-theme-color);
  color: #fff;
  border-radius: 2px;
  padding: 10px 15px;
  letter-spacing: 1px;
  z-index: 6;
  text-transform: uppercase
}

@media (max-width: 992px) {
  .kanews-manset-tag {
      padding:5px 8px
  }
}

.kanews-manset-tag-position-top-right {
  left: auto;
  right: 30px
}

.kanews-manset-tag-position-bottom-left {
  top: auto;
  bottom: 30px;
  left: 30px
}

.kanews-manset-tag-position-bottom-right {
  top: auto;
  left: auto;
  bottom: 30px;
  right: 30px
}

.kanews-manset-tag {
  position: absolute;
  left: 30px;
  top: 30px;
  background: var(--kan-theme-color);
  color: #fff;
  border-radius: 2px;
  padding: 10px 15px;
  letter-spacing: 1px;
  z-index: 6;
  text-transform: uppercase
}

@media (max-width: 992px) {
  .kanews-manset-tag {
      padding:5px 8px
  }
}

.kanews-manset-tag-position-top-right {
  left: auto;
  right: 30px
}

.kanews-manset-tag-position-bottom-left {
  top: auto;
  bottom: 30px;
  left: 30px
}

.kanews-manset-tag-position-bottom-right {
  top: auto;
  left: auto;
  bottom: 30px;
  right: 30px
}

.kanews-manset-tag-style-1 {
  -webkit-animation-name: animate5;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out
}

.kanews-manset-tag-style-3 {
  color: #000;
  box-shadow: 1px 1px 0 0,2px 2px 0 0,3px 3px 0 0,4px 4px 0 0,5px 5px 0 0
}

.kanews-manset-tag-style-2 {
  background: 0 0;
  overflow: hidden
}

.kanews-manset-tag-style-2 span {
  position: absolute;
  display: block
}

.kanews-manset-tag-style-2 span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,transparent,var(--kan-theme-color));
  animation: 1s linear infinite animate1
}

.kanews-manset-tag-style-2 span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg,transparent,var(--kan-theme-color));
  animation: 1s linear .25s infinite animate2
}

.kanews-manset-tag-style-2 span:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg,transparent,var(--kan-theme-color));
  animation: 1s linear .5s infinite animate3
}

.kanews-manset-tag-style-2 span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg,transparent,var(--kan-theme-color));
  animation: 1s linear .75s infinite animate4
}

.kanews-slide-spot {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 0;
  max-height: 60px;
  margin-top: 10px;
  color: rgba(255, 255, 255, .75);
}

@keyframes stroke-draw {
  from {
      stroke: var(--kan-theme-color);
      stroke-dasharray: 1
  }

  to {
      transform: rotate(180deg);
      stroke-dasharray: 10
  }
}

@keyframes animate4 {
  0% {
      bottom: -100%
  }

  100%,50% {
      bottom: 100%
  }
}

@keyframes animate3 {
  0% {
      right: -100%
  }

  100%,50% {
      right: 100%
  }
}

@keyframes animate2 {
  0% {
      top: -100%
  }

  100%,50% {
      top: 100%
  }
}

@keyframes animate1 {
  0% {
      left: -100%
  }

  100%,50% {
      left: 100%
  }
}

@keyframes animate5 {
  0% {
      background-color: var(--kan-theme-color);
      opacity: 1
  }

  100% {
      background-color: #000
  }
}


@media (min-width: 992px) {
  .kanews-mansetd-left .kanews-slide-overlay {
      background:linear-gradient(90deg,var(--gradient-start-color),rgba(0,0,0,0) 100%)
  }

  .kanews-mansetd-left .kanews-slide-content {
      top: 0;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      flex-direction: column;
      width: 70%
  }

  .kanews-mansetd-right .kanews-slide-overlay {
      background: linear-gradient(-90deg,var(--gradient-start-color),rgba(0,0,0,0) 100%)
  }

  .kanews-mansetd-right .kanews-slide-content {
      top: 0;
      left: auto;
      right: 0;
      display: flex;
      align-items: flex-end;
      text-align: right;
      justify-content: center;
      flex-direction: column;
      width: 70%
  }
}

.kanews-manset-5 .kanews-slide-overlay,.kanews-manset-6 .kanews-slide-overlay,.kanews-manset-7 .kanews-slide-overlay,.kanews-manset-8 .kanews-slide-overlay {
  background: linear-gradient(var(--gradient-end-color),var(--gradient-start-color));
  background: linear-gradient(var(--gradient-end-color),var(--gradient-start-color))!important
}

.csf-wrapper .inline-edit {
  position: relative;
  min-height: 20px;
  padding: 2px 4px;
  border: 1px dashed #007cba;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.1);
  cursor: text;
  outline: none;
  transition: all 0.2s ease;
}

.csf-wrapper .inline-edit:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #0073aa;
}

.csf-wrapper .inline-edit:focus {
  background-color: rgba(255, 255, 255, 0.3);
  border-style: solid;
  box-shadow: 0 0 0 1px #007cba;
}

/* Düzenleme ipucu */
.csf-wrapper .inline-edit:empty:before {
  content: 'Düzenlemek için tıklayın...';
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* Seçim rengi */
.csf-wrapper .inline-edit::selection {
  background: rgba(0, 124, 186, 0.3);
}

body:not(.wp-editor) .#kanews_ai_meta_box .components-button {
  align-items: center;
  -webkit-appearance: none;
  background: none;
  border: 0;
  border-radius: 2px;
  box-sizing: border-box;
  color: var(--wp-components-color-foreground, #1e1e1e);
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  height: 36px;
  margin: 0;
  padding: 6px 12px;
  text-decoration: none;
  transition: box-shadow .1slinear;
  min-height: 0px;
  height: 40px;
  background: #3858e9;
  color: #fff;
  outline: 1px solid #0000;
  white-space: nowrap;
  flex-grow: 1;
  justify-content: center;
}