.state-article {
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
  /* Başlangıçta şeffaf */
  animation: shadowBlink 1s infinite;
  /* Animasyonu sürekli döngüde çalıştır */
}

/* Yanıp sönen inset box-shadow için animasyon */
@keyframes shadowBlink {
  0% {
    box-shadow: inset 0px 0px 32px 8px rgb(76, 164, 220);
    /* Başlangıçta şeffaf */
  }

  50% {
    box-shadow: inset 0px 0px 32px 8px rgb(76, 164, 220, 0.5);
    /* Orta kısımda daha belirgin */
  }

  100% {
    box-shadow: inset 0px 0px 32px 8px rgb(76, 164, 220);
    /* Tekrar şeffaf */
  }
}

.btn_copy_link {
  position: relative;
  cursor: pointer;
  padding-left: 5px;
  font-size: 1.5em;
}

.btn_copy_link.copied_success:after {
  color: #00c609;
  display: inline;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -25px);
  content: "Kopyalandı!";
  animation: 1s ease-in-out 0s 1 normal forwards running copyit;
  font-size: 0.8em;
  font-weight: 600;
}

.btn_copy_link.copied_error:after {
  color: #ff4343;
  display: inline;
  position: absolute;
  left: 3px;
  content: "Kopyalanamadı!";
  animation: 1s ease-in-out 0s 1 normal forwards running copyit;
  font-size: 0.8em;
  font-weight: 600;
  left: 50%;
  transform: translate(-50%, -25px);
}

@keyframes copyit {
  0% {
    bottom: 0.5em;
    opacity: 1;
  }

  100% {
    bottom: 1.5em;
    opacity: 0;
  }
}

.user-tooltip {
  position: relative;
  /* display: inline-block; */
  cursor: pointer;
}

.user-tooltip .tooltiptext {
  visibility: hidden;
  width: 180px;
  background-color: #3c3c3c;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 7.5px 0;
  position: absolute;
  z-index: 1;
  bottom: 120%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 13px;
}

.user-tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.user-tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -7px;
  border-width: 7px;
  border-style: solid;
  border-color: #3c3c3c transparent transparent transparent;
}

.button-loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
}

.button-loader::before,
.button-loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #fff;
  animation: prixClipFix 2s linear infinite;
}

.button-loader::after {
  border-color: #ff3d00;
  animation: prixClipFix 2s linear infinite, rotate 0.5s linear infinite reverse;
  inset: 6px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }

  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }

  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }

  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }

  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}

.bg-sidebar-card-top {
  background-color: #4ca4dc;
  padding: 8px;
  border-radius: 10px;
}

.bg-sidebar-card-top .m-right {
  margin-right: 10px;
}

.bg-sidebar-card-top .img_container {
  background: azure;
  margin-right: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  overflow: hidden;
}

.bg-sidebar-card-top .img_container img {
  object-fit: contain;
}

.text-name {
  color: #414243;
  font-weight: 600;
}

.header-dropdown .dropdown-toggle::after {
  content: none !important;
  /* Varsayılan içeriği iptal eder */
}

.header-dropdown .dropdown-menu {
  width: 100% !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.header-dropdown .dropdown-item {
  height: 50px;
  display: flex;
  align-items: center;
}

.header-dropdown .dropdown-item:not(:first-child) {
  border-top: 1px solid #d3d3d3;
}

.header-dropdown .dropdown-menu .dropdown-item.color-4 span {
  color: #ff8080;
}

.header-dropdown .dropdown-menu .dropdown-item.color-4:hover:after {
  opacity: 1 !important;
  color: #fff !important;
  background: #ff8080 !important;
}

/* datatable veri yok uyarisi */
@import url("https://fonts.googleapis.com/css?family=Raleway:200");

.gradient-border#box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  color: rgb(31, 31, 31);
  font-family: "Raleway";
  font-size: 2.5rem;
}

.gradient-border {
  --borderWidth: 3px;
  background: #f0f0f0;
  position: relative;
  border-radius: var(--borderWidth);
}

/* SweetAlert2 Custom CSS */
div:where(.swal2-container) div:where(.swal2-popup) {
  background: #333 !important;
  color: #fff !important;
  border-radius: 15px !important;
}
div:where(.swal2-container) button:where(.swal2-styled) {
  border-radius: 10px !important;
}
/* SweetAlert2 Custom CSS */

.custom-sidebar-ads {
  display: flex;
  height: 12rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  border-width: 1px;
  border-color: rgb(0 0 0 / 0.1);
  background-color: rgb(0 0 0 / 0.05);
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: rgb(0 0 0 / 0.5);
}

.custom-content-ads {
  display: flex;
  height: 11rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  border-width: 1px;
  border-color: rgb(0 0 0 / 0.1);
  background-color: rgb(0 0 0 / 0.05);
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: rgb(0 0 0 / 0.5);
}

@media screen and (min-width: 1536px) {
  #categoryList li a {
    min-width: 200px;
  }
}

@media screen and (max-width: 500px) {
  header form.group.flex.border.h-9.w-full.text-sm.rounded-lg input[type="text"],
  header form label.flex-shrink-0.gap-x-2.flex.bg-gray-50.h-full.px-3.items-center.border-l.cursor-pointer {
    padding: 0 10px !important;
    font-size: 11px;
  }
}

@media screen and (min-width: 1024px) {
  .__custom_link {
    width: 300px;
  }
}

.left-sidebar {
  flex-shrink: 0;
}