:root {
  --primary-color: #f3f3f3ab;
  --secondary-color: #2ecc71;
  --body-color: #ecf0f1;
  --body-color-opacity: #ecf0f163;
  --text-color: #2c3e50;
  --border-color: rgba(0, 0, 0, 0.233);
  --card-color: #fff;
  --list-color: #fff;
  --list-hover-color: #202020;
  --main-color: #00000010;
}

body.theme-dark {
  --primary-color: #151f2c;
  --secondary-color: #1abc9c;
  --body-color: #151f2c;
  --body-color-opacity: #151f2c3d;
  --text-color: #e2e2e2;
  --border-color: rgba(255, 255, 255, 0.15);
  --card-color: #151f2c6c;
  --list-color: #07090c6c;
  --list-hover-color: #cb4236;
  --main-color: #ffffff0a;
}

.flyout {
  overflow: hidden;
}

body.processing {
  cursor: wait;
}

body.processing span[href],
body.processing form[data-target] button[type="submit"] {
  pointer-events: none;
}

.records {
  display: flex;
  overflow: hidden;
}

.records>*:nth-child(1) {
  flex: 1;
}

.records>*:nth-child(2) {
  flex: 0 35%;
}

.ui.inverted.form textarea {
  background-color: transparent !important;
  color: #fff !important;
  border: 1px solid var(--border-color);
}

#pane_app {
  border-radius: 7px;
  background-color: var(--main-color);
}

.p-1 {
  padding: 0.2rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 0.7rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.p-5 {
  padding: 1.2rem !important;
}

.ui.inverted.input>input {
  background-color: var(--list-color);
  color: var(--text-color);
}

.ui.inverted.button {
  box-shadow: none !important;
  border: 1px solid var(--border-color);
}

.ui.card>.button:last-child {
  box-shadow: none !important;
  border: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, .15) !important;
}

.m-0 {
  margin: 0 !important;
}

.property_options {
  max-height: 20rem;
  overflow: auto;
}

.mb-1 {
  margin-bottom: 0.7rem !important;
}

.mb-05 {
  margin-bottom: 0.4rem !important;
}

.ps-1 {
  padding-left: 0.7rem !important;
}

.ps-2 {
  padding-left: 1.2rem !important;
}

.ps-2 {
  padding-left: 1.7rem !important;
}

.pe-1 {
  padding-right: 0.7rem !important;
}

.mt-1 {
  margin-top: 0.7rem !important;
}

.mt-05 {
  margin-top: 0.4rem !important;
}

.mt-2 {
  margin-top: 1.2rem !important;
}

.mb-2 {
  margin-bottom: 1.2rem !important;
}

.ms-1 {
  margin-left: 0.9rem !important;
}

.ms-2 {
  margin-left: 1rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.rounded-1 {
  border-radius: 0.5rem;
}

.rounded-2 {
  border-radius: 0.7rem;
}

.rounded-3 {
  border-radius: 0.9rem;
}

.rounded-4 {
  border-radius: 1.2rem;
}

.d-block {
  display: block;
}

*,
*::after,
*::before {
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100dvh;
  padding: 0;
  margin: 0;
  font-family: "Exo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  overflow: hidden;
  color: var(--text-color);
  background-color: var(--body-color) !important;
  background-image: url("../img/bg.png") !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: always;
}

.ui.mini.modal {
  border: 1px solid var(--border-color) !important;
}

.border {
  border: 1px solid var(--border-color) !important;
}

.border-end {
  border-right: 1px solid var(--border-color) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--border-color) !important;
}

.border-start {
  border-left: 1px solid var(--border-color) !important;
}

.border-top {
  border-top: 1px solid var(--border-color) !important;
}

body {
  display: flex;
  flex-direction: row;
}

img {
  max-width: 100%;
}

.logo {
  text-align: center;
  line-height: 0;
}

.text-center {
  text-align: center;
}

#pane_list_posts {
  overflow: auto;
  height: 100%;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.logo a span {
  position: absolute;
  top: -10px;
  right: 0;
}

.logo a {
  position: relative;
  width: auto;
  width: 215px;
  display: block;
  font-size: 0;
}

.logo img {
  max-height: 30px;
}

.pane-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
  margin: 1rem;
}

.rotate-15 {
  display: inline-block;
  transform: rotate(15deg);
  transition: transform 0.3s ease;
}

.rotate-45 {
  display: inline-block;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}


.rotate-90 {
  display: inline-block;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.rotate-140-flip-x {
  display: inline-block;
  transform: rotate(140deg) scaleX(1);
  transition: transform 0.3s ease;
  position: relative;
  left: -5px;
}

.rotate-180 {
  display: inline-block;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.pane-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.pane-nav>* {
  width: 100%;
}

.pane-plugin {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-left: 1rem;
  width: 100%;
  max-width: 320px;
  min-width: 250px;
}

.pane-header {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}


.pane-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  overflow: auto;
}

.width {
  width: 100%;
}

.min-width-250px {
  min-width: 250px;
}

/* RESIZABLE GRID */
.pusher {
  display: flex;
  width: 100%;
}

.panes {
  touch-action: none;
  display: grid;
  overflow: hidden;
  flex: 1;
  position: relative;
}

.pane {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

.pane .scroll {
  overflow: auto;
  overflow-x: hidden;
  height: 100%;
  width: 100%;
  padding-bottom: 0.5rem;
}

.pane .scroll.has-scroll {
  padding-right: 0.7rem;
}

.pane .pane-box {
  flex: 1;
  overflow: auto;
  padding: 0.5rem;
}

.pane-bar {
  padding: 0.5rem;
  display: flex;
  gap:0.4rem;
  justify-content: space-between;
  align-items: center;
}

.pane .gutter {
  --gutterSize: 5px;
  position: absolute;
  z-index: 1;
  background: hsla(0, 0%, 55%, 0);
}

.pane .gutter:hover {
  background: hsl(0, 0%, 67%);
}

.pane:empty {
  display: none !important;
}

.panes-h>.pane>.gutter {
  cursor: col-resize;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--gutterSize);
}

.panes-v>.pane>.gutter {
  cursor: row-resize;
  left: 0;
  right: 0;
  top: 0;
  border-top: 1px solid hsl(0deg 0% 0% / 21%);
  height: var(--gutterSize);
}

.navbar-vertical.navbar-expand-lg {
  width: 100%;
  position: relative;
  overflow: auto;
}

span[data-target] {
  cursor: pointer;
}

.pane_link {
  background: #2b2b40;
}

ul.crm_list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: relative;
}

ul.crm_list li>span:hover {
  border: 1px solid var(--list-hover-color) !important;
}

ul.crm_list li>span.active {
  background-color: #767676 !important;
  color: #ffff !important;
}

ul.crm_list li>span {
  background-color: var(--list-color);
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

ul.crm_list li:not(:first-child) {
  margin-top: 3px;
}

ul.crm_list li ul li {
  margin-top: 3px;
  position: relative;
}

ul.crm_list ul.crm_list::before {
  content: "";
  width: 1px;
  top: 0;
  left: 14px;
  bottom: 17px;
  position: absolute;
  border-left: 1px dashed var(--border-color);
}

ul.crm_list li ul li::before {
  content: "";
  width: 8px;
  top: 50%;
  left: -8px;
  position: absolute;
  border-top: 1px dashed var(--border-color);
}

ul.crm_list>li i {
  width: 30px;
}

ul.crm_list li {
  position: relative;
}

ul.crm_list li>span {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 5px;
  padding: 0 7px;
  flex: 1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  color: var(--text-color);
  font-weight: 600;
  align-items: center;
}

ul.crm_list li>span>span,
ul.crm_list li>span>div>span {
  padding: 7px 2px;
  display: flex;
  gap: 3px;
  flex-direction: column;
  width: 100%;
}

ul.crm_list li .info:empty {
  display: none !important;
}

ul.crm_list li .info {
  display: flex;
  gap: 12px;
  padding: 0 6px;
  border-radius: 4px;
  background-color: #0000000f;
  flex-direction: row;
  width: 100%;
  font-size: 0.73rem !important;
}

ul.crm_list li .info>* {
  display: flex;
  align-items: center;
}

ul.crm_list li .info>* i {
  width: auto;
  margin-right: 5px;
}

ul.crm_list li>span>div:first-child {
  width: 100%;
}

ul.crm_list li>span>div {
  display: flex;
  align-items: center;
}

ul.crm_list li>span img {
  margin-right: 10px !important;
}

ul.crm_list ul {
  display: none;
  padding-left: 25px;
  position: relative;
}

ul.crm_list li.has-submenu>span::before {
  content: "\25B6";
  display: block;
  float: left;
  margin-right: 0.5rem;
  font-size: 12px;
  color: var(--text-color);
}

.loading:before {
  content: "";
  position: absolute;
  background: var(--body-color-opacity);
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.loading:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border: 6px solid var(--border-color);
  border-top: 6px solid var(--text-color);
  z-index: 909;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  margin: -28px 0 0 -28px;
  -webkit-animation: spin 0.6s linear infinite;
  -moz-animation: spin 0.6s linear infinite;
  animation: spin 0.6s linear infinite;
}



@keyframes shake {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(1px);
  }

  75% {
    transform: translateX(-1px);
  }

  100% {
    transform: translateX(0);
  }
}

.shake {
  display: inline-block;
  animation: shake 0.3s ease-in-out infinite;
}

#pane_content .scroll.has-scroll {
  padding-right: 1.2rem;
}

li span.open::before {
  transform: rotate(90deg);
}

li.no-arrow span::before {
  content: none;
}

.results {
  margin-top: 1rem;
}

.results:empty {
  display: none;
}

/* not found */
#notfound {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.notfound {
  max-width: 460px;
  width: 100%;
  text-align: center;
  line-height: 1.4;
}

.notfound .notfound-404 {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 50px auto 50px;
}

.notfound .notfound-404>div:first-child {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #ffa200;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border: 5px dashed #000;
  border-radius: 5px;
}

.notfound .notfound-404>div:first-child:before {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  bottom: -5px;
  top: -5px;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.1) inset;
  border-radius: 5px;
}

.notfound .notfound-404 h1 {
  font-family: cabin, sans-serif;
  color: #000;
  font-weight: 700;
  margin: 0;
  font-size: 90px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  text-align: center;
  height: 40px;
  line-height: 40px;
}

.notfound p {
  font-family: cabin, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.trumbowyg-editor {
  max-height: 250px;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.max-height-300 {
  display: block;
  max-height: 250px !important;
  overflow-y: auto !important;
}

.masonry {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  grid-auto-flow: dense;
  align-items: flex-start;
  /* Kartların üst hizalamasını sağlar */
}

@media (max-width: 1200px) {
  .masonry {
    grid-template-columns: 1fr;
  }
}

.masonry-item {
  display: flex;
  flex-direction: column;
  break-inside: avoid;
  page-break-inside: avoid;
  background-color: var(--card-color);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 0;
  /* grid-gap zaten boşluk sağlıyor */
}

.masonry-item:nth-child(odd):only-child {
  grid-column: span 2;
  /* Eğer tek öge varsa tüm sütunları kapla */
}

.masonry-item>* {
  width: 100%;
  /* İçeriklerin kart genişliğine uymasını sağlar */
}

/* Fomantic UI ile uyumluluk için */
.ui.card {
  width: 100% !important;
  margin: 0 !important;
}

.d-flex {
  display: flex !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-center {
  align-items: center;
}

.ui.card .content {
  flex-grow: 1;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80px;
  /* Menü genişliğini ihtiyaca göre ayarlayın */
  display: inline-block;
}

.ellipsisMax {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;
  /* Menü genişliğini ihtiyaca göre ayarlayın */
  display: inline-block;
}

.max-h-5 {
  max-height: 5rem;
}

.max-h-10 {
  max-height: 10rem;
}

.max-h-15 {
  max-height: 20rem;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.trumbowyg-button-pane {
  z-index: auto !important;
}

.ui.inverted.card,
.ui.inverted.cards>.card {
  background: var(--list-color);
  border-radius: 6px;
  box-shadow: none;
  border: 1px solid var(--border-color);
}

.ui.inverted.table {
  background: var(--list-color);
  border: 1px solid var(--border-color);
}

.ui.inverted.menu {
  background: var(--list-color);
}

.ui.inverted.selection.dropdown {
  background: var(--list-color);
}

.ui.inverted.form input {
  background: var(--list-color) !important;
  color: #fff !important;
}

.ui.flyout.inverted>.content,
.ui.flyout.inverted>.header {
  background: #212121;
  border-left: 1px solid #4d4d4d;
}

.ui.inverted.label,
.ui.inverted.labels .label {
  background-color: transparent;
  border: 1px solid var(--border-color);
}

.ui[class*="five wide"].flyout:not(.fullscreen) {
  width: 50%;
  min-width: 700px;
}

.info_image {
  height: 56px;
  background: var(--card-color);
  padding: 0;
  border: none;
  border-radius: .48571429rem;
  border: 1px solid var(--border-color);
  transition: box-shadow .1s ease, transform .1s ease;
}

.info_header {
  display: flex;
  gap: 1rem;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.info_header>div.header {
  min-width: 100px;
  position: relative;
  padding-right: 1rem;
}

.info_header>div.header::after {
  content: '';
  width: 0;
  border-right: 1px solid rgb(0 0 0 / 23%);
  height: 100%;
  position: absolute;
  right: -0.5rem;
  top: 0;
}

.info_header>div.text {
  text-align: left;
  flex: 1;
}

.ui.table .ui.transparent {
  border: 0 !important;
}

td .ui.input>input,
td .ui.selection.dropdown,
td .trumbowyg-box,
.trumbowyg-editor-box {
  border: 0 !important;
}

#pane_plugin {
  width: 420px;
  min-width: 300px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

#pane_plugin:empty {
  display: none !important;
}

.json-display:has(ul:empty) {
  display: none !important;
}

.json-display {
  padding: 5px;
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-bottom: 5px;
  background-color: var(--body-color);
}

.json-display .label {
  cursor: pointer;
}


.json-display ul ul {
  padding-left: 30px;
  position: relative;
}


.json-display ul {
  max-height: 200px;
  overflow: auto;
  list-style: none;
  margin: 0;
  position: relative;
  padding: 0;
}

.json-textarea {
  width: 100%;
  height: 300px;
  font-family: monospace;
  padding: 10px;
  margin-bottom: 10px;
}

.json-item {

  position: relative;
}

.json-display ul .json-item:not(:first-child) {
  margin-top: 5px;
}

.json-display ul ul .json-item {
  margin-top: 5px;
}

.json-display ul ul:before {
  content: "";
  width: 1px;
  bottom: 13px;
  top: 0;
  left: 15px;
  position: absolute;
  border-left: 1px dashed var(--border-color);
}

.json-display ul ul li:before {
  content: "";
  width: 12px;
  top: 50%;
  left: -15px;
  position: absolute;
  border-top: 1px dashed var(--border-color);
}

.json-content {
  margin: 0;
  padding-left: 20px;
  display: flex;
  position: relative;
  font-size: 12px;
  gap: 5px;
  border-radius: 3px;
  border: 1px dashed var(--border-color);
  padding: 2px 4px;
  background-color: rgba(0, 0, 0, .05);
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  align-items: center;
}

.json-content:hover {
  background-color: rgba(0, 0, 0, .1);
}

.json-error:empty {
  display: none;
  cursor: pointer;
}

.add-root-btn {
  margin: 0px 5px 5px 5px;
  width: 100px;
  text-align: center;
  cursor: pointer;
}

.json-key {
  color: #975b00;
  padding-left: 5px;
  display: flex;
}

.json-key::after {
  content: ' : ';
  margin-left: 10px;
}

.json-value {
  padding-left: 10px;
  color: #2b6cb0;
  width: 100%;
}

.json-actions {
  text-align: end;
  width: 100%;
}

.json-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.json-modal .modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 8px;
  min-width: 300px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.json-modal .modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.json-modal .modal-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.json-modal .modal-buttons button:hover {
  opacity: 0.9;
}

.json-modal .modal-buttons button.cancel {
  background: #f1f1f1;
}

.json-modal .modal-buttons button.save {
  background: #4299e1;
  color: white;
}

.key-input:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
}

.error {
  color: red;
  margin-top: 5px;
}

.ui.flyout>.content.scrolling {
  overflow: auto !important;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  display: block !important;
  height: 100% !important;
  padding: 1rem !important;
}



table ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
}



table ul li {
  position: relative;
}

table ul li div:hover {
  background-color: #b4cc184f;
}

table ul li div {
  background-color: #b5cc1826;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px dashed var(--border-color);
}

table ul ul li div {
  margin-top: 5px;
}

table ul li:not(:first-child) div {
  margin-top: 5px;
}

table ul li div b {
  font-weight: 600;
}

table ul ul {
  padding-left: 25px;
}

table ul ul:before {
  content: "";
  width: 0px;
  bottom: 12px;
  top: -4px;
  left: 10px;
  position: absolute;
  border-left: 1px dashed var(--border-color);
}

table ul ul li:before {
  content: "";
  width: 12px;
  top: 50%;
  left: -12px;
  position: absolute;
  border-top: 1px dashed var(--border-color);
}

table td>ul {
  overflow: auto !important;
  max-height: 300px !important;
  padding-right: 3px;
}

/* Flyout için gerekli CSS düzenlemeleri */
.ui.flyout {
  position: fixed;
  top: 0;
  right: 0;
  width: 30%;
  /* veya istediğiniz genişlik */
  height: 100%;
  background: #fff;
  z-index: 1000;
  overflow-y: auto;
  transform: translate3d(100%, 0, 0);
  transition: transform .3s ease;
}

.ui.flyout.visible {
  transform: translate3d(0, 0, 0);
}

/* Pusher için gerekli CSS */
.pusher {
  transform: translate3d(0, 0, 0);
  transition: transform .3s ease;
}

.custom-menu-container {
  position: relative;
  display: inline-block;
}

.custom-menu-content.inverted {
  background: var(--body-color);
}

.custom-menu-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  width: 450px;
  /* Sabit genişlik */
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-top: 5px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.custom-menu-toggle {
  display: none;
}

.custom-menu-toggle:checked+.custom-menu-content {
  display: block;
}

.form-container {
  padding: 1rem;
}

td .jsonEditor {
  padding: 0.5rem;
}


/* Login sayfası */

.login_body {
  background-color: #DADADA;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.login_body>.grid {
  height: 100%;
}

.login_body .ui.form {
  width: 440px;
}

.login_body .column {
  max-width: 450px;
  min-width: 350px;
}

.login_body .ui.message:empty {
  display: none;
}

.login_body .header {
  width: 100%;
}

.login_body .user {
  display: flex;
  justify-content: space-between;

  gap: 10px;
  align-items: center;
}

.login_body .logo {
  width: 9rem !important;
  height: 10rem;
}

.login_body .user>* {
  width: 100%;
}

.login_body .user .user_select {
  display: flex;
  gap: 10px;
}

.content_history:empty {
  display: none !important;
}


.content_history ul {
  margin: 0;
  padding: 0.5rem 0.5rem 0 0.5rem;
  list-style: none;
  display: flex;
  flex-direction: row;
  overflow: auto;
  width: 100%;
  gap: 0.5rem;
  max-width: 100%;
}

.content_history ul::-webkit-scrollbar {
  display: none;
}

.content_history ul li span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;

}

.trumbowyg-dark .trumbowyg-button-pane {
  background-color: var(--list-color) !important;
  border: 0px !important;
}

.trumbowyg-box .trumbowyg-editor {
  background-color: var(--list-color) !important;
}

.d-empty:empty {
  display: none !important;
}

.map {
  width: 100%;
  height: 100%;
}

.map-controls {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  background-color:#fff;
  border-radius:3px; 
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}