/* Themes Scrollbar Styles */

  /* 1. Kaydırma çubuğunun genişliği (Her zaman yer kaplamasını sağlar) */
#right-column-content::-webkit-scrollbar {
  width: 10px;               /* Dikey scroll genişliği */
  height: 10px;              /* Yatay scroll yüksekliği */
  display: block;            /* Görünürlüğü garanti eder */
}

/* 2. Kaydırma çubuğunun arka planı (Yolu/Track) */
#right-column-content::-webkit-scrollbar-track {
  background: #f1f1f1;       /* Arka plan rengi */
  border-radius: 10px;
}

/* 3. Kaydırılan tutamaç (Thumb) */
#right-column-content::-webkit-scrollbar-thumb {
  background: var(--color-primary-dark) !important;          /* Scroll tutamaç rengi */
  border-radius: 10px;       /* Köşeleri yuvarlatma */
  border: 2px solid #f1f1f1 !important; /* Arka planla arasında boşluk varmış gibi gösterir */
}

/* 4. Mouse üzerine gelince tutamaç rengi */
#right-column-content::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);          /* Hover durumunda renk değişimi */
}

/* Themes Card Styles */

.themes-img_cards-wrap .themes-cards .theme-card {
  height: 35rem;
  flex: 0 0 calc(33.333% - 1.35rem);
  background-color: transparent;
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.theme-card .card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.theme-card .content-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  position: relative;
}

.theme-card .img-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  padding: 1rem 1.5rem;
  padding-bottom: 0 !important;
}

.theme-card .img-wrapper::before {
  content: '';
  background-color: #07534D;

}

.theme-card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.theme-card .text-wrapper {
  text-align: center;
}

.theme-card .theme-name {
  font-family: 'Latinka-Medium', sans-serif;
  font-size: 2.2rem;
  color: var(--color-primary-dark);
}

.theme-card .action-wrapper {
  transition: all 0.4s ease;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 1.5rem;
}

.theme-card .btn-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.theme-card .btn-group .btn-main {
  margin: 0;
      height: 40px;
    padding: 0 35px;
  font-size: 14px;
  font-family: 'atinka-bold', sans-serif;
}

.theme-card .text-wrapper .btn-group .btn-main {
  padding: 0 20px;
}

/* Hover States */
.theme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* .theme-card:hover .content-wrapper {
  transform: translateY(-3rem);
}
 */


/* Responsive */
@media screen and (max-width: 1200px) {
  .themes-img_cards-wrap {
    padding: 0 4rem;
  }
  .themes-img_cards-wrap .themes-cards .theme-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media screen and (max-width: 768px) {
  .themes-img_cards-wrap {
    padding: 0 2rem;
    margin: 4rem auto 8rem auto;
  }
  .themes-img_cards-wrap .themes-cards .theme-card {
    flex: 0 0 100%;
    height: 30rem;
  }

  .theme-card .btn-group {
    gap: 0;
    flex-direction: column;
    row-gap: 1rem;
  }

  .custom-btn-copy-link::after {
    width: 100%;
    height: 40px;
    border-radius: 50px;
  }

  .custom-btn-copy-link {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .theme-grid {
    grid-template-columns: 1fr !important;
  }

  .theme-item {
    max-width: 300px;
  }

  .theme-grid {
    justify-items: center;
  }
  
  .theme-item {
    width: 320px;
  }

  .theme-item .action-wrapper .btn-group {
    width: 100%;
  }

  .theme-card .btn-group .btn-main {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  #kayit-ol h1 {
    font-size: 31px;
  }

  .themes-img_cards-wrap {
    font-size: 31px;
    color: var(--color-primary-dark);
  }

  .themes-img_cards-wrap {
    margin-top: 0px;
  }

  /* .tabs {
    height: 85px;
  } */

 /*  .tabs .step-item {
    position: absolute;
    opacity: 0;
    width: 100%;
  } */
}