.locked-icon {
  position: relative;
  top: 10px;
  right: 5px;
  z-index: 10;
  border: 1px solid #999;
}

.locked-icon::after {
  content: '\1F512';
  position: absolute;
  top: -10px;
  right: -5px;
  font-size: 16px;
}

ul,
li {
  list-style: none;
}

.nav-link {
  border-radius: 0.25rem;
  color: var(--bs-gray-500);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.pattern-square {
  position: relative;
}

.pattern-square:after {
  background-image: url(../images/pattern/pattern-square.svg);
  background-position: top;
  bottom: 0;
  content: '';
  height: 312px;
  left: 0;
  -webkit-mask-image: linear-gradient(0deg, transparent 35%, #000 75%);
  mask-image: linear-gradient(0deg, transparent 35%, #000 75%);
  padding: 40px 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.logo-img {
  height: 28px;
}

@media (min-width: 992px) {
  .logo-img {
    height: 32px;
    margin-bottom: 3px;
  }
}

/* Logo boyutu ve filtre ayarı */
.marquee-logo {
  height: 55px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

/* Hover'da renkli hale gelmesini istersen */
.marquee-logo:hover {
  filter: grayscale(0%);
}

img.img-fluid {
  max-width: 100%;
  height: auto;
  max-height: 520px;
  /* ya da 100%, tasarıma göre */
}

.text-bottom-line {
  position: relative;
}

.text-bottom-line:after {
  background-image: url(/theme-2/assets/images/svg/line-highlight-4.svg);
  background-repeat: no-repeat;
  bottom: 0;
  content: '';
  height: 7px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 260px;
}

.bg-highlight {
  background-color: #e5fe61 !important;
}

.text-highlight {
  color: #e5fe61 !important;
}

.mark-success {
  background-color: #eefab5 !important;
  padding: 0 4px;
}

.mark-warning {
  background-color: #fffbcf !important;
  padding: 0 4px;
}

.mark-danger {
  background-color: #ffdae3 !important;
  padding: 0 4px;
}

span.highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
  font-weight: 500;
  padding: 4px 6px;
  color: #000;
  background-color: transparent;
}

span.highlight::before {
  content: '';
  position: absolute;
  left: -10px;
  right: -10px;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: url('/theme-2/assets/images/png/highlight-3.png') no-repeat center;
  background-size: 100% 100%;
}

.carousel-item {
  transition: transform 0.4s ease-in-out;
}

.icon-box {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -100;
}

/* Farklı konumlar ve renkler */
.dot-1 {
  top: 6px;
  right: 7px;
  background-color: #d4fd66;
}

.dot-2 {
  bottom: 4px;
  left: 5px;
  background-color: #d4fd66;
}

.dot-3 {
  top: 50%;
  left: 0;
  background-color: #d4fd66;
}

/* Mobilde d-flex yapısına geç, scrollbar'ı gizle */
@media (max-width: 767.98px) {
  #scrollspy-tabs {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  #scrollspy-tabs::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
  }

  #scrollspy-tabs > a {
    min-width: 150px;
    flex-shrink: 0;
  }
}

#scrollspy-tabs a.active {
  background-color: var(--gk-light-primary);
}

/* Select2 çoklu seçim chip görselliği */
.select2-container--default .select2-selection--multiple {
  border: 1px solid #cbd5e1;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  min-height: 40px;
  padding: 4px 6px;
  box-shadow: 0 0 10px rgba(131, 106, 249, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid #cbd5e1 1px;
  outline: 0;
}

/* Chip (etiket) görünümü */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e0e7ff;
  color: #111827;
  border: none;
  border-radius: 6px;
  padding: 4px 10px 4px 35px;
  margin: 3px 5px 3px 0;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

/* 'x' ikonu */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 0px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  border-right: 1px solid #baafea;
  display: inline-block;
  padding: 7px 6px;
}

/* 'x' ikonu hover*/
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #836af9;
  color: #333;
  outline: none;
}

.input-group {
  flex-wrap: no-wrap !important;
}

.picker-wrapper {
  width: 280px;
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#sv-picker {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  position: relative;
  cursor: crosshair;
}
#sv-indicator {
  width: 14px;
  height: 14px;
  border: 2px solid white;
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  box-shadow: 0 0 2px black;
}
#hue-slider {
  width: 100%;
  height: 10px;
  margin: 10px 0;
  border-radius: 6px;
  background: linear-gradient(to right, red, yellow, lime, cyan, blue, magenta, red);
  -webkit-appearance: none;
  appearance: none;
}
.eye-dropper-btn {
  background: #eee;
  border: none;
  padding: 6px;
  border-radius: 6px;
  cursor: pointer;
}
