:root {
  /* Marka Ana Rengi (#D90000) */
  --primary: #d90000;
  --agent-red: #d90000;

  --primary-dark: #b00000; /* Hover / Tıklama Durumu */
  --primary-light: #fff0f0; /* Aktif Menü & Hafif Arka Planlar */
  --primary-glow: rgba(217, 0, 0, 0.15); /* Input Odaklanma Işığı */

  /* Koyu Lacivert / Slate Menü Arka Planları (Kırmızı ile Mükemmel Uyum Sağlar) */
  --sidebar-bg: #0f172a;
  --sidebar-width: 260px;
  --sidebar-collapsed: 72px;
  --border-color: #E2E8F0;
  --body-bg: #f1f5f9;
  --card-bg: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;

  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --text-light: #cbd5e1;

  /* Durum Renkleri (Danger rengi marka kırmızısından ayırt edilsin diye biraz daha koyu/mercana yakın ayarlandı) */
  --success: #10b981;
  --success-hover: #0c8b61;
  --success-light: #ecfdf5;
  --warning: #f59e0b;
  --warning-light: #fffbeb;
  --danger: #dc2626; /* Tehlike / Sil Butonları */
  --danger-light: #fef2f2;
  --info: #3b82f6;
  --info-light: #eff6ff;

  /* Gölgeler - Kırmızı Işıma Gölgeleri Güncellendi */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
      --font: 'Lexend', sans-serif;
}

html {
  scroll-behavior: smooth;
}

i {
  display: inline-flex;
  line-height: 1;
}

.btn-uyelik {
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  border-radius: var(--radius-sm);
  background: var(--primary);
  border: none;
  color: #fff;
}

.btn-uyelik:hover,
.btn-uyelik:focus,
.btn-uyelik:active {
  background: var(--primary-dark);
}

.btn-gren {
  background: var(--success);
}

.btn-gren:hover,
.btn-gren:focus,
.btn-gren:active {
  background: var(--success-hover);
}

.list-group-item {
  border-radius: 5px !important;
}

.btn-secondary {
  font-size: 14px;
  padding: 13px 16px;

  font-weight: 700;
  gap: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  background: #fff;
  color: var(--text-secondary);
  border-color: var(--border);
  line-height: 1;
  align-items: center;
  display: inline-flex;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Header Başlangıç */

a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}

button,
.btn:focus {
  outline: none;
  box-shadow: none;
}

body {
  font-family: var(--font);
  background: var(--body-bg);
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.6;
}

.sita-hiza {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.list-group-item {
  border-radius: 5px !important;
}

/**/

/* --- HEADER MENU (Görseldeki Tasarım) --- */
.header-menu {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 997;
  height: auto;
}

/* Genel Kapsayıcı (Full Width ama kenar boşluklu) */
.header-menu .header-container {
  display: flex;
  align-items: center;
  height: 65px;
  /* Görseldeki dolgun yükseklik */
  width: 100%;
}

.padding-std {
  padding: 0 30px;
}

/* 1. SOL BÖLÜM */
.header-menu .left-section {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-menu .logo-img {
  height: 37px;
  width: auto;
  padding: 5px 0px;
}

.header-menu .nav-type-link {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  color: var(--text-primary);
}

.header-menu .link-satilik {
  color: #e00000;
}

/* Görseldeki Kırmızı */
.header-menu .link-kiralik {
  color: #000000;
}

/* Görseldeki Siyah */
.header-menu .nav-type-link:hover {
  opacity: 0.8;
}

/* 2. ORTA BÖLÜM (ARAMA) */
.header-menu .center-section {
  flex-grow: 1;
  max-width: 390px;
  /* Geniş arama alanı */
  margin: 0 40px;
}

.header-search {
  flex: 1;
  max-width: 350px;
  position: relative;
}

.header-search input {
  width: 100%;
  height: 40px;
  background: var(--body-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0 42px 0 16px;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--text-primary);
  transition: var(--transition-fast);
  outline: none;
}

.header-search input:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.header-search input::placeholder {
  color: var(--text-muted);
}

.header-search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 15px;
  background: transparent;
  cursor: pointer;
  border: none;
  margin-top: 3px;
}

/* 3. SAĞ BÖLÜM */
.header-menu .right-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.header-menu .text-link {
  color: #555;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.header-menu .text-link:hover {
  color: #000;
}

/* Mesaj İkonu */
.header-menu .icon-btn {
  width: 40px;
  height: 40px;
  background-color: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e00000;
  text-decoration: none;
  position: relative;
  font-size: 18px;
}

.header-menu .icon-btn:hover {
  background-color: #eee;
}

.header-menu .badge-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  background-color: #e00000;
  border-radius: 50%;
  border: 1px solid #fff;
}

/* Ayırıcı Çizgi */
.header-menu .divider-vertical {
  width: 1px;
  height: 35px;
  background-color: #ddd;
}

/* Kullanıcı Profili (YY Yuvarlak) */
.header-menu .user-profile-trigger {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--body-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 4px 9px 4px 4px;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  text-align: left;
}

.header-menu .user-avatar-circle {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.header-menu .user-details {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-menu .user-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.header-menu .user-role {
  font-size: 10px;
  color: var(--text-muted);
}
.header-menu .user-profile-trigger:hover,
.header-menu .user-profile-trigger:focus {
  border-color: var(--primary);
  background: var(--primary-light);
}

.user-profile-trigger i {
  margin-left: -1px;
}

/* İlan Ver Butonu */
.header-menu .btn-ilan-ver {
  background-color: #d90000;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: opacity 0.2s;
}

.header-menu .btn-ilan-ver:hover {
  background: var(--primary-dark);
}

.header-menu .btn-ilan-ver2 {
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;    border-radius: var(--radius-full);
  transition: opacity 0.2s;
}

.header-menu .btn-ilan-ver2:hover {
  background: #f5f5f5;
}
.header-menu .dropdown-menu {
  border-radius: var(--radius-sm);
}
.header-menu .home-header {
gap: 20px;
    display: flex;
}
/* Responsive Gizleme */
@media (max-width: 1200px) {
  .header-menu .text-link {
    display: none;
  }

  .header-menu .center-section {
    margin: 0 20px;
  }
}

@media (max-width: 991px) {
  .header-menu .center-section,
  .header-menu .nav-type-link,
  .header-menu .user-details,
  .header-menu .divider-vertical {
    display: none;
  }

  .header-menu .header-container {
    padding: 0 15px;
  }
}

/* --- Butonun Ana Gövdesi --- */
.btn-ortak-ilan-soft {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px; /* İkon, yazı ve sayının arasındaki mesafe */
  padding: 8px 16px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  color: #4a5568;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;

  /* İçi Dolan Animasyon */
  animation: ic-dolgu-nefes 2.5s infinite ease-in-out;
  transition: all 0.3s ease;
}

/* --- Sayı Rozeti (Badge) Tasarımı --- */
.ilan-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 12px; /* Hap şeklinde yuvarlak */
  font-size: 12px;
  font-weight: 700;

  /* Butonla aynı anda renk değiştirmesi için senkronize animasyon */
  animation: badge-nefes 2.5s infinite ease-in-out;
  transition: all 0.3s ease;
}

/* --- Buton İçi Nefes Animasyonu --- */
@keyframes ic-dolgu-nefes {
  0%, 100% {
    background-color: #ffffff;
    border-color: #e0e0e0;
    color: #4a5568;
  }
  50% {
    background-color: #fff2f2;
    border-color: rgba(211, 47, 47, 0.4);
    color: #d32f2f;
  }
}

/* --- Sayı Rozeti (Badge) Nefes Animasyonu --- */
@keyframes badge-nefes {
  0%, 100% {
    background-color: #f1f5f9; /* Başlangıçta yumuşak gri zemin */
    color: #4a5568; /* Koyu gri yazı */
  }
  50% {
    background-color: #d32f2f; /* Buton kızardığında sayı arkası tam kırmızı olur */
    color: #ffffff; /* Sayı beyaz olur ki dikkat çeksin */
  }
}

/* --- İkon Tasarımı --- */
.btn-ortak-ilan-soft i {
  color: #d32f2f;
  font-size: 16px;
  display: flex;
}

/* --- Fare İle Üzerine Gelince (Hover) --- */
.btn-ortak-ilan-soft:hover {
  border-color: #d32f2f;
  color: #d32f2f;
  background-color: #fff2f2;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.08);
  transform: translateY(-1px);
  animation: none; /* Yanıp sönme durur */
}

/* Fare üzerine gelince sayı kutucuğu da hep kırmızı kalsın */
.btn-ortak-ilan-soft:hover .ilan-badge {
  background-color: #d32f2f;
  color: #ffffff;
  animation: none;
}

/* --- Bilgilendirme Balonu (Tooltip) Gövdesi --- */
.ortak-tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background-color: #1e293b;
  color: #ffffff;
  text-align: center;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 100;
  pointer-events: none;
}

/* --- Tooltip'in Üstündeki Küçük Ok İşareti --- */
.ortak-tooltip::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #1e293b transparent;
}

/* --- Fare Butonun Üzerindeyken Tooltip'i Göster --- */
.btn-ortak-ilan-soft:hover .ortak-tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/**/
.page-icerik {
  min-height: 300px;
  padding: 30px 0px;
}

.page-icerik h3 {
  font-weight: 700;
  font-size: 25px;
}

.page-icerik h3 b {
  color: #d90000;
}

.page-icerik h4 {
  font-weight: 700;
  border-bottom: 1px solid #f1f1f1;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 17px;
}

.page-icerik .page-icerik-box {
  background: #fff;
  border: 1px solid #eaeaea;
  width: 100%;
  padding: 30px;
}

.page-content {
    border: solid 1px var(--border-color);
    border-radius: var(--radius-sm);
    background: #fff;
}


.page-content-header {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: solid 1px var(--border-color);
}


.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}


.page-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}


.page-content-body, .page-content-header {
    padding: 15px;
}


.bolum-baslik {
  width: 100%;
  height: auto;
  text-align: left;
  margin-bottom: 20px;
  display: block;
  position: relative;
  z-index: 99;
}

.bolum-baslik h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a2b49;
  background: #fafafa;
}

.bolum-baslik .cizgi {
  position: absolute;
  left: 0px;
  width: 100%;
  height: 1px;
  background: #e2e2e2;
  top: 16px;
  z-index: -1;
}

/* =========================================================
   BREADCRUMB
   ========================================================= */
.breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb-bar .breadcrumb {
  margin: 0;
  padding: 10px 0;
  background: none;
}

.breadcrumb-bar .breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-bar .breadcrumb-item a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  transition: var(--transition-fast);
}

.breadcrumb-bar .breadcrumb-item a:hover {
  color: var(--primary);
}

.breadcrumb-bar .breadcrumb-item.active {
  color: var(--text-muted);
  font-size: 12.5px;
}

.breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-light);
  content: "›";
  font-size: 16px;
}

/*.liste-tab */

.liste-tab {
  position: relative;
}

.liste-tab .FiltreAdres {
  display: none;
  position: absolute;
  z-index: 250;
  left: 10px;
  top: 0;
  width: 280px;
  border: 1px solid #c0c0c0;
  border-radius: 2px;
  background-color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  z-index: 999;
  border-radius: 5px;
}

.liste-tab .FiltreAdres .Filtre-Scrool-Header {
  width: 100%;
  display: flex;
  padding: 12px;
  align-items: center;
}

.liste-tab .FiltreAdres .Filtre-Scrool-Header .form-control {
  border-radius: 5px;
  width: calc(100% - 34px);
}

.liste-tab .FiltreAdres .Filtre-Scrool-Header .form-control {
  height: 33px;
  font-size: 14px;
}

.liste-tab .FiltreAdres .Filtre-Scrool-Header .Filtre-adres-kapat {
  margin-left: 5px;
  width: 33px;
  height: 33px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 14px;
}

.liste-tab .FiltreAdres .Filtre-Scrool-Header .Filtre-adres-kapat:hover {
  background: #000;
  color: #fff;
}

.liste-tab .FiltreAdres.active {
  display: block;
}

.liste-tab .Filtre-Scrool-body {
  height: auto;
  background: #fff;
  padding: 14px 0px;
  border-top: 1px solid #ebebeb;
}

.liste-tab .Filtre-Scrool {
  height: 330px;
  overflow-y: auto;
  background: #fff;
  max-width: 97%;
}

.liste-tab .FiltreAdres ul {
  height: auto;
  padding: 0px 6px 0px 0px;
}

.liste-tab .FiltreAdres ul li:first-child {
  border-top: none;
}

.liste-tab .FiltreAdres ul li {
  height: auto;
  list-style: none;
  border-top: 1px solid #f1f1f1;
}

.liste-tab .FiltreAdres ul li a {
  height: auto;
  padding: 9px 22px;
  list-style: none;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.liste-tab .FiltreAdres ul li .adres_checkbox {
  margin-right: 7px;
}

.liste-tab .FiltreAdres ul li .mahalle-ana-baslik {
  background: #dedede;
  font-weight: 700;
  padding-top: 9px;
  padding-bottom: 9px;
  margin-bottom: 5px;
  margin-top: 0px;
  color: #041425;
  display: flex;
  align-items: center;
  padding-left: 15px;
}

.liste-tab .FiltreAdres ul li .mahalle-ana-baslik a:hover {
  background: transparent;
  color: #041425 !important;
}

.liste-tab .FiltreAdres ul li .mahalle-ana-baslik:hover {
  color: #041425;
}

.liste-tab .FiltreAdres ul li ul li {
  padding-left: 15px;
}

.liste-tab .FiltreAdres ul li a {
  position: relative;
}

.liste-tab .FiltreAdres ul li a:hover {
  background: #e00000;
  color: #fff;
}

.liste-tab .FiltreAdres ul li a::after {
  content: "\eab4";
  font-family: "fontello";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.liste-tab .Filtre-Scrool::-webkit-scrollbar-track {
  background-color: #dedede;
  border-radius: 5px;
}

.liste-tab .Filtre-Scrool::-webkit-scrollbar {
  width: 6px;
  background-color: #dedede;
  border-radius: 5px;
}

.liste-tab .Filtre-Scrool::-webkit-scrollbar-thumb {
  background-color: #a2a2a2;
  border-radius: 5px;
}

.liste-tab .liste1 li a {
  font-size: 14px;
  color: #1d1d1d;
}

.liste-tab .liste1 li.ms-3 a {
  font-weight: 600;
}

.liste-tab .liste1 li.ms-4 a {
  font-weight: 300;
}

.liste-tab .liste1 li.current a {
  color: #000;
  font-weight: 600;
}

.liste-tab .liste1 li.active a {
  color: #e00000;
  font-weight: 600;
}

.liste-tab .liste1 li {
  list-style-type: none;
}

.liste-tab .liste1 li a {
  font-size: 15px;
  color: #1d1d1d;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.liste-tab .liste1 li a .kategori-ilan {
  display: block;
}

.liste-tab .liste1 li a .kategori-ilan-sayi {
  margin-left: auto;
  font-size: 13px;
  background: #f1f1f1;
  width: 25px;
  height: 25px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  border-radius: 35px;
  font-weight: 700;
}

.liste-tab .liste1 li.active a .kategori-ilan-sayi,
.liste-tab .liste1 li a:hover .kategori-ilan-sayi {
  color: #e00000;
}

.liste-tab .liste1 li .ilan-sayisi {
  font-size: 14px;
  color: #a2a2a2;
  font-weight: 400;
  margin-left: 4px;
}

.liste-tab .select-bolumu-alt {
  width: 100%;
  height: auto;
  margin-top: 20px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  color: #444;
}

.liste-tab .il-sec {
  margin-top: 5px;
}

.liste-tab .il-sec select {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  font-size: 15px;
  line-height: 30px;
  background-color: #fff;
  border: 1px solid #c0c0c0;
  border-radius: 2px;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.liste-tab .ilce-sec {
  margin-top: 5px;
}

.liste-tab .ilce-sec select {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 30px;
  background-color: #fff;
  border: 1px solid #c0c0c0;
  border-radius: 2px;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.liste-tab .ilce-sec select.disabled {
  background: #ececec;
}

.liste-tab .mahalle-sec {
  margin-top: 5px;
}

.liste-tab .mahalle-sec select {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  line-height: 30px;
  background-color: #fff;
  border: 1px solid #c0c0c0;
  border-radius: 2px;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.liste-tab .mahalle-sec select.disabled {
  background: #ececec;
}

.liste-tab .select-bolumu .input-alani {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.liste-tab .select-bolumu .input-alani-ic {
  padding: 0px 16px 15px;
}

.liste-tab .select-bolumu .input-alani-ic ul {
  padding-left: 0px;
  margin: 0px;
}

.liste-tab .select-bolumu .input-alani span {
  color: #bdbdbd;
}

/* --- INPUT (Min ve Max Ortak) --- */
.liste-tab .select-bolumu .input-alani .min-input input,
.liste-tab .select-bolumu .input-alani .max-input input {
  display: block;
  width: 100%;
  height: 33px;
  /* İstenilen yükseklik */
  background-color: #fff;
  border: 1px solid #e2e2e2;
  /* Çok daha silik ve modern gri */
  border-radius: 4px;
  /* Hafif yumuşatılmış köşeler (Kutu gibi değil) */
  font-size: 13px;
  /* Yüksekliğe uygun ideal font */
  color: #333;
  line-height: 33px;
  /* Dikey ortalama */
  padding: 0 30px 0 10px;
  /* Sağ tarafı Currency için ayırdık */
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  font-family: inherit;
}

/* --- HOVER & FOCUS --- */
.liste-tab .select-bolumu .input-alani .min-input input:hover,
.liste-tab .select-bolumu .input-alani .max-input input:hover {
  border-color: #bbb;
  /* Hoverda hafif belirginleşsin */
}

.liste-tab .select-bolumu .input-alani .min-input input:focus,
.liste-tab .select-bolumu .input-alani .max-input input:focus {
  border-color: #e00000;
  /* Odaklanınca kırmızı */
  /* Minimalist tasarımda gölge olmaz veya çok az olur */
  box-shadow: 0 0 0 1px rgba(224, 0, 0, 0.1);
}

/* --- KAPLAYICI (WRAPPER) --- */
.liste-tab .select-bolumu .input-alani .fiyat_input {
  position: relative;
  margin-top: 0px;
  /* Üstteki elemandan biraz uzaklaşsın */
}

/* --- ETİKET (LABEL) - PASİF DURUM --- */
.liste-tab .select-bolumu .input-alani .fiyat_input label {
  color: #999;
  /* Açık gri, göz yormaz */
  font-weight: 400;
  position: absolute;
  pointer-events: none;
  left: 8px;
  top: 8px;
  /* 33px yükseklik için tam orta */
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 12px;
  background-color: transparent;
}

/* --- ETİKET (LABEL) - AKTİF DURUM --- */
.liste-tab .select-bolumu .input-alani .fiyat_input input:focus ~ label,
.liste-tab
  .select-bolumu
  .input-alani
  .fiyat_input
  input:not(:placeholder-shown)
  ~ label {
  top: -7px;
  /* Çizginin tam üzerine */
  left: 8px;
  font-size: 10px;
  /* Minimal boyut */
  color: #e00000;
  background-color: #fff;
  /* Çizgiyi kesmek için */
  padding: 0 4px;
  font-weight: 600;
  border-radius: 2px;
}

/* --- CURRENCY (TL) --- */
.liste-tab .select-bolumu .input-alani .fiyat_input .currency {
  position: absolute;
  right: 10px;
  top: 9px;
  /* Ortalamak için */
  font-size: 11px;
  color: #b0b0b0;
  font-weight: 500;
  pointer-events: none;
}

.liste-tab .select-bolumu {
  position: relative;
  background: #fff;
  cursor: pointer;
  margin-bottom: 0px;
  border-bottom: 1px solid #f4f4f4;
}

.liste-tab .select-bolumu .form-liste-bolumu {
  position: relative;
  background: #fff;
  cursor: pointer;
  margin-bottom: 6px;
  height: 33px;
  display: flex;
  align-items: center;

  border-radius: 0px;
  font-weight: 400;
  font-size: 13px;
  background-color: #fcfcfc;
  border-radius: 6px;
  border: 1px solid #eee;
}

.liste-tab .select-bolumu .form-liste-bolumu.pasif {
  background-color: var(--bs-secondary-bg);
  border-color: var(--bs-secondary-bg);
}

.liste-tab .select-bolumu .form-liste-bolumu h3 {
  font-weight: 400;
}

.liste-tab .select-bolumu .form-liste-bolumu h3 span {
  font-weight: 700;
}

.liste-tab .select-bolumu .form-liste-bolumu .ust-baslik {
  width: 100%;
}

.liste-tab .select-bolumu.ilanarama .kullanici-form {
  position: relative;
}

.liste-tab .select-bolumu.ilanarama .kullanici-form .form-control {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 14px;
  background-color: #fff;
  color: #373636;
  font-weight: 500;
  height: 40px;
  padding: 0px 16px;
  display: flex;
  align-items: center;
  border-radius: 0px;
}

.liste-tab .select-bolumu.ilanarama .ara {
  position: absolute;
  right: 10px;
  height: auto;
  width: auto;
  background: transparent;
  color: #e00000;
  border: none;
  display: flex;
  align-items: center;
  top: 13px;
}

.liste-tab .select-bolumu .ust-baslik {
  display: flex;
  align-items: center;
  padding: 10px 16px;
}

.liste-tab .select-bolumu .ust-baslik i {
  margin-right: 0px;
  color: #4d4d4d;
}

.liste-tab .select-bolumu h3 {
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0px;
}

.liste-tab .select-bolumu h3.filtre-baslik {
  display: flex;
  align-items: center;
}

.liste-tab .select-bolumu h3.filtre-baslik .filtre-icon {
  width: 21px;
  display: flex;
}

.liste-tab .select-bolumu h3.filtre-baslik b {
  font-weight: 600;
}

.select-bolumu .select2-container--default .select2-selection--multiple {
  min-height: auto;
}

.select-bolumu
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  color: #000;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #f1f1f1;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar {
  width: 6px;
  background-color: #f1f1f1;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #1d1d1d;
}

.liste-tab .select-bolumu .checkbox-alani {
  max-height: 0;
  overflow-y: auto;
  padding: 0px 0px;
  transition: max-height 0.3s ease;
  padding-right: 5px;
}

.liste-tab .select-bolumu .checkbox-alani li {
  font-size: 14px;
  list-style-type: none;
  margin-top: 8px;
  display: flex;
  align-items: center;
}

.liste-tab .select-bolumu .checkbox-alani li:hover {
  color: #e00000;
}

.liste-tab .select-bolumu .checkbox-alani li .form-check {
  display: block;
  min-height: 1.3rem;
}

.liste-tab .select-bolumu .checkbox-alani li .form-check-label {
  font-weight: 600;
}

.liste-tab .select-bolumu .checkbox-alani li a input {
  margin-right: 5px;
}

.custom-control-input {
  background-color: initial;
}

.custom-control-input:checked + .custom-control-label {
  color: #e00000;
  font-weight: 700;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 5px;
}

.custom-control-input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
}

.custom-control-input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
  position: relative;
}

.custom-control-input:checked {
  background-color: var(--agent-red);
  border-color: var(--agent-red);
}

.custom-control-input:checked::before {
  content: "\e35f";
  font-family: uicons-regular-rounded !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: 700;
}

/* Ana Kategori */

/* --- 1. ANA KUTU (KART) --- */
ul.sol-ana-kategori {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  background-color: #fff;
  border: 1px solid var(--border-color);
  /* Modern, temiz sınır */
  border-radius: 5px;
  overflow: hidden;
  /* Köşeleri koru */
}

/* -----------------------------------------------------------
   SEVİYE 1: EN ÜST ANA BAŞLIK (Örn: EMLAK)
   ----------------------------------------------------------- */
ul.sol-ana-kategori > li {
  border-bottom: 1px solid #f0f0f0;
}

ul.sol-ana-kategori > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  color: #111;
  /* Simsiyah, net başlık */
  font-size: 16px;
  font-weight: 800;
  /* Çok kalın */
  text-decoration: none;
  text-transform: uppercase;
  /* Büyük harf ile vurgu */
  letter-spacing: 0.5px;
}

ul.sol-ana-kategori > li > a:hover {
  color: #e00000;
  background-color: #fcfcfc;
}

/* -----------------------------------------------------------
   SEVİYE 2: ALT KATEGORİ (Örn: KONUT)
   ----------------------------------------------------------- */
/* Burası bir kapsayıcı, soldan çizgi burada başlıyor */
ul.sol-ana-kategori > li > ul.sol-alt-kategori {
  margin: 0;
  padding: 0px 0;
  background-color: #fcfcfc;
  /* Hafif gri zemin */
  border-top: 1px solid #eee;
}

ul.sol-ana-kategori > li > ul.sol-alt-kategori > li > a {
  display: flex;
  align-items: center;
  padding: 12px 20px 12px 30px;
  /* Soldan 30px içeride */
  font-size: 14px;
  font-weight: 700;
  /* Kalın */
  color: #333;
  text-decoration: none;
  position: relative;
  transition: all 0.2s;
  border-left: 3px solid transparent;
  /* Sol vurgu çizgisi */
}

/* Seviye 2 İkonu */
ul.sol-ana-kategori > li > ul.sol-alt-kategori > li > a::before {
  content: "\f105";
  /* FontAwesome/Uicons ok işareti */
  font-family: "uicons-regular-rounded" !important;
  position: absolute;
  left: 10px;
  /* En sola ikonu koy */
  font-size: 14px;
  color: #bbb;
  font-weight: normal;
}

ul.sol-ana-kategori ul.sol-alt-kategori li a::before {
  font-family: "uicons-regular-rounded" !important;
  margin-right: 7px;
  font-weight: normal;
}

ul.sol-ana-kategori ul.sol-alt-kategori li.satilik a::before {
  content: "\e27c";
}

ul.sol-ana-kategori ul.sol-alt-kategori li.kiralik a::before {
  content: "\e893";
}

ul.sol-ana-kategori ul.sol-alt-kategori li.devren-satilik a::before {
  content: "\e896";
}

ul.sol-ana-kategori ul.sol-alt-kategori li.devren-kiralik a::before {
  content: "\e888";
}

ul.sol-ana-kategori > li > ul.sol-alt-kategori > li > a:hover {
  color: #e00000;
  background-color: #fff;
  border-left-color: #e00000;
  /* Sol çizgi kırmızı olur */
}

ul.sol-ana-kategori > li > ul.sol-alt-kategori > li > a:hover::before {
  color: #e00000;
}

/* -----------------------------------------------------------
   SEVİYE 3: ALTIN ALTI (Örn: SATILIK)
   ----------------------------------------------------------- */
/* Önemli: Sol tarafa DİKEY KILAVUZ ÇİZGİSİ ekliyoruz */
ul.sol-ana-kategori > li > ul.sol-alt-kategori > li > ul.sol-alt-kategori {
  margin-left: 30px;
  /* Üst kategorinin hizasından başla */
  border-left: 1px solid #e6e6e6;
  /* İŞTE BU ÇİZGİ HİYERARŞİYİ BELLİ EDER */
  padding: 0;
  background: transparent;
}

ul.sol-ana-kategori > li > ul.sol-alt-kategori > li > ul.sol-alt-kategori > li {
  border: none;
}

ul.sol-ana-kategori
  > li
  > ul.sol-alt-kategori
  > li
  > ul.sol-alt-kategori
  > li
  > a {
  display: flex;
  align-items: center;
  /* Soldan boşluk artıyor (Merdiven etkisi) */
  padding: 7px 15px 7px 20px;
  font-size: 14px;
  font-weight: 600;
  /* Biraz daha ince */
  color: #555;
  text-decoration: none;
  position: relative;
}

/* Seviye 3'te ikon yerine tire (-) veya nokta */
ul.sol-ana-kategori
  > li
  > ul.sol-alt-kategori
  > li
  > ul.sol-alt-kategori
  > li
  > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  /* Yatay küçük çizgi */
  height: 1px;
  background-color: #e6e6e6;
  /* Dikey çizgiyle birleşir */
  transform: translateY(-50%);
}

ul.sol-ana-kategori
  > li
  > ul.sol-alt-kategori
  > li
  > ul.sol-alt-kategori
  > li
  > a:hover {
  color: #e00000;
  background-color: transparent;
}

ul.sol-ana-kategori
  > li
  > ul.sol-alt-kategori
  > li
  > ul.sol-alt-kategori
  > li
  > a:hover::before {
  background-color: #e00000;
  /* Yatay çizgi kırmızılaşır */
}

/* -----------------------------------------------------------
   SEVİYE 4: EN ALTIN ALTI (Örn: DAİRE, VİLLA)
   ----------------------------------------------------------- */
ul.sol-ana-kategori
  > li
  > ul.sol-alt-kategori
  > li
  > ul.sol-alt-kategori
  > li
  > ul {
  margin-left: 20px;
  /* Biraz daha içeri */
  border-left: 2px solid #e6e6e6;
  /* Çizgi devam ediyor */
  padding: 0;
  list-style: none;
}

ul.sol-ana-kategori
  > li
  > ul.sol-alt-kategori
  > li
  > ul.sol-alt-kategori
  > li
  > ul
  > li
  > a {
  display: flex;
  align-items: center;
  padding: 8px 10px 8px 20px;
  /* İyice sağa kaydı */
  font-size: 13px;
  font-weight: 400;
  /* Normal incelik */
  color: #666;
  text-decoration: none;
  position: relative;
}

/* Seviye 4 bağlantı çizgisi */
ul.sol-ana-kategori
  > li
  > ul.sol-alt-kategori
  > li
  > ul.sol-alt-kategori
  > li
  > ul
  > li
  > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 2px;
  background-color: #e6e6e6;
  transform: translateY(-50%);
}

ul.sol-ana-kategori
  > li
  > ul.sol-alt-kategori
  > li
  > ul.sol-alt-kategori
  > li
  > ul
  > li
  > a:hover {
  color: #e00000;
  background-color: #fff5f5;
  /* Çok hafif arka plan */
  border-radius: 4px;
}

ul.sol-ana-kategori
  > li
  > ul.sol-alt-kategori
  > li
  > ul.sol-alt-kategori
  > li
  > ul
  > li
  > a:hover::before {
  background-color: #e00000;
}

/* --- SAYAÇLAR (Badge) --- */
.kategori-ilan-sayi {
  margin-left: auto;
  font-size: 11px;
  background-color: #f1f1f1;
  color: #888;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}

/* Hoverda sayaç rengi */
a:hover .kategori-ilan-sayi {
  background-color: #e00000;
  color: #fff;
}

/* Genel Stil */
.kategori-ilan {
  flex: 1;
}

.liste-tab .liste1 li a .kategori-ilan-sayi {
  margin-left: auto;
  font-size: 12px;
  background: #f1f1f1;
  width: auto;
  height: 21px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  border-radius: 35px;
  font-weight: 700;
  position: absolute;
  border: 1px solid #f1f1f1 !important;
  right: 28px;
}

.liste-tab .liste1 li a:hover .kategori-ilan-sayi {
  background: #fff !important;
  color: #e00000 !important;
  border: 1px solid #e00000 !important;
}

.custom-control-input:checked {
  color: red;
  /* Metin rengini kırmızı yap */
  background: red;
}

/* width */

.liste-tab .select-bolumu .checkbox-alani::-webkit-scrollbar {
  width: 8px;
}

/* Track */

.liste-tab .select-bolumu .checkbox-alani::-webkit-scrollbar-track {
  background: #fff;
  border: 1px solid #f1f1f1;
  position: relative;
  top: 0;
  left: 0;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  cursor: pointer;
}

.liste-tab .select-bolumu .checkbox-alani::-webkit-scrollbar-thumb {
  border: 0;
  background: #a2a2a2;
  border-radius: 5px;
  cursor: pointer;
}

.liste-tab .select-bolumu .checkbox-alani::-webkit-scrollbar-thumb:hover {
  background: #555;
  cursor: pointer;
}

.liste-tab .select-bolumu .input-alani {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.liste-tab .select-bolumu .input-alani span {
  color: #bdbdbd;
}

.liste-tab .select-bolumu .input-alani .kelime-input {
  display: inline-block;
  width: 100%;
  border: 1px solid #c0c0c0;
  height: 32px;
  font-size: 12px;
  line-height: 16px;
  padding: 5px;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  margin-right: 5px;
}
/**/

/*firmalar-web-site-page*/

.firma-tab {
  width: 100%;
  height: auto;
  border: none;
}

.firma-tab .nav-item:first-child {
  border-top: 0px;
}

.firma-tab .nav-item:first-child .nav-link {
  width: 100%;
  padding-top: 0px;
}

.firma-tab .nav-item:last-child .nav-link {
  width: 100%;
  padding-bottom: 0px;
}

.firma-tab .nav-item {
  width: 100%;
  border-top: 1px solid #e9e9e9;
}

.firma-tab .nav-item .nav-link {
  width: 100%;
  padding: 12px 0px;
  border: none;
  color: #231f20;
  font-weight: 500;
}

.firma-tab .nav-item .nav-link.active {
  color: #d90000;
  font-weight: 700;
}

.firma-tab .nav-item .nav-link:hover {
  color: #d90000;
  font-weight: 700;
}

.firma-tab .nav-item .nav-link span {
  margin-right: 5px;
}

.firmalar-web-site-page .logolar {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fbfbfb;
  border: solid 1px #ebe9e9;
}

.firmalar-web-site-page .logolar img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

.firmalar-web-site-page .dd-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.firmalar-web-site-page .dd {
  max-width: 100%;
}

.firmalar-web-site-page .dd-list .dd-item {
  overflow: hidden;
  position: relative;
  overflow: hidden;
  position: relative;
  width: 23.9%;
  margin: 5px;
}

.firmalar-web-site-page .dd-list .dd-item .dd-handle {
  padding: 8px 8px;
  height: 130px;
  width: 100%;
  line-height: 30px;
}

.firmalar-web-site-page .dd-list .dd-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.firmalar-web-site-page .dd-list .dd-item .silbuton {
  font-size: 12px;
  background-color: #ff4d4d;
  border: none;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  height: auto !important;
  line-height: 1 !important;
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 3px 3px;
  width: auto !important;
  font-size: 11px;
  right: 3px;
  top: 3px;
  text-indent: 0%;
  white-space: inherit;
}

.firmalar-web-site-page .dd-list .dd-item .silbuton:hover {
  background-color: #e60000;
}

.firmalar-web-site-page .dd-item img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
}

.firmalar-web-site-page .dd-handle {
  min-height: 130px !important;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 10px;
  box-sizing: border-box;
}

/*İlan Detay Son*/

.ilanekle-denizliemlak {
  width: 100%;
}

.ilanekle-denizliemlak .btn {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ilanekle-denizliemlak .btn i {
  font-weight: 700;
  margin-right: 10px;
  font-size: 15px;
}

.ilanekle-denizliemlak .custom-radio {
  position: relative;
  padding-left: 40px;
  border: solid 1px;
  /* İkon için yer ayır */
}

/* "Evet" seçeneği aktif olduğunda */
#gorunsunEvet:checked + .custom-radio {
  background-color: #28a745;
  /* Yeşil arka plan */
  border-color: #28a745;
  /* Sınır rengi */
  color: #fff;
  /* Beyaz metin rengi */
}

/* "Hayır" seçeneği aktif olduğunda */
#gorunsunHayir:checked + .custom-radio {
  background-color: #e00000;
  /* Kırmızı arka plan */
  border-color: #e00000;
  /* Sınır rengi */
  color: #fff;
  /* Beyaz metin rengi */
}

/* Hover efekti */
.ilanekle-denizliemlak .custom-radio:hover {
  cursor: pointer;
  /* Üzerine gelindiğinde imleci değiştirme */
}

.ilanekle-denizliemlak .custom-radio:hover .btn {
  background-color: #f8d7da;
  /* Hayır seçeneği hover durumu */
}

.ilanekle-denizliemlak .btn-outline-danger {
  color: #e00000;
}

/* Üyelik Son*/

footer {
  width: 100%;
  background: #0f172a;
}

footer .footer-orta {
  display: block;
}

.renkbg2 {
  background: #1d1d1d !important;
  color: #fff;
}

footer .footer-liste {
  width: 100%;
  height: auto;
}

footer .footer-liste span.baslikk {
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
  text-transform: uppercase;
  font-size: 16px;
}

footer .footer-liste li:first-child {
  margin-top: 0px;
}

footer .footer-liste li {
  width: 100%;
  height: auto;
  margin-top: 2px;
  list-style: none;
}

footer .footer-liste li a {
  color: #fff;
  opacity: 80%;
  font-weight: 300;
  font-size: 14px;
}

footer .footer-alt {
  width: 100%;
  height: auto;
  background: rgb(0, 8, 16);
  padding: 20px 0px;
}

footer .footer-alt li {
  list-style: none;
  display: inline-block;
}

footer .footer-alt li a {
  color: #fff;
  padding: 0px 50px;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
}

footer .footer-alt li a i {
  padding-right: 10px;
}

footer .footer-bilgi {
  width: 100%;
  height: auto;
  background: #fff;
  padding: 20px 0px;
}

footer .sosyal {
  width: auto;
  display: flex !important;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

footer .sosyal li {
  display: inline-block;
  margin: 0 5px;
  list-style: none;
}

footer .sosyal li a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6a6868;
  color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  text-decoration: none;
  transition: all 0.2s ease;
}

footer .sosyal li a:hover {
  background: #e00000;
  color: #fff;
}

.sayfabox {
  box-shadow: 0 0px 2px 0 rgba(34, 36, 38, 0.11) !important;
}

footer .footer-bilgi .sosyal li a:hover {
  background: #1a2b49;
}

footer .footer-bilgi .bilgi-baslik {
  margin-right: 16px;
}

footer .footer-firma {
  width: 100%;
  height: auto;
  padding: 20px 0px;
}

footer .footer-firma .footer-text {
  font-size: 15px;
  opacity: 80%;
  border-right: 1px solid #ccc;
  margin-right: 15px;
  padding-right: 15px;
}

footer .footer-emlak-logo {
  height: 57px;
  width: auto;
  margin: 0px auto;
  display: block;
}

footer .footer-firma .footer-logo {
  height: 21px;
  display: flex;
  align-items: center;
}

footer .footer-firma .footer-logo img {
  height: 100%;
  width: auto;
}

/* --- FOOTER SÖZLEŞMELER VE LİNKLER --- */
.footer-sozlesmeler {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px 25px; /* Mobilde alt alta binerse 15px, yan yanayken 25px boşluk bırakır */
}

.footer-sozlesmeler li {
    list-style: none;
    position: relative;
}

/* Linklerin arasındaki şık ayırıcı çizgi (Son eleman hariç) */
.footer-sozlesmeler li:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -15px; /* Çizgiyi ortalamak için boşluğun yarısı kadar sağa atıyoruz */
    color: rgba(255, 255, 255, 0.2);
    font-size: 13px;
    top: 50%;
    transform: translateY(-50%);
}

.footer-sozlesmeler li a {
    color: #ffffff;
    opacity: 0.8;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.footer-sozlesmeler li a:hover {
    opacity: 1;
    color: #d90000;
}

/* Mobilde ayırıcı çizgileri gizle ki alt alta düştüğünde kötü durmasın */
@media (max-width: 768px) {
    .footer-sozlesmeler li:not(:last-child)::after {
        display: none;
    }
}

.rg-image {
  height: 318px !important;
}

/*---*/

.card {
  margin-bottom: 15px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
}

.card .card-body-ic {
  padding: 20px;
  background: #f9f9f9;
}

.card-header {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
  border-bottom: 1px solid #e5e5e5;
}

/**/
/*page-content-uyelik*/

.page-content-uyelik .stepwizard-row:before {
  display: none;
}

.page-content-uyelik .stepwizard-step a {
  display: flex;
  align-items: center;
}

.page-content-uyelik .stepwizard-step a .icon {
  cursor: pointer;
  width: 33px;
  height: 33px;
  background: #dfdfdf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
}

.page-content-uyelik .stepwizard-step a p {
  margin-top: 0px !important;
  padding-left: 15px;
  cursor: pointer;
  font-size: 16px;
  color: #a6a6a6;
  font-weight: 700;
  padding-left: 20px;
  margin-top: 1px;
}

.page-content-uyelik .stepwizard-step a.active p {
  color: #434343;
}

.page-content-uyelik .stepwizard-step a.active .icon {
  color: #fff;
  background: #e00000;
}

.page-content-uyelik .stepwizard-step {
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
}

.page-content-uyelik .stepwizard-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-content-uyelik .stepwizard-step:after {
  width: 80px;
  height: 1px;
  background: #dfdfdf;
  position: relative;
  content: "";
  margin: 3px 10px 0 10px;
}

.page-content-uyelik .stepwizard-step:nth-child(2)::after {
  display: none;
}

.page-content-uyelik .stepwizard-step .btn {
  width: 46px;
  height: 46px;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  width: 33px;
  height: 33px;
  background: #dfdfdf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-color: #dfdfdf;
}

.page-content-uyelik .stepwizard-step .btn-default {
  border-color: #dfdfdf;
  color: #fff !important;
  cursor: default;
}

.page-content-uyelik .stepwizard-step .btn-yesil {
  border-color: #f00 !important;
  color: #fff !important;
  background: #f00 !important;
}

.page-content-uyelik .list-group-item {
  align-items: center;
  color: #434343;
  font-size: 14px;
  background: #fff;
  height: 38px;
  border: 1px solid #cbcbcb;
  border-radius: 5px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  transition: all 0.12s linear;
  margin-bottom: 3px;
}

.page-content-uyelik .list-group-item.active {
  background: #e00000;
  color: #fff;
  font-weight: 700;
  border-color: #e00000;
}

.page-content-uyelik .list-group-item:hover {
  background: #e00000;
  color: #fff;
  font-weight: 700;
  border-color: #e00000;
}

/* --- SEÇİLEN KATEGORİ ÇUBUĞU --- */
.secilen-kategori-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--primary, #d90000); /* Sol tarafta kırmızı vurgu çizgisi */
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}

.secilen-kategori-bar .kategori-bilgi {
  display: flex;
  align-items: center;
  gap: 12px;
}

.secilen-kategori-bar .kategori-icon {
  width: 38px;
  height: 38px;
  background-color: #ffe4e4;
  color: var(--primary, #d90000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.secilen-kategori-bar .kategori-metin {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.secilen-kategori-bar .etiket {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  font-weight: 600;
}

.secilen-kategori-bar .kategori-adi {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}

.secilen-kategori-bar .btn-kategori-degistir {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary, #d90000);
  background-color: #ffffff;
  border: 1px solid #fecdd3;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.secilen-kategori-bar .btn-kategori-degistir:hover {
  background-color: var(--primary, #d90000);
  border-color: var(--primary, #d90000);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(217, 0, 0, 0.2);
}

.page-content-uyelik .ilanozellik_sec .card {
  margin-bottom: 15px;
  background: #fff;
  border: none;
}

.page-content-uyelik .form-group.tarihi-yenile {
  display: flex;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 15px;
  border-top: 1px solid #ececec;
  padding-top: 12px;
}

.page-content-uyelik .form-group.tarihi-yenile label {
  margin-bottom: 0px;
}

.page-content-uyelik .form-group.tarihi-yenile .tarihi-yenile-btn {
  display: flex;
  font-weight: 700;
  color: #d90000;
  text-decoration: underline;
}

.page-content-uyelik .form-group.tarihi-yenile .tarihi-yenile-btn i {
  margin-right: 10px;
}

.page-content-uyelik .form-group.tarihi-yenile .form-control {
  width: auto;
  margin: 0px 15px;
  font-weight: 700;
  text-align: center;
  max-width: 134px;
}

.page-content-uyelik label {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600 !important;
  font-size: 13px;
  color: #333;
  transition: 0.4s ease;
}

.page-content-uyelik .parsley-errors-list {
  margin: 0px;
}

.page-content-uyelik label:hover {
  color: #434343;
}

.page-content-uyelik .form-group {
  margin-top: 11px;
}

.highlight-field {
  background-color: #f0fff0;
  border: 2px solid #28a745;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* Opsiyonel: Ä°Ã§indeki label'Ä±n rengini de koyulaÅŸtÄ±rabilirsiniz */
.highlight-field label {
  font-weight: bold;
  color: #237a3b;
}

.highlight-field .form-control {
  border-color: #28a74533;
}

/* --- SOFT BÖLÜM AYRICI --- */
.bolum-ayrac {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #475569; /* Slate gri tonu */
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Sağ tarafa uzanan ince çizgi */
.bolum-ayrac::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #e2e8f0; /* Çok hafif modern çizgi */
}

/* İkonun rengini yumuşatma */
.bolum-ayrac i {
  color: var(--primary, #d90000);
  font-size: 13px;
  opacity: 0.85;
}

.page-content-uyelik .form-group2 {
  margin-bottom: 15px;
}

.page-content-uyelik .form-group.active {
  padding: 20px;
}

.page-content-uyelik .e-posta-uyarii {
  border-radius: 5px;
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.page-content-uyelik .e-posta-uyarii.greenn {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.page-content-uyelik .e-posta-uyarii.redd {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.page-content-uyelik .e-posta-uyarii i {
  margin-right: 5px;
}

.page-content-uyelik .e-posta-uyarii i::before {
  font-weight: 600;
}

.page-content-uyelik #accordion .card-header:hover {
  background-color: #e3e5e6;
}

.page-content-uyelik .custom-control .custom-control-label {
  margin-bottom: 0px;
}

.page-content-uyelik textarea.form-control {
  height: auto;
}

.page-content-uyelik .subekalin {
  font-weight: 700;
}

.ck-editor__editable_inline {
  height: 300px;
}

#imagePreview img {
  max-width: 100px;
  max-height: 100px;
  margin: 5px;
}

/**/

.header-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0px;
}

.header-title2 {
  color: #434343;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0px;
}

.header-small {
  color: #434343;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 0px;
}

.kullanici_resim_sec {
  line-height: 24px;
  width: auto;
  height: 163px;
  border: dashed 1px #a9a9a9;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex !important;
  flex-direction: column !important;
  font-size: 18px !important;
  padding: 0px 50px;
  border-radius: 5px;
}

.kullanici_resim_sec .resimsecc:before {
  content: "\e8f6";
  font-family: "Linearicons";
  display: block;
  text-align: center;
  font-size: 40px;
  color: #e00000;
  line-height: 1;
  margin-bottom: 15px;
}

.kullanici_resim_sec .resimsecc.secildi {
  color: #e00000;
}

.kullanici_resim_sec::after {
  content: "Resim Seç";
  user-select: none;
  align-items: center;
  color: #434343;
  font-size: 14px;
  background: #fff;
  height: 38px;
  border: 1px solid #cbcbcb;
  border-radius: 4px;
  padding: 12px;
  transition: all 0.12s linear;
  display: inline-flex;
  font-weight: 500;
  cursor: pointer;
  margin-top: 10px;
}

.kullanici_resim_sec i {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 15px;
}

.custom-file-label::after {
  content: "Resim Seç";
  line-height: 24px;
}

/*dogrulama_gonder*/

.dogrulama_gonder {
  width: 100%;
  height: auto;
  min-height: 300px;
}

.dogrulama_gonder .icon {
  width: 100%;
  height: auto;
  font-size: 50px;
  color: #e00000;
}

.dogrulama_gonder .container {
  border-radius: 2px;
  border: solid 1px #dedede;
  background-color: #fff;
  padding: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 620px !important;
  text-align: center;
}

.dogrulama_gonder h3 {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 15px;
}

.dogrulama_gonder .mail {
  text-decoration: underline;
  color: #e00000;
  font-weight: 700;
}

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

.a2a_svg,
.social-yazdir {
  height: 28px !important;
  line-height: 28px !important;
  width: 28px !important;
  /*background: #666 !important;*/
  border-radius: 5px !important;
}

/*
.form-control,
.form-select {
  height: 41px;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  background-color: #fafafa;
  transition: all 0.22s ease;
}
*/

/* =========================================================
   FORM STYLES
   ========================================================= */
.form-group {
  margin-bottom: 0;
}

.form-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
  display: block;
}

.form-label .required {
  color: var(--primary);
  margin-left: 2px;
}

.form-control,
.form-select {
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-family: inherit;
  color: var(--text-primary);
  background-color: #fafbfc;
  transition: var(--transition-fast);
  width: 100%;
  outline: none;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: none;
}

.form-control::placeholder {
  color: var(--text-light);
  font-size: 12px;
}

.form-control[readonly] {
  background: #f4f6f8;
  color: var(--text-secondary);
  cursor: default;
}

.input-group-text {
  background: #f4f6f8;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  padding: 0 10px;
}

/* 1. HATA DURUMU (Invalid): Input hatalıysa yanındaki span'ın border'ı da kırmızı olsun */
.was-validated .input-group:has(.form-control:invalid) .input-group-text,
.input-group:has(.form-control.is-invalid) .input-group-text {
  border-color: var(--bs-form-invalid-border-color, #dc3545) !important;
  color: var(
    --bs-form-invalid-border-color,
    #dc3545
  ); /* Hata durumunda +90 yazısı da kırmızı olsun (opsiyonel) */
}

/* 2. FOCUS DURUMU (Bonus): Input'a tıklandığında span da aynı focus border rengini alsın ki bütünlük bozulmasın */
.input-group:has(.form-control:focus) .input-group-text {
  border-color: var(
    --primary
  ); /* Temanızın form focus rengi neyse buraya onu yazabilirsiniz */
}

/* 3. GENEL GÖRÜNÜM: Span'ı, sizin 36px'lik form elemanlarınızla aynı hizaya ve renge getirelim */
.input-group-text {
  height: 36px;
  border: 1px solid var(--border); /* Sizin kendi border değişkeniniz */
  background-color: #fafbfc; /* Inputlarla aynı arka plan */
  font-size: 12.5px; /* Inputlarla aynı font boyutu */
  display: flex;
  align-items: center;
}

/* --- BAŞARILI ALANLAR İÇİN YEŞİL TİK (TICK) EFEKTİ --- */

/* 1. Normal Inputlar İçin */
.form-control.parsley-success,
.form-control.is-valid {
  border-color: var(--success, #059669) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23059669' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right calc(0.375em + 0.1875rem) center !important;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) !important;
  padding-right: calc(1.5em + 0.75rem) !important;
}

/* 2. Select (Seçim) Kutuları İçin
   (Hem varsayılan oku korur hem de soluna yeşil tik yerleştirir) */
.form-select.parsley-success,
.form-select.is-valid {
  border-color: var(--success, #059669) !important;
  background-image:
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"),
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23059669' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
  background-position:
    right 0.75rem center,
    right 2.25rem center !important;
  background-size:
    16px 12px,
    calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) !important;
  background-repeat: no-repeat, no-repeat !important;
  padding-right: 4rem !important;
}

/* Parsley'in varsayılan yeşil arka plan gölgesini veya yazı renklerini sıfırlamak için (Opsiyonel) */
.form-control.parsley-success:focus,
.form-select.parsley-success:focus {
  border-color: var(--success, #059669) !important;
  box-shadow: none;
}

/* BAŞARILI DURUM (Valid): Input geçerliyse yanındaki span'ın border'ı da yeşil olsun */
.was-validated .input-group:has(.form-control:valid) .input-group-text,
.input-group:has(.form-control.is-valid) .input-group-text {
  border-color: var(--bs-form-valid-border-color, #198754) !important;
  color: var(
    --bs-form-valid-border-color,
    #198754
  ); /* +90 yazısı da yeşil olsun derseniz kalsın, istemezseniz bu satırı silebilirsiniz */
}

/* --- EVRENSEL VE SELECT2 UYUMLU YEŞİL TİK --- */

/* 1. Normal Girdiler İçin (Dolunca yeşil olur) */
.form-control.is-valid-custom {
  border-color: var(--success, #059669) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23059669' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right calc(0.375em + 0.1875rem) center !important;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) !important;
  padding-right: calc(1.5em + 0.75rem) !important;
}

/* 2. Standart Seçim Kutuları İçin */
.form-select.is-valid-custom {
  border-color: var(--success, #059669) !important;
  background-image:
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"),
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23059669' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
  background-position:
    right 0.75rem center,
    right 2.25rem center !important;
  background-size:
    16px 12px,
    calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) !important;
  background-repeat: no-repeat, no-repeat !important;
  padding-right: 4rem !important;
}

/* 3. Özel Select2 Kutuları İçin (İl, İlçe, Mahalle vb.) */
.select2-container .select2-selection.is-valid-custom-select2 {
  border-color: var(--success, #059669) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23059669' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 2.25rem center !important; /* Select2 ok işaretinin soluna koyar */
  background-size: 15px 15px !important;
  padding-right: 3.5rem !important;
}

.input-group-text {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  transition: var(--transition-fast);
}

textarea.form-control {
  height: auto;
}

.input-group input[type="file"] {
  height: 34px;
  padding: 9px 15px;
}

/* Input Group İçi Köşe (Radius) ve Boşluk Düzeltmesi */
.input-group .input-group-text {
  /* +90'ın sol kavisleri kalsın, sağ kavisleri sıfırlansın (İnputa yapışması için) */
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-top-left-radius: var(--radius-sm, 5px) !important;
  border-bottom-left-radius: var(--radius-sm, 5px) !important;
}

.select2-container .select2-selection--single {
  height: 36px !important;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #444;
  line-height: 25px !important;
}

.select2-container--default .select2-selection--single {
  border-radius: var(--radius-sm) !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 33px !important;
}

.renksecimi {
  position: relative;
}

.renksecimi .colorpick-eyedropper-input-trigger {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.ilaneke-sabit-btn {
  position: fixed;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  display: block;
  height: 70px !important;
  font-size: 15px;
  font-weight: 700;
  padding: 0px 10px !important;
}

.ilaneke-sabit-btn i {
  display: block;
}

.dropdown-item {
  font-size: 14px;
}

.modal-title {
  font-size: 18px;
  font-weight: 600;
}

.listing-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 1200px) {
  .listing-page-grid {
    grid-template-columns: 300px 1fr;
    gap: 24px;
  }

  .filtre-header-sol {
    align-items: center;
    display: flex;
    line-height: 1;
  }

  .filtre-header-sag {
    margin-left: auto;
  }
}

.sag-kolon-icerik {
  min-width: 0;
}

/* ==============================================================
   DASHBOARD HEADER - KAPSÜLLENMİŞ CSS
   ============================================================== */
.dashboard-header {
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 12px 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

/* 1. Satır: Kapsam İlanlar & Sıralama */
.dashboard-header .header-row-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 8px;
}

.dashboard-header .scope-pills {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dashboard-header .scope-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 13px;
  font-family: inherit;
  font-weight: 500;
  color: var(--text-gray, #6b7280);
  background: #f8fafc;
  border: 1px solid var(--border-color, #e5e7eb);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  outline: none;
}

.dashboard-header .scope-pill i {
  font-size: 16px;
}

.dashboard-header .scope-pill .num {
  background: #e2e8f0;
  color: var(--text-dark, #202224);
  padding: 1px 6px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}

.dashboard-header .scope-pill:hover {
  border-color: #cbd5e1;
  color: var(--text-dark, #202224);
}

.dashboard-header .scope-pill.active {
  background: #ffffff;
  border-color: var(--primary-red, #e01b22);
  color: var(--primary-red, #e01b22);
  font-weight: 600;
}

.dashboard-header .scope-pill.active .num {
  background: #fde8e8;
  color: var(--primary-red, #e01b22);
}

.dashboard-header .sort-select-compact {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid var(--border-color, #e5e7eb);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-gray, #6b7280);
}

/* 2. Satır: Bütünleşik Filtre Toolbarı */
.dashboard-header .unified-filter-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
}

.dashboard-header .filter-section {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dashboard-header .filter-section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--secondary, #9ca3af);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 2px;
}

/* Aktif İlan Filtre Butonu */
.dashboard-header .badge-active {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #059669;
  background: #ecfdf5;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid #a7f3d0;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.dashboard-header .badge-active:hover,
.dashboard-header .badge-active.active {
  background: #10b981;
  color: #ffffff;
  border-color: #059669;
}

/* Pasif İlan Filtre Butonu */
.dashboard-header .badge-passive {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #dc2626;
  background: #fef2f2;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-family: inherit;
  font-weight: 600;
  border: 1px solid #fecdd3;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.dashboard-header .badge-passive:hover,
.dashboard-header .badge-passive.active {
  background: #ef4444;
  color: #ffffff;
  border-color: #dc2626;
}

/* Ayıraç */
.dashboard-header .toolbar-divider {
  width: 1px;
  height: 18px;
  background: #e2e8f0;
  margin: 0 2px;
}

/* Entegrasyon (Portal) Filtre Butonları */
.dashboard-header .portal-btn-tag {
  border: 1px solid transparent;
  background: transparent;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.dashboard-header .portal-btn-tag.tag-on {
  color: #059669;
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.dashboard-header .portal-btn-tag.tag-on:hover,
.dashboard-header .portal-btn-tag.tag-on.active {
  background: #10b981;
  color: #ffffff;
  border-color: #059669;
}

.dashboard-header .portal-btn-tag.tag-off {
  color: #d97706;
  background: #fffbeb;
  border-color: #fde68a;
}

.dashboard-header .portal-btn-tag.tag-off:hover,
.dashboard-header .portal-btn-tag.tag-off.active {
  background: #f59e0b;
  color: #ffffff;
  border-color: #d97706;
}

/*font_level_1*/

.kilitle {
  overflow: hidden;
}

.kilitle::before {
  content: "";
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #00000091;
  z-index: 1000;
}

.kilitle2::before {
  content: "";
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #00000091;
  z-index: 998;
}

/**/
/* KUTU GENEL */
.secilen-filtreler {
  background: #ffffff;
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 10px;
}

/* HEADER */
.secilen-filtreler__header {
  display: flex;
  align-items: center;
  padding: 10px 22px;
  background: linear-gradient(to right, #fff, #fff);
}

.secilen-filtreler__baslik {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-bottom: 0px;
}

.secilen-filtreler__count {
  font-size: 15px;
  color: #666;
  padding-left: 12px;
}

/* TEMİZLE */
.secilen-filtreler__temizle {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: #d00000;
  padding: 6px 10px;
  border-radius: 5px;
  transition: 0.2s;
}

.secilen-filtreler__temizle:hover {
  background: #ffe4e4;
}

/* LİSTE */
.secilen-filtreler__liste {
  padding: 10px 20px 10px;
}

.filtre-listesi {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* FİLTRE ITEM */
.filtre-item {
  background: #fff;
  padding: 6px 12px;
  font-size: 12px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 5px;
  border: 1px solid #ff4d4d;
  box-shadow: 0 2px 6px rgba(255, 0, 0, 0.08);
  transition: 0.25s ease;
}

.filtre-item:hover {
  background: #fff5f5;
  border-color: #ff1c1c;
  transform: translateY(-1px);
}

/* ETİKET */
.filtre-item__etiket,
.filtre-item__etiket small {
  font-size: 12px;
  color: #333;
  font-weight: 500;
}

/* KALDIR IKONU */
.filtre-item__kaldir {
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  color: #d00000;
  transition: 0.2s;
}

.filtre-item__kaldir:hover {
  color: #a30000;
  transform: scale(1.15);
}

/*filtre-ilan-search*/

.filtre-ilan-search {
  height: auto;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.filtre-ilan-search .form-control {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 14px;
  background-color: #fff;
  color: #373636;
  font-weight: 500;
  border: none;
  height: 40px;
  padding: 0px 16px;
  display: flex;
  align-items: center;
  border: solid 1px #e5e5e5;
}

.filtre-ilan-search .ilan-ara {
  width: 82px;
  height: 40px;
  background: #e00000;
  border: none;
  color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  padding: 0px 0px;
}

.filtre-ilan-search .ilan-ara i {
  margin-right: 10px;
}

.ilanekle-duzenle-textarea {
  min-height: 339px;
}

/*iletisim-page*/

.iletisim-page {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.iletisim-page .btn {
  display: inline-flex;
}

.iletisim-page .bize-yaz {
  background: #28a745 !important;
  color: #fff;
  border-color: #28a745;
}

.iletisim-page .bize-yaz:hover {
  background: transparent !important;
  color: #1d1d1d !important;
  border-color: #1d1d1d !important;
}

.iletisim-page .iletisim-icon {
  height: 70px;
  margin-bottom: 35px;
}

.iletisim-page h2 {
  width: 100%;
  height: auto;
  position: relative;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 25px;
}

.iletisim-page h3 {
  width: 100%;
  height: auto;
  position: relative;
  font-size: 17px;
  font-weight: 400;
}

.iletisim-page b {
  font-weight: 700;
}

.iletisim-page .accordion {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 25px;
}

.iletisim-page .accordion .accordion-button {
  width: 100%;
  height: auto;
  position: relative;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 15px;
}

.accordion-button:not(.collapsed) {
  background: #e000001c;
  color: #e00000;
  box-shadow: none;
}

.iletisim-page .accordion .accordion-item {
  border-radius: 5px;
  overflow: hidden;
  border: solid 1px #e5e5e5;
}

.iletisim-page .iletisimliste {
  width: 100%;
  height: auto;
  padding: 0px;
  display: flex;
  justify-content: center;
  font-size: 15px;
}

.iletisim-page .iletisimliste li:first-child {
  margin-left: 0px;
}

.iletisim-page .iletisimliste li {
  width: auto;
  height: auto;
  list-style: none;
  margin-left: 25px;
}

.iletisim-page .iletisimliste li a {
  color: #000;
  font-weight: 500;
  text-decoration: underline;
}

/* Yan Yana Görünümü Son */

.spinner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.spinner-border {
  width: 3rem;
  height: 3rem;
  border-width: 0.4rem;
}

.loading-text {
  margin-top: 8px;
  font-size: 1.2rem;
  margin-left: 25px;
  margin-bottom: 0px;
  color: #c22d35;
  font-weight: bold;
  animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.renk1 {
  color: #e00000;
}

.renk2 {
  color: #28a745;
}

.btn-sm {
  height: auto;
  font-size: 12px;
  padding: 8px 16px;
}
.sabit-kaydet {
  position: fixed;
  right: 0px;
  top: 50%;
}

/* --- GENEL KART YAPISI --- */
.kullanici-warning {
  background: #ffffff;
  /* Hafif border ve modern gölge */
  border: 1px solid #f0f0f0;
  border-left: 5px solid #ffb700;
  /* Sol tarafta altın sarısı vurgu */
  border-radius: 5px;
  padding: 10px 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  color: #555;
  transition: transform 0.3s ease;
}

/* --- İKON ALANI --- */
.warning-icon-box {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #fff8e1;
  /* Çok açık sarı zemin */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  color: #ffb700;
  /* İkon rengi */
  box-shadow: 0 4px 10px rgba(255, 183, 0, 0.15);
}

.warning-icon-box svg {
  width: 22px;
  height: 22px;
}

/* --- METİN ALANI --- */
.warning-content {
  flex-grow: 1;
}

.warning-title {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 700;
  color: #2d3436;
  letter-spacing: -0.3px;
}

.warning-text {
  font-size: 14px;
  line-height: 1.6;
  color: #636e72;
  font-weight: 400;
}

/* --- İSTATİSTİK ROZETLERİ (SAYILAR) --- */
/* Standart sayı görünümü yerine şık etiketler */
.badge-stat {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  background: #f1f2f6;
  color: #2d3436;
  font-weight: 700;
  font-size: 13px;
  margin: 0 2px;
  border: 1px solid #e1e1e1;
}

/* Aktif ilan sayısı için yeşil tonlu özel stil */
.badge-stat.active-stat {
  background: #e8f5e9;
  color: #198754;
  border-color: #c8e6c9;
}

/* Pasif ilan sayısı için gri/kırmızı tonlu stil */
.badge-stat.passive-stat {
  background: #ffebee;
  color: #d90000;
  border-color: #ffcdd2;
}

/* Mobil uyumluluk için ufak ayar */
@media (max-width: 576px) {
  .kullanici-warning {
    align-items: flex-start;
  }

  .warning-icon-box {
    margin-bottom: 12px;
  }
}

img.resim-yok-ilan {
  max-width: 100% !important;
  max-height: 100% !important;
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
}

/* Sıralanabilir öğe */
#sortable-list li {
  cursor: grab;
  /* Fareyi öğe üzerine getirdiğinde 'yakalama' imlecini göster */
  transition: transform 0.2s ease-in-out;
  /* Sürükleme sırasında yumuşak geçiş */
}

/* Sürüklenebilir öğe üzerine tıklanınca */
#sortable-list li:active {
  cursor: grabbing;
  /* Sürüklerken 'yakalanmış' imlecini göster */
}

/* Sürüklenme sırasında öğe üzerinde opaklık değişikliği */
#sortable-list li.dragging {
  opacity: 0.5;
  /* Sürüklenen öğeyi yarı şeffaf yap */
  transform: scale(1.05);
  /* Sürüklenen öğeyi biraz büyüt */
}

#sortable-list li.dragging .banner-listele-resim {
  border: 2px dashed #e00000;
  /* Noktalı kenarlık ekliyoruz */
  padding: 5px;
}

/* Placeholder (geçici yer tutucu) stilini belirliyoruz */
#sortable-list li.placeholder {
  border: 2px dashed #e00000;
  /* Noktalı kenarlık ekliyoruz */
  background-color: rgba(0, 123, 255, 0.1);
  /* Hafif mavi arka plan rengi */
  min-height: 100px;
  /* Yeterli yükseklik */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e00000;
  /* Yazı rengi mavi */
  font-size: 14px;
  text-align: center;
  font-weight: bold;
}

/* Sürüklenebilir öğe */
#sortable-list li {
  cursor: grab;
  /* Fareyi öğe üzerine getirdiğinde 'yakalama' imlecini göster */
  transition: transform 0.2s ease-in-out;
  /* Sürükleme sırasında yumuşak geçiş */
}

/* Sürüklenebilir öğe üzerine tıklanınca */
#sortable-list li:active {
  cursor: grabbing;
  /* Sürüklerken 'yakalanmış' imlecini göster */
}

/* Liste öğelerinin arasındaki mesafeyi ayarlama */
#sortable-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

/*sss*/

.sss {
  width: 100%;
  height: auto;
}

.sss .accordion-item {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 0px;
  border-color: #dee2e6 !important;
  font-weight: 500;
}

.sss .accordion-item:not(:first-of-type) {
  border-top: 1px solid #dee2e6 !important;
}

.sss .accordion-button {
  border-radius: 0px !important;
  font-weight: 600;
}

.sss .accordion-button .icon {
  margin-right: 5px;
}

.sss .accordion-item a {
  font-weight: 700;
  text-decoration: underline;
  color: #d90000;
}

.floating-buttons {
  position: fixed;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Butonlar arasındaki boşluk */
}

.floating-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f1f1;
  border: none;
  border-radius: 8px;
  padding: 10px 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.floating-button i {
  margin-right: 8px;
  /* İkon ile yazı arasındaki boşluk */
  font-size: 15px;
  /* İkon boyutu */
  display: flex;
  align-items: center;
}

.floating-button:hover {
  background-color: #007bff;
  color: white;
  transform: scale(1.05);
  /* Hafif büyüme efekti */
}

.floating-button.save {
  background-color: var(--success);
  /* Yeşil */
  color: white;
}

.floating-button.delete {
  background-color: var(--agent-red);
  /* Kırmızı */
  color: white;
}

.floating-button.cancel {
  background-color: #ffc107;
  /* Sarı */
  color: black;
}

.floating-button.save:hover {
  background-color: var(--success-hover);
}

.floating-button.delete:hover {
  background-color: var(--primary-dark);
}

.floating-button.cancel:hover {
  background-color: #e0a800;
}

/* --- SOFT CLEAN LIST (Minimalist & Compact) --- */
.soft-ilan-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* İlanlar arası ideal boşluk */
}

.yarimkalan-ilan {
  cursor: pointer;
  color: #dc2626;
  background: #fef2f2;
  border-radius: 5px;
  padding: 12px 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #dc2626;
  border: 1px solid #fecdd3;
}
.yarimkalan-ilan .yarimkalan-text {
  flex: 1;
}

.yarimkalan-ilan .menu_count {
  background: #d90000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 6px;
  line-height: 1;
  border-radius: 5px;
}

/* KART YAPISI */
.soft-ilan-card {
  display: flex;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  height: 125px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  /* Z-index'i animasyona sokma */
  cursor: pointer;
  transform: none !important;

  /* ÖNEMLİ 2: Pozisyon ve Başlangıç Katmanı */
  position: relative;
}

.soft-ilan-card.ortak_ilan_card .ortak-ilan-bilgi{
    background:#eff6ff;
    color: #d32f2f;
    background-color: #fff2f2;
     padding:4px 8px;
     border-radius:4px;
     font-size:11px;
     font-weight:600;
     border:solid 1px #d32f2f
}



.soft-ilan-card .denizliemlakvar {
  color: #059669;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 3px 6px;
  border-radius: 5px;
  font-size: 11px;
  align-items: center;
  font-weight: 600;
}

.soft-ilan-card .sahibindenvar {
  color: #d97706;
  background: #fffbeb;
  border: 1px solid #fde68a;
  padding: 3px 6px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  align-items: center;
}

.soft-ilan-card.not_var {
  height: 160px;
}

.text-emlak {
  color: #26ae61;
  font-weight: 600;
}

.text-danger {
  font-weight: 600;
}

.soft-ilan-card:hover,
.soft-ilan-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-color: #e5e5e5;
}

/* Pasif Durum */
.soft-ilan-card.durum-pasif {
  background: #fdfdfd;
}

.soft-ilan-card.durum-pasif img {
  filter: grayscale(100%);
  opacity: 0.4;
}

.soft-ilan-card.durum-pasif .soft-top-row,
.soft-ilan-card.durum-pasif .soft-top-row,
.soft-ilan-card.durum-pasif .soft-mid-row {
  opacity: 0.4;
}

.soft-ilan-card .dropdown-menu {
  z-index: 10000 !important;
  /* Menüyü her şeyin en önüne al */
  margin-top: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  /* Menüye biraz gölge verip havada gibi gösterelim */
}

/* 1. SOL: RESİM ALANI */
.soft-img-wrap {
  width: 170px;
  min-width: 170px;
  height: 100%;
  position: relative;
  background: #f8f9fa;
  /* Sadece sol köşeleri yuvarlat */
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  overflow: hidden;
  /* Resim kendi alanı dışına taşmasın */
  display: flex;
  align-items: center;
}

.soft-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

/* Resim yoksa devreye girecek class */
.soft-img-wrap img.resim-yok-ilan {
  object-fit: contain;
  /* Logoyu kesmeden sığdırır */
  padding: 20px;
  /* Kenarlardan boşluk bırakır, sıkışık durmaz */
  background-color: #f8f9fa;
  /* Arkaya gri bir zemin atar */
}

.soft-ilan-card:hover .soft-img-wrap img {
  transform: scale(1.05);
  /* Hafif zoom efekti */
}

/* 2. SAĞ: İÇERİK ALANI */
.soft-content-wrap {
  flex: 1;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* İçeriği dikey yay */
}

/* Üst Satır: Başlık ve Fiyat */
.soft-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.soft-title {
  font-size: 14px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 2 satırdan sonrasını kes */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.soft-price {
  font-size: 16px;
  font-weight: 800;
  color: #d90000;
  /* Soft Kırmızı */
  white-space: nowrap;
  background: #fff5f5;
  /* Çok hafif kırmızı zemin */
  padding: 4px 8px;
  border-radius: 6px;
}

/* Orta Satır: Kategori ve Konum */
.soft-mid-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.soft-category-badge {
  background: #edf2f7;
  color: #4a5568;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.soft-location {
  color: #718096;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Alt Satır: Danışman, Tarih ve Aksiyon */
.soft-bot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f7f7f7;
  padding-top: 8px;
  margin-top: 4px;
}

/* Ana Konteyner */
.soft-content-not {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f9fa;
  padding: 1px 8px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  margin-top: 6px;
}

/* Sol Kısım (Başlık ve İlan No) */
.soft-content-not .not-info {
  display: flex;
  align-items: center;
  gap: 12px;
  /* Başlık ve İlan no arasındaki boşluk */
}

/* Notum Başlığı */
.soft-content-not .not-title {
  font-size: 13px;
  font-weight: bold;
  color: #333;
}

/* İlan Numarası */
.soft-content-not .not-ilan-no {
  color: #666;
  background-color: #e9ecef;
  padding: 4px 8px;
  border-radius: 4px;
}

/* İlan Numarası */
.soft-content-not .not-ilan-text {
  font-size: 11px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Sağ Kısım (İkonlar) */
.soft-content-not .not-actions {
  display: flex;
  gap: 8px;
  /* İkonlar arası boşluk */
}

/* Ortak Buton Özellikleri */
.soft-content-not .action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  color: #666;
  transition: all 0.2s ease;
}

/* Düzenle Butonu Hover Efekti */
.soft-content-not .edit-btn:hover {
  background-color: #e0f2fe;
  /* Açık mavi arkaplan */
  color: #0284c7;
  /* Mavi ikon */
}

/* Sil Butonu Hover Efekti */
.soft-content-not .delete-btn:hover {
  background-color: #fee2e2;
  /* Açık kırmızı arkaplan */
  color: #dc2626;
  /* Kırmızı ikon */
}

.soft-meta-left {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 11px;
  color: #a0aec0;
}

.soft-agent {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  color: #4a5568;
}

.soft-meta-left span {
    line-height: 1;
}

/* Buton Grubu */
.soft-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-soft-action {
  background: transparent;
  border: 1px solid #e2e8f0;
  color: #718096;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-soft-action:hover {
  background: #2d3436;
  border-color: #2d3436;
  color: #fff;
}

.btn-incele {
  background: #f0fdf4 !important;
  border: 1px solid #10B981 !important;
  color: #059669 !important;
  font-weight: 600 !important;
  padding: 5px 13px !important;
  border-radius: 6px !important;
  font-size: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-incele:hover {
  background: #059669 !important;
  border-color: #059669 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.35) !important;
  transform: translateY(-1px) !important;
}

.btn-incele:hover i {
  transform: scale(1.15);
  transition: transform 0.2s ease;
}

.btn-incele:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2) !important;
}

/* Not İkonu */
.icon-soft-note {
  color: #f6ad55;
  cursor: help;
  font-size: 16px;
}

/**/

.soft-ilan-card {
  overflow: visible !important;
}

.soft-actions .dropdown {
  position: relative;
}

.soft-ilan-card .dropdown-menu {
  z-index: 999 !important;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #000;
  text-decoration: none;
  background-color: #f2f2f2;
}

.dropdown-item:hover {
    color: var(--agent-red);
}
.card.ilanozellik_sec .card {
  margin-bottom: 8px;
  border: 1px dashed #e4e4e4;
  padding-bottom: 20px;
  background: #fbfbfb;
  border-radius: 4px;
}

.card.ilanozellik_sec .card .card-header {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0px;
  display: block;
  border-bottom: 1px solid #e4e4e4;
  padding: 8px 16px;
}

.card.ilanozellik_sec .card .card-body {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0px;
  display: block;
}

.card.ilanozellik_sec .card-header h5 {
  font-size: 14px;
  font-weight: 700;
}

/* Ana kutu: Genişlik ve ferahlık */
.my-toast-popup {
  width: 560px !important;
  padding: 10px !important;
  border-radius: 12px !important;
  align-items: center !important;
  font-size: 12px !important;
  gap: 10px;
}

/* Başlık */
.my-toast-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  margin-bottom: 0px !important;
  color: #d90000;
}

.swal2-html-container {
  color: #000;
  font-weight: 600;
}

/* Mesaj metni: Butonla arasında mesafe bıraktık */
.my-toast-content {
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: #d90000;
  margin-bottom: 12px !important;
  /* Butonla metin arası boşluk */
  text-align: left !important;
}

/* Belge Yükle Butonu */
.my-toast-button {
  font-size: 12px !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  margin-top: 5px !important;
}

/* İkonun yerleşimi */
.my-toast-icon {
  margin-top: 5px !important;
  margin-right: 15px !important;
  min-width: 35px !important;
  height: 35px !important;
  margin-bottom: 0px !important;
  margin-left: auto !important;
}

.swal2-popup.swal2-toast .swal2-title {
  color: #d90000;
  font-weight: 600;
}

.my-toast-content .swal2-content {
  font-size: 12px !important;
}

#not_modal .modal-dialog,
#not_duzenle_modal .modal-dialog {
  max-width: 790px;
}
/* BoÅŸ Durum */
.empty-state-box {
  border: 1px dashed #dcdfe4;
  border-radius: 10px;
  padding: 60px 20px;
  text-align: center;
  background-color: #fafbfd;
}

.empty-state-box i {
  font-size: 40px;
  color: #26ae61;
  margin-bottom: 15px;
  display: block;
}

.notif-main-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.notif-top-bar {
  padding: 18px 24px;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #555;
}

.notif-top-bar i {
  font-size: 18px;
  margin-right: 8px;
  color: #666;
}

.text-green {
  color: #d90000;
  font-weight: 600;
}

.notif-inner-area {
  padding: 20px;
}

/* BOÅ DURUM (Empty State) TasarÄ±mÄ± */
.notif-empty-state {
  border: 1px dashed #dcdfe4;
  border-radius: 8px;
  padding: 80px 20px;
  text-align: center;
  background-color: #fafbfd;
  /* JS ile gÃ¶sterilecek */
}

.empty-icon-circle {
  width: 64px;
  height: 64px;
  background-color: #ebf5ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.empty-icon-circle i {
  font-size: 28px;
  color: #d90000;
  display: flex;
  align-items: center;
}

.empty-title {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin: 0 0 8px 0;
}

.empty-desc {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* BÄ°LDÄ°RÄ°M LÄ°STESÄ° VE SOLA KAYDIRMA (Swipe) TASARIMI */
.notif-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notif-swipe-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #eaeaea;
  background: #ff4d4f;
  /* Silme butonu arkaplanÄ± kÄ±rmÄ±zÄ± */
}

/* Sil Butonu (Arkada bekleyen) */
.notif-swipe-action {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-delete-notif {
  color: #fff;
  border: none;
  background: transparent;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  outline: none;
  justify-content: center;
}

.btn-delete-notif i {
  font-size: 20px;
  margin-bottom: 3px;
}

/* Bildirimin Kendisi (Ã–nde duran beyaz kart) */
.notif-item {
  display: flex;
  align-items: flex-start;
  padding: 16px;
  background: #fff;
  text-decoration: none;
  color: #333;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  touch-action: pan-y;
  /* Mobilde sadece dikey kaydÄ±rmaya izin ver (Sola kaydÄ±rmayÄ± biz JS ile yÃ¶neteceÄŸiz) */
}

/* OkunmamÄ±ÅŸ Bildirim Efekti */
.notif-item.unread {
  background: #f4fcf7;
  border-left: 4px solid #d90000;
}

.notif-item.unread .notif-title {
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notif-item.unread .notif-title::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #d90000;
  border-radius: 50%;
  margin-left: 10px;
  box-shadow: 0 0 5px rgba(26, 126, 68, 0.5);
}

.notif-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #444;
}

.notif-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.notif-date {
  font-size: 12px;
  color: #999;
  margin-top: 8px;
  display: block;
  font-weight: 500;
}

/* MasaÃ¼stÃ¼ cihazlarda fare ile Ã¼zerine gelince silme butonunu gÃ¶ster */
@media (hover: hover) {
  .notif-swipe-container:hover .notif-item {
    transform: translateX(-80px);
  }
}

/* Ä°kon ve Metin Ä°Ã§erikleri */
.notif-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 18px;
}

.notif-icon i {
  display: flex;
  align-items: center;
}

/* Renk VaryasyonlarÄ± */
.icon-down {
  background: #eef2fa;
  color: #4f8ef7;
}

.icon-removed {
  background: #fdf2f2;
  color: #d9534f;
}

.notif-content {
  flex: 1;
}

.notif-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}

.notif-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.notif-date {
  font-size: 11px;
  color: #999;
  margin-top: 8px;
  display: block;
}

/* Arka plan karartması */
.Popup_Sablon-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease; /* Daha hızlı açılma hissi için süre kısaltıldı */
}

/* Popup ana kutusu */
.Popup_Sablon-modal {
  background-color: #ffffff;
  width: 90%;
  max-width: 700px;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Aktif olunca çalışacak animasyon sınıfları */
.Popup_Sablon-overlay.show {
  display: flex;
  opacity: 1;
}
.Popup_Sablon-overlay.show .Popup_Sablon-modal {
  transform: scale(1);
}

/* Çarpı İkonu */
.Popup_Sablon-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(
    0,
    0,
    0,
    0.5
  ); /* Resim üzerinde beyaz çarpının okunması için siyah/şeffaf zemin */
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
  line-height: 1;
}
.Popup_Sablon-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: rotate(90deg);
}

/* Resim Alanı */
.Popup_Sablon-header {
  width: 100%;
  height: 280px; /* Resmin yüksekliği - İhtiyaca göre değiştirebilirsiniz */
  background-color: #f1f5f9;
  position: relative;
  padding: 10px;
}

.Popup_Sablon-header img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Resmi sündürmeden alana tam oturtur */
  display: block;
}

/* İçerik ve yazılar */
.Popup_Sablon-content {
  padding: 30px 25px;
  text-align: center;
}

.Popup_Sablon-title {
  margin: 0 0 12px 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
}

.Popup_Sablon-text {
  margin: 0 0 20px 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

.Popup_Sablon-text strong {
  color: #3b82f6;
  font-weight: 600;
}

/* Buton Grubu */
.Popup_Sablon-actions {
  display: flex;
  gap: 10px;
}

.Popup_Sablon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

/* Ana aksiyon butonu */
.Popup_Sablon-btn-primary {
  background: linear-gradient(
    135deg,
    #e11d48,
    #be123c
  ); /* Logonuzdaki kırmızı tonlarına uyumlu yapıldı */
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
}
.Popup_Sablon-btn-primary:hover {
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
  transform: translateY(-2px);
}

/* İkincil iptal butonu */
.Popup_Sablon-btn-secondary {
  background: #f1f5f9;
  color: #64748b !important;
}
.Popup_Sablon-btn-secondary:hover {
  background: #e2e8f0;
  color: #334155 !important;
}

/* --- SAĞ ALT SABİT BUTON CSS --- */
.Floating_Sablon_Btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(
    135deg,
    #e00000,
    #e00000
  ); /* Dikkat Çekici Kırmızı */
  color: #ffffff !important;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 8px;
  border-radius: 50px;
  text-decoration: none;
  z-index: 991;
  box-shadow: 0 10px 25px rgba(225, 29, 72, 0.4);
  transition: all 0.3s ease;
  /* Sürekli yayılan radar (pulse) animasyonu */
  animation: sablonPulse 2s infinite;
}

.Floating_Sablon_Btn:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 35px rgba(225, 29, 72, 0.6);
  animation: none; /* Üzerine gelince animasyon durur */
}

.Floating_Sablon_Icon {
  background: rgba(255, 255, 255, 0.25);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
}

.Floating_Sablon_Text {
  font-weight: 700;
  font-size: 0.85rem;
}

/* Radar Dalgalanma Animasyonu */
@keyframes sablonPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(225, 29, 72, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
  }
}

/* MOBİL UYUM: Mobilde alt menü ile çakışmaması için yukarı kaldırıldı */
@media (max-width: 1199px) {
  .Floating_Sablon_Btn {
    bottom: 90px; /* Alt mobil menünüzün üstünde durur */
    right: 20px;
    padding: 8px 16px 8px 8px;
  }
  .Floating_Sablon_Icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .Floating_Sablon_Text {
    font-size: 0.85rem;
  }
}

.page-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.page-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin: 0;
}

.page-title span {
  color: var(--primary);
}

.page-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 3px;
  margin-bottom: 0px;
}

/* ─── HEADER ─── */

/* ─── Firma Bilgileri ─── */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 55%, #0f3460 100%);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(224, 27, 34, 0.14);
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 28%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.09);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.75);
}

.company-card-glass {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 5px;
}
.company-logo-wrap {
  width: 83px;
  height: 40px;
  background: #fff;
  border-radius: 5px;
  overflow: visible;
  position: relative;
}
.company-logo-wrap img {
  height: 100%;
  object-fit: contain;
  max-width: 100%;
}
.logo-edit-btn {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border: 2px solid #1a1a2e;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.logo-edit-btn:hover {
  background: var(--primary-hover);
}
.logo-edit-btn i {
  color: #fff;
  font-size: 11px;
}

/* ─── SECTION CARD ─── */
.sc-icon {
  width: 36px;
  height: 36px;
  border-radius: 5px;
  font-size: 18px;
  border: solid 1px;
}
.sc-icon-red {
  background: var(--primary-light);
  color: var(--primary);
}
.sc-icon-blue {
  background: #eff6ff;
  color: #2563eb;
}

/* ─── BELGE KARTLARI ─── */
.belge-card {
  border: 1.5px solid #e5e7eb;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.22s ease;
}
.belge-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.belge-card-head {
  background: #fafbfc;
}

.badge-st {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.badge-st i {
  font-size: 13px;
}

.badge-green {
  background: #d1fae5 !important;
  color: #047857 !important;
  border: 1px solid #a7f3d0 !important;
}

.badge-blue {
  background: #dbeafe !important;
  color: #1d4ed8 !important;
  border: 1px solid #93c5fd !important;
}
.badge-gray {
  background: #f3f4f6 !important;
  color: #9ca3af !important;
  border: 1px solid #e5e7eb !important;
}

.belge-detail-label {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 500;
}
.belge-detail-value {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}
.belge-detail-value.empty {
  color: #6b7280;
  font-weight: 400;
  font-style: italic;
}

.btn-belge-upload {
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 12px;
  font-weight: 600;
}
.btn-belge-upload:hover {
  background: var(--primary-hover);
  color: #fff;
}

.btn-belge-view {
  background: #fff;
  color: #6b7280;
  border: 1.5px solid #e5e7eb;
  font-size: 12px;
  font-weight: 600;
}
.btn-belge-view:hover {
  color: #111827;
  border-color: #c9d0da;
}

/* Yüklenmemiş belge */
.belge-empty-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f3f4f6;
  font-size: 22px;
  color: #9ca3af;
}
.btn-belge-upload-lg {
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 600;
}
.btn-belge-upload-lg:hover {
  background: var(--primary-hover);
  color: #fff;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #1a1a2e;
}
.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  transition: all 0.22s ease;
}
.footer-social:hover {
  background: var(--primary);
  color: #fff;
}

/* ─── TOAST ─── */
.custom-toast {
  position: fixed;
  bottom: 26px;
  right: 26px;
  background: #1e293b;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
}
.custom-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .search-input-wrap {
    width: 240px;
  }
}
@media (max-width: 768px) {
  .search-input-wrap {
    width: 180px;
  }
}

@media (min-width: 1201px) {
  .container {
    max-width: 1400px;
  }
}

/* =========================================================
   SIDEBAR
   ========================================================= */
.sidebar {
  width: var(--sidebar-width);
  flex-shrink: 0;
  position: sticky;
  top: 88px;
}

.sidebar-card {
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Profile Section */
.sidebar-card .sidebar-profile {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
  padding: 18px 16px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sidebar-card .sidebar-profile::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(230, 57, 70, 0.12);
  border-radius: 50%;
}

.sidebar-card .sidebar-profile::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.sidebar-card .profile-avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 15px auto;
  border-radius: 50%;
}

.sidebar-card .profile-avatar-wrap img {
  background: #fff;
}

.sidebar-card .profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid rgba(255, 255, 255, 0.15);
  display: block;
  background: #334155;
}

.sidebar-card .profile-avatar-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  border: 2.5px solid rgba(255, 255, 255, 0.15);
}

.sidebar-card .profile-avatar-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border: 2px solid #1a1a2e;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.sidebar-card .profile-avatar-badge:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.sidebar-card .profile-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.sidebar-card .profile-role {
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Profile Meta */
.sidebar-card .sidebar-meta {
  padding: 0 12px 4px;
  background: #fff;
}

.sidebar-card .sidebar-meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 4px;
  border-bottom: 1px solid var(--border-light);
  font-size: 11.5px;
}

.sidebar-card .sidebar-meta-item:last-child {
  border-bottom: none;
}

.sidebar-card .sidebar-meta-label {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sidebar-card .sidebar-meta-value {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 12px;
}

.sidebar-card .badge-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 10.5px;
  font-weight: 600;
}

.sidebar-card .badge-status.active {
  background: var(--success-light);
  color: var(--success);
}

.sidebar-card .badge-status.active::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
}

/* e-Devlet Verification Badge */
.sidebar-card .edevlet-verify {
  padding: 8px 12px;
  background: #fff;
}
.sidebar-card .edevlet-verify-inner.verified {
  background: linear-gradient(135deg, #fff5f5 0%, #ffebeb 50%, #fff0f0 100%);
  border: 1.5px solid #fecaca;
}

.sidebar-card .edevlet-verify a {
  line-height: 1;
}

.sidebar-card .edevlet-verify-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.sidebar-card .verified .edevlet-status {
  color: #d90000;
}

.sidebar-card .verified .edevlet-status i {
  color: #d90000;
  font-size: 14px;
}

.sidebar-card .edevlet-verify-inner.verified:hover {
  border-color: #f87171;
  box-shadow: 0 2px 12px rgba(217, 0, 0, 0.15);
}
/* Shimmer effect */
.sidebar-card .edevlet-verify-inner.verified::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 100%
  );
  animation: edevletShimmer 4s ease-in-out infinite;
}

@keyframes edevletShimmer {
  0%,
  100% {
    left: -100%;
  }
  50% {
    left: 150%;
  }
}

.sidebar-card .edevlet-verify-inner.unverified {
  background: linear-gradient(135deg, #fef3cd 0%, #fff8e1 100%);
  border: 1.5px solid #fde68a;
}

.sidebar-card .edevlet-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sidebar-card .edevlet-logo img {
  height: 30px;
}
.sidebar-card .edevlet-logo svg {
  border-radius: 7px;
  box-shadow: 0 2px 6px rgba(26, 77, 143, 0.2);
}

.sidebar-card .edevlet-info {
  position: relative;
  z-index: 1;
}

.sidebar-card .edevlet-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}

.sidebar-card .edevlet-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
}

.sidebar-card .unverified .edevlet-status {
  color: #92400e;
}

.sidebar-card .unverified .edevlet-status i {
  color: #d97706;
  font-size: 14px;
}

/* Navigation */
.sidebar-card .sidebar-nav {
  padding: 6px 8px 10px;
  border-top: 1px solid var(--border-light);
}

.sidebar-card .sidebar-nav-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 10px 4px;
}

.sidebar-card .nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  cursor: pointer;
}

.sidebar-card .nav-item i {
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.sidebar-card .nav-item:hover {
  background: var(--body-bg);
  color: var(--text-primary);
}

.sidebar-card .nav-item:hover i {
  color: var(--primary);
}

.sidebar-card .nav-item.active {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
}

.sidebar-card .nav-item.active i {
  color: var(--primary);
}

.sidebar-card .nav-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  bottom: 25%;
  width: 3px;
  background: var(--primary);
  border-radius: 0 4px 4px 0;
}

.sidebar-card .nav-badge {
  margin-left: auto;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: var(--radius-full);
  min-width: 20px;
  text-align: center;
}

.sidebar-card .nav-badge.secondary {
  background: var(--body-bg);
  color: var(--text-muted);
}

/* Platform Logos */
.sidebar-card .denizliemlak-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  color: #fff;
  background: #26ae61;
}

.sidebar-card .denizliemlak-icon i {
  width: auto;
  height: auto;
  font-size: 10px;
  line-height: 1;
  margin-top: 1px;
}

.sidebar-card .nav-item:hover .denizliemlak-icon i {
  color: #fff;
}

.sidebar-card .platform-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-fast);
  font-size: 12px;
  list-style: 1;
}

.sidebar-card .platform-logo svg {
  display: block;
  width: 20px;
  height: 20px;
}

.sidebar-card .nav-item-platform:hover .platform-logo {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.sidebar-card .sahibinden-logo {
  box-shadow: 0 1px 4px rgba(255, 232, 0, 0.4);
}

.sidebar-card .hepsiemlak-logo {
  box-shadow: 0 1px 4px rgba(231, 76, 60, 0.3);
}

/* =========================================================
   SECTION CARD
   ========================================================= */
.section-card {
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  overflow: hidden;
}

.section-card-header,
.card-header2 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px 10px;
  border-bottom: 1px solid var(--border-light);
}

.section-card-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.section-card-icon.red {
  background: var(--primary-light);
  color: var(--primary);
}
.section-card-icon.blue {
  background: var(--info-light);
  color: var(--info);
}
.section-card-icon.green {
  background: var(--success-light);
  color: var(--success);
}
.section-card-icon.yellow {
  background: var(--warning-light);
  color: var(--warning);
}

.section-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.01em;
}

.section-card-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 0;
}

.section-card-body {
  padding: 14px 18px 16px;
}

.wp-destek-butonu {
  position: fixed;
  bottom: 10px; /* Alttan boşluk */
  left: 10px; /* Soldan boşluk (Sağa almak isterseniz left yerine right yazabilirsiniz) */
  background-color: #25d366; /* Orijinal WhatsApp Yeşili */
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 50px; /* Hap şeklinde yuvarlak kenarlar */
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3); /* Şık bir gölge */
  z-index: 9999; /* Tüm öğelerin üzerinde görünmesini sağlar */
  transition: all 0.3s ease; /* Yumuşak geçiş animasyonu */
}

.wp-destek-butonu svg {
  width: 24px;
  height: 24px;
}

/* Fare ile üzerine gelindiğinde olacaklar */
.wp-destek-butonu:hover {
  background-color: #128c7e; /* Koyu yeşil */
  transform: translateY(-5px); /* Hafifçe yukarı kalkar */
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.4); /* Gölge belirginleşir */
  color: #ffffff;
}

/* Mobilde butonu biraz daha ideal boyuta getirmek için */
@media (max-width: 1199px) {
  .wp-destek-butonu {
    display: none;
  }
  .yeni_detay_gallery_box {
    position: relative;
    padding: 0!important;
    border: none!important;
    border-radius: 8px;
    margin-bottom: 15px;
  }
}



/* ==========================================================================
   GENEL SÃ–ZLEÅMELER VE BÄ°LGÄ°LENDÄ°RME METÄ°NLERÄ° STÄ°LLERÄ°
   ========================================================================== */

/* Font ve Temel Alan AyarlarÄ± */
.page-sozlesmeler {
  color: #334155;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
}

.page-sozlesmeler .container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-sozlesmeler .container-ic {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

/* Tipografi */
.page-sozlesmeler h1 {
  color: #0f172a;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e2e8f0;
  letter-spacing: -0.02em;
}

.page-sozlesmeler h1:first-of-type {
  margin-top: 0;
}

.page-sozlesmeler h2 {
  color: var(--renk1);
  font-size: 16px;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 12px;
  padding-left: 10px;
  border-left: 4px solid var(--agent-red);
}

.page-sozlesmeler h3 {
  color: #1e293b;
  font-size: 15px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-sozlesmeler p {
  margin-bottom: 12px;
  text-align: justify;
}

.page-sozlesmeler code {
  background-color: #f1f5f9;
  color: #0f172a;
  padding: 2px 6px;
  border-radius: 4px;
  /* Kod alanlarÄ± iÃ§in monospace font ayrÄ±mÄ± */
  font-family: Consolas, Monaco, "Andale Mono", monospace;
  font-size: 13px;
  border: 1px solid #cbd5e1;
}

/* KÃ¼nye / Footer Info Kutusu */
.page-sozlesmeler .footer-info {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

.page-sozlesmeler .footer-info h3 {
  margin-top: 0;
  color: #0f172a;
  border-bottom: 1px solid #cbd5e1;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

/* Tablo Stilleri */
.page-sozlesmeler table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 13.5px;
  background: #ffffff;
}

.page-sozlesmeler table th,
.page-sozlesmeler table td {
  padding: 12px 15px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #e2e8f0;
}

.page-sozlesmeler table th {
  background-color: #f1f5f9;
  color: #1e293b;
  font-weight: 600;
}

.page-sozlesmeler table tbody tr:nth-child(even) {
  background-color: #f8fafc;
}

.page-sozlesmeler .footer-info table {
  margin: 0;
}

.page-sozlesmeler .footer-info table td {
  border: none;
  padding: 6px 10px;
}

/* Rozet (Badge) Stili */
.page-sozlesmeler .badge {
  display: inline-block;
  background-color: #ef4444;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

/* Vurgu Kutusu (Highlight Box) */
.page-sozlesmeler .highlight-box {
  background-color: #fef2f2;
  border-left: 4px solid #ef4444;
  color: #991b1b;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
  font-size: 13.5px;
}

.page-sozlesmeler .highlight-box strong {
  color: #7f1d1d;
}


.kullanici-ilan-ekle .secilenler{
    display: block;
    font-weight: 700;
    margin-bottom: 20px;

}


/**/

 .firma-tipi-scroll-wrapper {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;

        /* Kaydırma özellikleri (Mobilde yatay scroll için) */
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE / Edge */
        padding-bottom: 5px; /* Hover gölgesi için ufak boşluk */
    }

    /* Scrollbar'ı gizle ama kaydırmayı aktif bırak */
    .firma-tipi-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }

    .firma-card {
        flex: 1 1 0; /* Masaüstünde tüm kartlar aynı genişlikte olur */
        min-width: 220px; /* Yatay dizilim için minimum genişliği biraz artırdık */
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: var(--radius-sm);
        padding: 10px 16px;

        /* YATAY DİZİLİM AYARLARI */
        display: flex;
        align-items: center;
        gap: 12px;

        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: all 0.25s ease;
        box-shadow: 0 1px 2px rgba(0,0,0,0.03);
        user-select: none;
    }

    .firma-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px -4px rgba(0,0,0,0.08);
        border-color: #d1d5db;
    }

    .firma-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: transparent;
        transition: all 0.25s ease;
    }

    .firma-icon-box {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.25s ease;
        flex-shrink: 0;
    }

    .firma-baslik {
        font-size: 14px;
        font-weight: 600;
        color: #4b5563;
        white-space: nowrap;
    }

    .firma-sayi {
        font-size: 18px;
        font-weight: 700;
        color: #111827;
        /* SAYIYI EN SAĞA İTEN KOD: */
        margin-left: auto;
    }

    /* MOBİL MİNİMAL GÖRÜNÜM (Yatay Kaydırma) */
    @media (max-width: 768px) {
        .firma-tipi-scroll-wrapper {
            gap: 10px;
            margin-bottom: 15px;
        }
        .firma-card {
            flex: 0 0 auto; /* Mobilde kartlar büzülmez, içerik kadar genişlik alır */
            min-width: max-content;
            padding: 8px 14px;
            gap: 10px;
        }
        .firma-baslik { font-size: 13px; }
        .firma-sayi { font-size: 16px; margin-left: 15px; /* Mobilde yazıyla sayı arasında minimum boşluk */ }
        .firma-icon-box { width: 36px; height: 36px; font-size: 16px; }
    }

    /* RENK TEMALARI & AKTİF DURUMLAR */

    /* 1. Emlak Ofisi Kartı */
    .firma-icon-box.emlakci { background: #eff6ff; color: #3B82F6; }
    .firma-card.emlakci-card.active { border-color: #3B82F6; background: #eff6ff; }
    .firma-card.emlakci-card.active::before { background: #3B82F6; }
    .firma-card.emlakci-card.active .firma-icon-box.emlakci { background: #dbeafe; color: #1d4ed8; }

    /* 2. Müteahhit Kartı */
    .firma-icon-box.muteahhit { background: #fffbeb; color: #F59E0B; }
    .firma-card.muteahhit-card.active { border-color: #F59E0B; background: #fffbeb; }
    .firma-card.muteahhit-card.active::before { background: #F59E0B; }
    .firma-card.muteahhit-card.active .firma-icon-box.muteahhit { background: #fef3c7; color: #b45309; }

    /* 3. Tümü Kartı */
    .firma-icon-box.tumu { background: #f3f4f6; color: #4b5563; }
    .firma-card.tumu-card.active { border-color: #10B981; background: #f0fdf4; }
    .firma-card.tumu-card.active::before { background: #10B981; }
    .firma-card.tumu-card.active .firma-icon-box.tumu { background: #d1fae5; color: #059669; }
