 /* * {outline: 1px solid red;}	*/


/* ░░░░░░░░░░░░░░░░░░░░░░░░░░▓---│ Genel Ayarlar */

	h1, h2, h3, h4 {
		color: #2c3e50;
	}

	h2 {
		text-align: center;
		margin-bottom: 0.5rem;
		font-size: 1.8rem;
		display: inline-block;
		padding-bottom: 10px;
	}

	h3 {
		margin-bottom: 1rem;
	}

	h4 {
		font-size: 1.6rem;
		color: #000080;
		margin-bottom: 0.2rem;
	}

	a {
		color: #27ae60;
		text-decoration: none;
	}

	a:hover {
		text-decoration: underline;
	}

	img {
		max-width: 100%;
		height: auto;
		display: block;
	}

	

/* ░░░░░░░░░░░░░░░░░░░░░░░░░░▓---│ Ana Kapsayıcı */

	.main-container {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 15px;
		
		
 
	
	}

/* ░░░░░░░░░░░░░░░░░░░░░░░░░░▓---│ Logo */



	.logo {
		white-space: nowrap;
		user-select: none;
		
	}

	.logo a {
		font-size: clamp(1.1rem, 1.5vw, 1.3rem);
		font-weight: 700;
		color: rgba(0, 20, 40, 1);
		text-decoration: none;
		text-underline-offset: 0.1875rem;
		cursor: pointer;
		display: flex;
		align-items: center;
		gap: 0.3em;

	}

	.logo span {
		font-weight: 700;
		color: rgba(128, 128, 0, 1);
		display: inline-block;
		width: 0.3em;
	}
	
	
	  /* Navbar kapsayıcı */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 50px;
      margin-top:5px;
	  		opacity: 0.95;
     
      z-index: 1000;
      display: flex;
      justify-content: center;
    }

    /* İçerik */
    .navbar-container {
		background: #fff;
		 box-shadow: 0 1px 5px rgba(0,0,0,0.2);
      width: 100%;
      max-width: 1200px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 30px;
	  border-radius:10px;
	  
    }


    .menu {
      display: flex;
      gap: 20px;
    }

    .menu a {
      text-decoration: none;
      color: #333;
      font-size: 16px;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 25px;
      height: 20px;
      cursor: pointer;
    }

    .hamburger span {
      height: 3px;
      background: #333;
      border-radius: 2px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .menu {
        display: none;
        position: absolute;
        top: 50px;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      }

      .menu.active {
        display: flex;
      }

      .hamburger {
        display: flex;
      }
    }
	
	
	
	
	/* ----------------------------------------------------------------- */







/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 230px;
    
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url('../images/im/hero-bg.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    margin-top: 70px;
    border-radius: 10px;
    box-shadow: 8px 10px 8px rgba(0,0,0,0.35);
    border: 1px dashed #fff;
    overflow: hidden;
    align-items: center;   		/* Dikeyde ortalama */
		justify-content: center;	/* Yatayda ortalama */
		 display: flex;
		flex-direction: column;
		
    /* Animasyonu uygula */
   animation: move-and-zoom 45s ease-in-out forwards;
}

/* Arka planı hareket ettirecek animasyon */
@keyframes move-and-zoom {
    0% {
        background-position: center top;
        background-size: 140%;
    }
    50% {
        background-position: center center;
        background-size: 160%;
    }
    75% {
        background-position: center center; /* Zoom bittikten sonra ortada kalsın */
        background-size: 100%;
    }
    100% {
        background-position: center center; /* Sonunda ortada sabit kalsın */
        background-size: 100%;
    }
}







.hero-section h1 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #e0e0e0;
}


.iletisim-section {
   
    text-align: center;
    width: 100%;
 
    box-sizing: border-box; /* Bu satır, padding'in genişliği etkilemesini engeller */
    margin: 0 auto; /* Bu satır ile yatayda otomatik olarak ortalanır */
}

.iletisim-container {
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative; /* Sözde-elemanı konumlandırmak için */
    overflow: hidden; /* Taşmaları engellemek için */
}

/* Arka plan resmini buraya taşıyoruz */
.iletisim-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/im/iletisim.webp');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.25; /* Saydamlık seviyesi (0 ile 1 arasında) */
    z-index: -1; /* İçeriğin arkasında kalmasını sağlar */
}

/* Resim görünümünü daha iyi hale getirmek için */
.iletisim-container h1,
.iletisim-container p {
    position: relative;
    z-index: 1; /* İçeriğin resmin üzerinde görünmesini sağlar */
}

/* Hakkımızda Section */
.hakkimizda-section {
    background-color: #eaf7f4;
    padding: 40px 0;
    text-align: center;
	
}

.hakkimizda-section p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
    line-height: 1.8;
	
}



/* ░░░░░░░░░░░░░░░░░░░░░░░░░░▓---│ Tüm İlan Kartlarının Kapsayıcısı */

	.card-grid {
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
		margin-top: 2rem;
		margin-bottom:2rem;
		justify-content: center;
		align-items: flex-start;
	}


/* ░░░░░░░░░░░░░░░░░░░░░░░░░░▓---│ İlan Kartı ANA Sayfası */

	.ilan-card {
		position: relative;
		width: 360px;
		height: 600px;
		border: 1px solid #ddd;
		border-radius: 12px;
		overflow: hidden;
		box-shadow: 8px 10px 8px rgba(0,0,0,0.35);
		transition: transform 0.2s;
		background-color: #F8F8F8   ;
		display: flex;
		flex-direction: column;
		
		background-image: url('../images/im/overlaybg_01.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
	
	}

	.ilan-card:hover {
		transform: translateY(-3px);
		box-shadow: 8px 10px 8px rgba(0,0,0,0.35);
	}

	/* ░░░░░░░░░░░░░░░░░░▒▒▒▒▓---│ İlanlara Ait Resim Alanı */
	
	.ilan-resim-galeri {
		position: relative;
		height: 250px;
		background-color: #ddd;
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
		user-select: none;
	}
	
	.ilan-id-label {
    position: absolute;
    top: 265px;
    right: 14px;
    background-color: rgba(0,0,0,0.2);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 10;
}



	/* ░░░░░░░░░░░░░░░░░░▒▒▒▒▓---│ İlan Resimleri kaydırma */
	
	.slides-container {
		display: flex;
		width: 100%;
		height: 100%;
		overflow-x: scroll;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		position: relative;
		transition: transform 0.3s ease-in-out;
		scrollbar-width: none; /* Firefox için kaydırma çubuğunu gizle */
	}

	.slides-container::-webkit-scrollbar {
		display: none; /* Chrome, Safari, Opera için kaydırma çubuğunu gizle */
	}

	.slider-image {
		flex-shrink: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		scroll-snap-align: start;
	}
	
	.slider-nav {
		position: absolute;
		top: 50%;
		width: 100%;
		display: flex;
		justify-content: space-between;
		transform: translateY(-50%);
		z-index: 2;
		padding: 0 10px;
	}

	.nav-btn {
		background-color: rgba(0, 0, 0, 0.5);
		color: white;
		border: none;
		font-size: 18px;
		cursor: pointer;
		border-radius: 50%;
		width: 36px;
		height: 36px;
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0.70;
		transition: opacity 0.2s;
		padding: 5px;
		margin: 10px;
	}

	.nav-btn:hover {
		opacity: 1;
	}

	.dots-container {
		position: absolute;
		bottom: 10px;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		gap: 5px;
		z-index: 2;
	}

	.dot {
		width: 10px;
		height: 10px;
		border-radius: 50%;
		background-color: rgba(255, 255, 255, 0.5);
		cursor: pointer;
		transition: background-color 0.2s;
	}

	.dot.active {
		background-color: #fff;
	}

	/* ░░░░░░░░░░░░░░░░░░▒▒▒▒▓---│ Resim Yok Alanı */
	
	.resim-yok-alani {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		background-color: #eee;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #555;
		font-size: 14px;
		z-index: 1;
		background-image: url('../images/im/no-image.webp');
		background-position: center;
		background-size: 75%; /*contain;         /* Görsel kutuya sığar */
		background-repeat: no-repeat;     /* Görsel tekrarlanmaz */
	}

	.card-content{
		justify-content: space-between;
		display: flex;
		flex-direction: column;
		flex-grow: 1;
		padding:14px;
	}

	.ilan-konum {
		margin: 0 0 5px 5px;
		font-size: 1rem;
		font-weight: 600;
		color: #000;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		height:45px;
	}

	.ilan-konum i {
		color: #808000;
		margin-right: 5px;
	}

	.ilan-konum .mahalle {
		display: inline-block;
		padding-left: 20px;
		color: #444444;
	}

	.card-meta {

  
		font-weight: bold;
		color: #777;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		display: flex;
		justify-content: space-between;
		align-items: center;
		background-color: #eee; /*#f4f7f6;*/
		padding: 6px;
		font-size: 0.85rem;
		text-align: center;
		border-radius: 8px;
		height:60px;
	}
  
	.card-meta i {
		color: #27ae60;
		margin-right: 5px;
	}

	.detay-shell {
		width: 105px;
		height: auto; 				/* Dikeyde ortalama için sabit yükseklik gerekli */
		display: flex;
		align-items: center;   		/* Dikeyde ortalama */
		justify-content: center;	/* Yatayda ortalama */
		overflow: hidden;       	/* Taşmaları gizle */
		/*white-space: nowrap;    	/* Alt satıra geçmeyi engelle */
		/*text-overflow: ellipsis; 	/* Gerekirse "..." ile bitir */
		box-sizing: border-box;
		position: relative;
	}

	.detay-item {
		width: 100%;
		text-align: center;
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		overflow: hidden;
	}

	.detay-item span {
		display: -webkit-box;        /* Çok satırlı flex kutusu gibi davranır */
		-webkit-line-clamp: 2;       /* Maksimum 2 satır göster */
		-webkit-box-orient: vertical;/* Kutuyu dikey yapar */
		overflow: hidden;            /* Taşan metni gizler */
		text-overflow: ellipsis;     /* Sonunda ... gösterir */
		white-space: normal;         /* Satır sonuna izin verir */
		font-weight: bold;
		color: #000;
		text-align: center;
		word-wrap: break-word;
		height:auto;
		max-height:38px;
		line-height: 1.3;
	}

	.card-description {
		font-size: 0.8rem;
		color: #666;
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 4;
		-webkit-box-orient: vertical;
		flex-grow: 1;
		min-height: 105px;
		height: 105px;
		padding:5px 10px;
		text-align: justify; /* Bu satır metni iki yana yaslar */
	}

	.card-bottom {
		display: flex;
		flex-direction: column;
		flex-grow: 1;
		padding:0 5px;
	}

	.card-price-w {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		gap: 4px;
		text-align: center;
	}

	.card-price {
		font-weight: 700;
		font-size: 1.4rem;
		color: #000; /*#27ae60;*/
		display: flex;
		justify-content: space-between;
		margin-top:15px;
		margin-left: 8px;
	}

	.unit-price {
		border-radius: 6px;
		padding: 4px 18px;
		color: #555;
		font-weight: bold;
		background-color: #eee; /*#f4f7f6;*/
		display: flex;
		flex-direction: column;
		font-size: 0.8em;
		line-height: 1.3;
		text-align: left;
	}

	.formatted-unit-price {
		font-size: 1.1em;
		font-weight: bold;
		color: #333;
	}

	.formatted-unit-price sup {
		font-size: 0.75em;
		position: relative;
		top: 0.1em;
		color:#444;
	}

	.card-actions {
		font-size: 1.8rem;
		font-weight: bold;
		color: #27ae60;
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-top: auto;
	}

	.card-actions a {
		padding: 10px;
		margin-right: 10px;
		font-size: 14px;
		border: none;
		border-radius: 5px;
		cursor: pointer;
		color: #fff;
		text-decoration: none;
	}

	.btn-offer {
		background-color: rgba(39, 174, 56, 1);
		color: white;
		padding: 10px 20px;
		border: none;
		border-radius: 8px;
		cursor: pointer;
		font-size: 0.9rem;
		font-weight: bold;
		transition: background-color 0.3s;
		margin-top: 8px;
		width: 160px;
		user-select: none;
	}

	.btn-offer:hover {
		background-color: rgba(211, 129, 0, 1);
	}

	.btn-details {
		background-color: #2c3e50;
		opacity: 0.85;
		color: #fff;
		padding: 10px 10px;
		border: 1px solid #2c3e50;
		border-radius: 8px;
		font-size: 0.9rem;
		transition: background-color 0.3s, color 0.3s;
		width: 140px;
		margin-top: 6px;
		user-select: none;
	}

	.btn-details:hover {
		opacity: 1;
		background-color: #2c3e50;
		color: #fff;
		text-decoration: none;
	}


/* ░░░░░░░░░░░░░░░░░░░░░░░░░░▓---│ TEKLIF ve AYRINTILAR Kartı */

	.overlay {
		overflow: auto;
		display: none;
		position: absolute;
		top: 0;
		left: 0;
		width:calc(100%);
		height:100%; 
		background-color: rgba(245, 245, 245, 0.96);
		/*padding: 12px;*/
		margin: 0;
		border-radius: 10px;
		box-sizing: border-box;
		flex-direction: column;
		justify-content: flex-start; /* Corrected line */
		align-items: center;    /*align-items: flex-start;*/
		z-index: 1000;
		
	}
	
	
/* ░░░░░░░░░░░░░░░░░░░░░░░░░░▓---│ TEKLIF VE AYRINTILAR ORTAK KULLANILAN SINIFLAR */


	/* ░░░░░░░░░░░░░░░░░░▒▒▒▒▓---│ Sayfa iç Kapsayıcısı */
	.page-wrapper {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		/*margin-top:5px;*/
		padding: 25px 12px 0 12px;
		width: calc(100%);
		height: 100%; 	
		background-image: url('../images/im/overlaybg_05.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
	
		
	}
	
	
	/* ░░░░░░░░░░░░░░░░░░▒▒▒▒▓---│ Sayfası Kapama Butonu */
	.btn-close {
		display: flex; 
		justify-content: flex-end;
		position: absolute;
		top: 10px;
		right: 10px;
		width: 30px;
		height: 30px;
		opacity: 0.7;
		background-image: url('../images/im/window_close.png');
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		border: none;
		background-color: transparent;
		cursor: pointer;
		z-index: 1000;
		transition: transform 0.15s ease, filter 0.15s ease;
		filter: brightness(1); 
	}

	.btn-close:hover {
		transform: scale(1.06);
	}

	.btn-close:active {
		transform: scale(0.95);
		filter: brightness(1.0);
	}


		
/* ░░░░░░░░░░░░░░░░░░░░░░░░░░▓---│ TEKLİF VER SAYFASI */





:root {
    --primary-color: #007bff;
    --primary-hover: #0056b3;
    --background-color: #f4f7f6;
    --form-bg-color: #ffffff;
    --border-color: #ddd;
    --text-color: #333;
    --success-color: #28a745;
    --error-color: #dc3545;
}


.form-container {
	  display: block; /* Butonu bir blok eleman yapar */
    margin: 0 auto; /* Otomatik sol ve sağ margin ile yatayda ortalar */
}
	
    /*background-color: var(--form-bg-color);*/
   
    border-radius: 10px;
   /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
    width: 100%;
    max-width: 360px;
    height: 430px;
    box-sizing: border-box;
}







.sub-heading {
    margin-bottom: 15px;
	margin-top:15px;
    color: blue; /*#666;*/
	text-align: center;
	font-size: 13px;
	font-weight:bold;
	
}

.input-group {
    display: flex;
    gap: 10px;
}

input[type="email"],
input[type="text"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
	resize: none;
	 background-color: #dff;
}

input[type="email"] {
  
  height: 40px;         /* istediğin yükseklik */
   
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}




.form-button {
    display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		opacity: 1;
		color: #fff;
		border: 1px solid #2c3e50;
		border-radius: 8px;
		font-size: 0.85rem;
		font-weight:bold;
		transition: background-color 0.3s, color 0.3s;
		width: 110px;
		height: 40px;
		user-select: none;
		cursor: pointer;
		background-color: var(--primary-hover);
		flex-shrink: 0; /* Butonun küçülmesini engeller */
    flex-basis: auto; /* Kendi genişliğini korumasını sağlar */
	
}

.form-button:hover {
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
		transform: translateY(-1px);
}
.form-button:active {
		box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
		transform: translateY(1px);
}
	

.form-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#email-step .input-group input {
    flex-grow: 1;
}

.hidden {
    display: none;
}



.verify-form-inline {
  display: flex;
  /* Dikey olarak ortalamak için (tavsiye edilir) */
  align-items: center; 
  /* Input grubu ile buton arasına boşluk koymak için */
  gap: 10px; 
}

/* Kod Doğrulama Alanı */
.code-inputs {
    display: flex;
    justify-content: center; /* İçindeki öğeleri yatayda ortalar */
    align-items: center; /* Öğeleri dikeyde ortalar, buton ve input'lar aynı hizada olur */
    gap: 8px; /* Öğeler arasına boşluk bırakır */
    margin: 10px;
	
}


input.code-input {
  width: 40px;          /* istediğin genişlik */
  height: 45px;         /* istediğin yükseklik */
  padding: 0;
  box-sizing: border-box;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  caret-color: transparent;
}

/* Seçili (focus) kutunun arka plan rengini değiştir */
.code-input:focus {
    background-color: #e6f2ff; /* Açık mavi bir arka plan rengi */
}



input.form-input {
  width: 100%;          /* istediğin genişlik */
  height: 45px;         /* istediğin yükseklik */
   padding: 8px 15px;
  box-sizing: border-box;
  font-size: 15px;

  border: 1px solid #ccc;
  border-radius: 8px;
  margin:4px 0;
}

textarea.form-input {
    width: 100%;
	height: 200px;
	max-height:200px;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
	resize: none;
	margin:4px 0;
			
}


.button-container {
  display: flex;
  justify-content: center;
}





#timer {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

/* Teklif Formu Alanı */
#offer-form fieldset {
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
	
}




#offer-form .form-row {
     display: block;
    gap: 15px;
}

#offer-form .form-row > input {
    width: 100%;
	 flex: 1;   /* eşit paylaştırır */
}

/* Mesajlar */
.error-message {
    color: var(--error-color);
    font-size: 14px;
    margin-top: 10px;
    min-height: 20px;
}

#success-message {
    color: var(--success-color);
}
#success-message h2 {
    margin-bottom: 15px;
}








		
/* ░░░░░░░░░░░░░░░░░░░░░░░░░░▓---│ AYRINTILAR SAYFASI Satır ve kapsayıcıları */

	.page-kutu-x {
		display: flex;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		height: auto;
		margin:2px 0 2px 0;
		width:auto;
	}

	.page-kutu-a {
		padding-left: 5px;
		font-size: 0.85rem;
		font-weight: 600;
		color: #191970;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		height: 25px;
		width: 110px;
		background-color: rgba(255, 245, 238, 0.6); 
		border-radius: 6px;
		display: flex;
		align-items: center;
	}

	.page-kutu-b {
		padding-left:5px;
		font-size: 0.85rem;
		font-weight: 600;
		color: #000;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		height:auto;
		width:210px;
		border-radius: 6px;
		background-color: transparent;
		align-items: center; /* Dikeyde ortalar */
	}

	.page-kutu-b span {
		font-size: 1.1rem;
		font-weight: 600;
		color: red;
	}

	.page-not {
		margin:5px 0;
		padding: 5px;
		font-size: 0.8rem;
		width: 330px;
		height: 90px;
		color: #441070;
		text-align: justify;
		background-color: #cff;
		border-radius: 6px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
		overflow-x: hidden;
		overflow-y: auto;
	}

	/* ░░░░░░░░░░░░░░░░░░▒▒▒▒▓---│ Ayrıntılar Sayfası KML-ŞİB-Parsel Butonları */

	.btn-ayrintilar {
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		opacity: 1;
		color: #fff;
		border: 1px solid #2c3e50;
		border-radius: 8px;
		font-size: 0.85rem;
		transition: background-color 0.3s, color 0.3s;
		width: 105px;
		height: 35px;
		user-select: none;
		cursor: pointer;
	}
	
	.btn-ayrintilar:hover {
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
		transform: translateY(-1px);
	}

	.btn-ayrintilar:active {
		box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
		transform: translateY(1px);
	}

	.kml {
		background-color: #4A90E2;
	}

	.pdf {
		background-color: #E74C3C;
	}

	.parsel {
		background-color: #2ECC71;
	}

	.buttons-wrapper {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 8px;
		min-height:38px;
		height: auto;
		background-color: rgba(255, 245, 235, 0.9);
		overflow: hidden;
		margin-top: 6px;
		
	}
	
	
	
	
/* ░░░░░░░░░░░░░░░░░░░░░░░░░░▓---│ Responsive */
@media (max-width: 480px) {
	.ilan-card {
		width: 100%;
		height: auto;
	}
}