/* Genel Stiller */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    -webkit-user-select: none; /* Safari ve Chrome */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Internet Explorer/Edge */
  user-select: none;         /* Standart */
  
}
a, li, ul, button, img, i, span, div {
    -webkit-tap-highlight-color: transparent; /* Mavi vurguyu kaldır */
}
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    border-bottom: 7px solid #ddd;
    margin-bottom: 10px;
}

main{
    max-width: 1250px;
    margin: 0 auto;
}
.sayfa-icerik {
    margin: 20px auto;
    max-width: 1000px;
    padding: 0 10px;
}


.sayfa-icerik ul {
    list-style: disc;
    margin-left: 20px;
}


.index-karsilama{
    background: url('/img/index_karsilama.png') no-repeat center center;
    background-size: cover;
    height: 1200px;
    width: 1250px;
    margin: 10px auto 10px auto;
    border-radius: 10px;
}

#etiket-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px;
  background-color: #111; /* Siyah temaya uyumlu */
  border-radius: 12px;
  max-width: 1180px;
  margin: 20px auto;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

#yapiskanButon {
  position: static;
  padding: 10px 20px;
  background: #ff5722;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
}


#yapiskanButon:hover {
  background-color: #e64a19;
}


.etiket {
  display: inline-block;
  background: #222;
  color: #fff;
  border: 1px solid #555;
  border-radius: 20px;
  padding: 8px 14px;
  margin: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.etiket:hover {
  background: #444;
  border-color: #888;
  transform: scale(1.05);
}


#bildirForm{
    display: flex;
    flex-direction: column;
}
#bildirForm input{
    max-width: 250px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
}

.sponsor-etiket {
  display: inline-block;
  background-color: #0077cc;
  color: white;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  font-weight: bold;
}


/* Mobil cihazlarda menü */
@media (max-width: 768px) {
    .akordiyon-div {
        justify-content: center !important;
        gap: 10px;
    }
    .arac-topluluklari{
        justify-content: center;
    }
    .sponsor-logo img {
    max-width: 750px !important;
    width: 100% !important;
        
    }
    .index-karsilama{
    background: none;
    background-size: cover;
    height: 100%;
    width: 100%;
    margin: 10px auto 10px auto;
    }
    .garaj-sahibi-ana-blok{
        flex-direction: column;
    }
    .arac-sorgulama {
        margin-left: 0 !important;
    }
    .arac-sorgulama-butonu{
        margin-right: 0 !important;
    } 

    .yorum-karti-alt-bar{
        justify-content: center !important;
        gap: 10px;
    }
    nav ul {
        /*flex-direction: column;*/
        gap: 10px;
        text-align: center;
    }
}

.main-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1250px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 10px;
}

.video-background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: url('/img/background_ekle_icin.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center; /* yatay ortalama */
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

.video-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.2) 2px, transparent 2px);
  background-size: 10px 10px; /* Nokta aralığı */
  pointer-events: none; /* Butonlar tıklanabilir kalsın */
  z-index: 1;
}

.video-background .content {
  z-index: 2;
  text-align: center;
  color: white;
  padding-top: 40px;
}

/* Mobilde video gizlenir, sadece resim görünür */
@media screen and (max-width: 768px) {
  .video-background video {
    display: none;
  }
}


.arac-ekleme-formu {
    position: relative;
    max-width: 400px;
    width: 100%;
  background-color: #ffffff;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 25px;
  font-family: 'Racing Sans One', sans-serif;
  letter-spacing: 2px;  /* Harfler arasındaki mesafeyi 2px yapar */
}

.arac-ekleme-formu h3 {
  font-size: 24px;
  margin: 5px 0 15px 0;
  color: black;
  text-align: center;
  white-space: nowrap;
}

.arac-ekleme-formu label {
  display: block;
  margin: 10px 0 5px;
  color: #ccc;
  font-size: 18px;
}

.arac-ekleme-formu select {
  width: 100%;
  padding: 8px;
  background-color: #2b2b2b;
  border: 1px solid #444;
  color: #fff;
  border-radius: 5px;
  font-size: 18px;
  margin: 10px 0;
}

.arac-ekleme-formu button {
  margin-top: 25px;
  width: 100%;
  padding: 10px;
  background-color: #00aaff;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Racing Sans One', sans-serif;
  letter-spacing: 2px;  /* Harfler arasındaki mesafeyi 2px yapar */
}

.arac-ekleme-formu button:hover {
  background-color: #008ecc;
}

.satilik-arac {
  height: 65px;
  aspect-ratio: 500 / 267; /* Oranı korur */
  background-image: url('/img/price_tag.png');
  background-size: contain; /* Resmi orantılı şekilde sığdırır */
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: end;
  text-align: center;
  float: right;
  font-weight: bold;
}

/* Akordiyon buton stili */
.akordiyon-div {
    background-color: #ffffff;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    color: black;
    font-size: 18px;
    padding: 15px 0;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    max-width: 640px;
}

.akordiyon-div:focus {
    outline: none;
}
.arac-ekle-btn {
    height: 35px;
    aspect-ratio: 500 / 64; /* Oranı korur */
    background-image: url('/img/arac_ekle_buton_bg.png');
    background-color: transparent;
    background-size: cover; /* veya contain */
    background-repeat: no-repeat;
    background-position: center;
    font-weight: bold;
    color: white;
    font-size: 20px;
    border: none;
    cursor: pointer;
    margin-right: 15px;

}

.arac-ekle-btn:focus {
    outline: none;
}

/* Ok simgesi dönüşüm efekti */
#okIcon {
    font-size: 25px;
    display: inline-block;
    transition: transform 0.3s ease; /* Dönüşümün yumuşak olmasını sağlar */
    margin-top: 5px;
}






#etiketler{
    margin-bottom: 10px;
}





#resimOnizleme img {
    max-width: 80px;
    border-radius: 6px;
}

#satisFiyatiDiv {
    margin-top: 10px;
}

/* Dosya seçme butonu */
#fileInput {
    display: none;
}



/* Mobil uyum */
@media (max-width: 600px) {


    .arac-guncelle-form-container {
        padding: 15px;
    }
}

/* Yorumlar ve Yorum Kartları Stili - Açık Tema */
.yorumlar {
    display: flex;
    flex-wrap: wrap;
    max-width: 640px;
    gap: 20px;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
}
.son-eklenen-yorum-okuma p{
    font-style: italic;
    margin: 0;
    font-size: 14px;
}
.son-eklenen-yorum-okuma h3{
    font-size: 15px;
    margin: 0;
}
.son-eklenen-yorum-karti {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    background-color: #ffffff; /* Beyaz arka plan */
    color: #333; /* Koyu metin rengi */
    border-radius: 16px;
    padding: 10px 15px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Yumuşak gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.son-eklenen-yorum-karti:hover {
    /* Hover durumunda arka plan rengini belirginleştiriyoruz */
    background-color: #f5f5f500; /* Hafif gri tonunda arka plan rengi */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2); /* Daha yumuşak gölge */
}
.yorum-karti {
    background-color: #ffffff; /* Beyaz arka plan */
    color: #333; /* Koyu metin rengi */
    border-radius: 16px;
    padding: 15px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Yumuşak gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.yorum-karti:hover {
    /* Hover durumunda arka plan rengini belirginleştiriyoruz */
    /*background-color: #f5f5f500; /* Hafif gri tonunda arka plan rengi */
    /*box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2); /* Daha yumuşak gölge */
}


.yorum-karti-alt-bar{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    
}

.garaj-takip{
    display: flex;
    align-items: center;
    gap: 5px;
}
.yorum-baslik {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.yorum-karti-baslik-link {
    cursor: pointer;
    margin-top: 1px;
    font-weight: bold;
}
.yorum-karti-baslik-link:hover {
    text-decoration: underline;
}
.yorum-baslik h3 {
    margin: 0;
    font-size: 18px; /* Başlık boyutunu belirleyelim */
    font-weight: 600;
    color: #333;
}

.yorum-yazan i {
    font-size: 20px;
}

.arac-marka-model-baslik{
    display: flex;
    gap: 10px;
    align-items: end;
}
.arac-marka-model-baslik h4{
    margin: 0;
}
.arac-marka-model-baslik p{
    margin: 0;
}

.yorum-icerik {
    margin-top: 5px;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 15px;
    /*color: #444;*/
    white-space: break-spaces;
}

.yorum-resimler {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

.yorum-resimler img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    /*border: 1px solid #ddd; /* Açık gri sınır */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.yorum-resimler img:hover {
    transform: scale(1.1); /* Resme hover efekt ekleyelim */
    object-fit: cover;
}

/* Yorum içeriklerinin düzenlenmesi */
.yorum-karti {
    border: 1px solid #f1f1f1; /* Hafif gri kenarlık */
}

/* Yorum başlıkları için uyumlu renk */
.yorum-baslik h3 {
    color: #007bff; /* Başlık için hoş bir mavi ton */
}

.takip-alani button{
    margin: 0;
    white-space: nowrap;
}
.arac-marka-info{
    display: flex;
    gap:10px;
    align-items: center;
}
.yorum-yazan{
    font-size: 16px;
    color: #514949;
    float: right;
    cursor: pointer;
    font-weight: bold;
    white-space: nowrap;
}
.yorum-tarih {
    font-size: 14px;
    color: #666;
    float: right;
}

/* Yorum Arama Çubuğu Stili */
.yorum-ara {
    display: flex;
    justify-content: center;
    margin: 0 auto 10px auto;
    max-width: 640px;
}

#arama-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    background-color: white; /* Koyu gri arka plan */
    color: black; /* Beyaz metin rengi */
    outline: none;
    transition: all 0.3s ease;
    border: none;
}

#arama-input::placeholder {
    color: #aaa; /* Açık gri placeholder yazısı */
    font-style: italic;
}

#arama-input:focus {
    box-shadow: 0 0 8px rgba(0, 188, 212, 0.4); /* Hafif mavi parlama efekti */
}


.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}



.kapat {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.onceki, .sonraki {
    cursor: pointer;
    position: absolute;
    top: 50%;
    color: white;
    font-size: 40px;
    padding: 20px;
    transform: translateY(-50%);
    user-select: none;
    transition: 0.3s;
}

.onceki:hover, .sonraki:hover {
    color: #ccc;
}

.onceki {
    left: 10px;
}

.sonraki {
    right: 10px;
}
/*sayfalama işaretleri*/
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-family: Arial, sans-serif;
    color: white;
    margin: 10px auto;
}

.pagination .page {
    margin: 0 5px;
    cursor: pointer;
    transition: color 0.3s;
}

.pagination .page:hover {
    color: #007BFF; /* Hoverda mavi renk */
}

.pagination .active {
    font-weight: bold;
    color: #007BFF;
}

.pagination .disabled {
    color: #888; /* Devre dışı sayfa numarası rengi */
    cursor: not-allowed;
}

.pagination .separator {
    margin: 0 5px;
    color: #ffffff;
}

.garaj-sahibi{
    position: absolute;
    z-index: 3;
    color: white;
    top: 45px;
    left: 35px;
}
.garaja-git{
    display: none;
    position: absolute;
    z-index: 3;
    color: white;
    top: 45px;
    left: 205px;
    font-weight: bold;
    text-decoration: none;
}
.garaja-git:hover{
    color: #f39c12;
}
  .watermark-text {
    position: absolute;
    top: 150px;
    left: 60px;
    font-size: 40px;
    color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    white-space: nowrap;
    z-index: 4;
  }



.like-unlike-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.reply-btn, .message-btn, .share-btn {
    padding: 6px 6px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: lighter;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0;
}
.share-btn {
    background: linear-gradient(to right, #694caf, #a0459c);
    color: white;
}

.share-btn:hover {
    background: linear-gradient(to right, #8e45a0, #a04590);
    transform: scale(1.05);
}




.message-btn {
    background: linear-gradient(to left, #ddcc0a, #c9c755);
    color: white;
}

.message-btn:hover {
    background: linear-gradient(to left, #ddcc0a, #c9c755);
    transform: scale(1.05);
}



.reply-btn {
    background: linear-gradient(to right, #2196F3, #1976D2);
    color: white;
}

.reply-btn:hover {
    background: linear-gradient(to right, #1976D2, #0D47A1);
    transform: scale(1.05);
}







.tum-yanitlar-linki {
    text-align: right;
    margin-top: 5px;
}

.tum-yanitlar-linki a {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9em;
}




.ana-resim {
  text-align: center;
  margin-bottom: 15px;
}

.ana-resim img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.thumb-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.thumb-container img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.thumb-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.arac-detay-ust-blok{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.arac-detay-b-blok h1{
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  text-align: right;
}
.arac-detay-isim{
    margin-left: auto;
    float: right;
    font-weight: bold;
}


.arac-detay-ana-blok {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1400px;
  margin-top: 20px;
}

/* A bloğu */
.arac-detay-a-blok {
  box-sizing: border-box;
  flex: 1 1 48%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
/* B bloğu */
.arac-detay-b-blok {
  flex: 1 1 48%;
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

/* C bloğu */
.arac-detay-c-blok {


  border-radius: 10px;

  margin-top: 10px;
}
/* D bloğu */
.arac-detay-d-blok {
  display: none;    
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  
}
.arac-detay-son-eklenen-baslik{
    height: 30px;
    background-image: url('/img/arac_ekle_buton_bg.png');
    background-color: transparent;
    background-size: cover; /* veya contain */
    background-repeat: no-repeat;
    background-position: center;
    font-weight: bold;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    margin: 0 auto 10px auto;
    font-size: 16px;
    padding-left: 40px;
    font-style: italic;
    align-items: center;

}

#takipButonuKutusu button {
  background-color: ghostwhite;
  margin: 0 0 0 5px;
}


/* Mobil görünüm */
@media (max-width: 768px) {
    
  .arac-detay-ana-blok {
    flex-direction: column;
  }
  .garaj-takip{
    flex-direction: column;
    align-items: end;
      
  }
  .arac-marka-model-baslik{
    align-items: start;
    flex-direction: column;
}


  .arac-detay-a-blok,
  .arac-detay-b-blok,
  .arac-detay-d-blok {
    flex: 1 1 100%;
  }

  .arac-detay-c-blok {
    display: none;
  }
  .arac-detay-d-blok {
    display: block;
  }
}



.arac-detay-en-ust-yildiz-blok{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}



.arac-listesi {
    display: flex;
    flex-wrap: wrap;
    max-width: 640px;
    gap: 20px;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
    margin-top: 10px;
}





.garaj-container {

}

.garaj {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('/img/garaj3.png'); /* Garaj görselinizi buraya yerleştirin */
  background-size: cover;
  background-position: center;
  z-index: 3; /* Garaj görseli en alt katmanda olacak */
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.6); /* İçe gölge */
}

.kepenk {
  position: absolute;
  bottom: 33px;
  left: 35px;
  width: 80%;
  height: 70%;
  background-image: url('/img/kepenk.png'); /* Kepenk görselinizi buraya yerleştirin */
  background-size: cover;
  background-position: center;
  transition: transform 1s ease-out;
  z-index: 2; /* Kepenk görseli garajın üstünde olacak */
}

.arac {
  width: 240px;
  height: 240px;
}

.button-container {
  position: absolute;
  bottom: 35px;
  left: 40px;
  z-index: 5; /* Araç görseli kepengin üstünde olacak */
}

.raiseButton {
  width: 280px;
  height: 240px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background-color: transparent;
  color: white;
  border: none;
  border-radius: 5px;
}

.raiseButton:hover {
  background-color: transparent;
}

.arac-sorgulama {
  Display: flex;
  font-family: 'Racing Sans One', sans-serif;
  letter-spacing: 2px;  /* Harfler arasındaki mesafeyi 2px yapar */
  justify-content: space-between;
  gap: 10px;
  padding: 0 15px;
  width: 100%;
}


.arac-sorgulama h3 {
  font-size: 18px;
  margin: 5px 0 15px 0;
  color: #f1f1f1;
  text-align: center;
}

.arac-sorgulama label {
  display: block;
  margin: 10px 0 5px;
  color: #ccc;
  font-size: 14px;
}

.arac-sorgulama select {
  width: auto;
  padding: 8px;
  background-color: #2b2b2b;
  border: 1px solid #444;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  width: 100%;
}
.arac-sorgulama-butonu {
  background-color: #00aaff;
  border: none;
  color: white;
  font-size: 15px;
  margin: 0;
  border-radius: 5px;
  padding: 0 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Racing Sans One', sans-serif;
  letter-spacing: 2px;  /* Harfler arasındaki mesafeyi 2px yapar */
}

.arac-sorgulama-butonu:hover {
  background-color: #008ecc;
}



/* Araclar container'ı için smooth transition */
.en-begenilen-araclar {
    max-width: 1350px;
    margin-right: auto;
    margin-left: auto;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth; /* Bu satır kaydırma sırasında yumuşak geçiş sağlar */
  padding: 10px 10px;
  scrollbar-width: none; /* Firefox */
  transition: transform 0.5s ease-in-out; /* Animasyonlu geçiş */
}

.en-begenilen-araclar::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* Kaydırma okları için animasyon ekleyelim */
.kaydir-ok {
    width: 70px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 15px;
  border-radius: 50%;
  transition: background-color 0.1s ease, transform 0.1s ease;
}

.kaydir-ok:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
#sol-ok {
  left: 10px;
}

#sag-ok {
  right: 10px;
}


.arac-karti {
  min-width: 250px;
  background: #f1f1f1; /* Açık tonlar kullanıldı */
  color: #333;
  padding: 5px 10px 5px 10px;
  border-radius: 12px;
  flex-shrink: 0;
  scroll-snap-align: start;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.arac-karti:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.arac-karti img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.arac-link {
  text-decoration: none;
  color: #333;
  display: block;
}

.arac-link h3 {
  margin: 10px 0;
  font-size: 1.1rem;
  font-weight: bold;
}

.stars-container {
    white-space: nowrap;
}

.star {
  font-size: 25px;
  color: gray;
  margin-right: 1px;
  transition: color 0.3s ease;
}

/* Mobilde alt alta sıralama */
@media (max-width: 768px) {
  .en-begenilen-araclar {
    flex-direction: column;
    overflow-x: hidden;
  }
  .kaydir-ok{
      display: none;
  }

  .arac-karti {
    min-width: auto;
  }
}




#garaj-giris-formu{
    display: none;
}
#garaj-giris-formu button{
    margin: 0;
}
#garaj-olustur-formu{
    display: none;
}
#sifre-unuttum-formu{
    display: none;
}
#garaj-olustur-formu button{
    margin: 0;
}
#baglanti-gonderildi-formu{
    display: none;
}
#giris-basarili {
  display: none; /* Başlangıçta gizli */
}



  .index-form-container {
    max-width: 1200px;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 10px auto;
    background-color: #f0f8ff;
    padding: 10px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .index-form-container h2,
  .index-form-container h3 {
    color: #00796b;
    margin: 0 auto 0 auto;
    text-align: center;
  }

  .index-form-container form input[type="text"],
  .index-form-container form input[type="email"],
  .index-form-container form input[type="password"] {
    max-width: 350px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
    width: 100%;
  }
  .index-form-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 350px;
    width: 100%;
  }
  .index-form-container form button {
    /*max-width: 300px;*/
    padding: 10px;
    background-color: #00acc1;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    /*margin-left: auto;*/
    /*margin-right: auto;*/
    font-size: 16px;
    font-weight: bold;
  }

  .index-form-container p {
    text-align: center;
    margin: 0;
    font-size: 18px;
  }

  .index-form-container a {
    color: #00796b;
    text-decoration: underline;
    font-weight: bold;
  }

/* Mobilde alt alta sıralama */
@media (max-width: 768px) {
  .index-form-container form input[type="text"],
  .index-form-container form input[type="email"],
  .index-form-container form input[type="password"] {
    width: 100% !important;
  }
  .index-form-container{
      justify-content: center !important;
      gap: 20px;
  }
    .index-form-container form {
    flex-direction: column !important;
    width: 100% !important;
    text-align: center;
  }
 
}

footer {
    background-color: #005690;
    color: #ffffff;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffc107; /* Altın sarısı vurgu */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-section {
    flex: 1 1 250px;
    min-width: 200px;
}

.footer-section h4,
.footer-section h2 {
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #e0e0e0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

  

#mesajModal {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        max-width: 400px;
        width: 90%;
        font-family: 'Segoe UI', sans-serif;
    }

    #mesajModal form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    #mesajModal textarea {
        resize: none;
        height: 120px;
        padding: 10px;
        font-size: 15px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-family: inherit;
    }

    #mesajModal button {
        padding: 10px;
        font-size: 15px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    #mesajModal button[type="submit"] {
        background-color: #005690;
        color: #fff;
    }

    #mesajModal button[type="submit"]:hover {
        background-color: #004272;
    }

    #mesajModal button[type="button"] {
        background-color: #eee;
        color: #333;
    }

    #mesajModal button[type="button"]:hover {
        background-color: #ddd;
    }
    
        #geriBildirimModal {
        display: none;
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        color: #333;
        padding: 15px 20px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        z-index: 10000;
        font-family: 'Segoe UI', sans-serif;
        min-width: 250px;
        text-align: center;
        transition: opacity 0.3s ease;
    }

    #geriBildirimModal.success {
        border-left: 5px solid #4CAF50;
    }

    #geriBildirimModal.error {
        border-left: 5px solid #F44336;
    }
    

    
.kullanici-araclari {
    display: flex;
    flex-wrap: wrap;
    max-width: 640px;
    gap: 20px;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
    margin-top: 10px;
}

.uyari-modal {
    display: none; /* Başlangıçta gizli */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

/* Modal içeriği */
.uyari-modal-icerik,
#duzenleForm {
    position: relative; /* Çarpı konumlandırmak için */
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-family: Arial, sans-serif;
    animation: fadeIn 0.3s ease-in-out;
}

/* Form girdileri */
.form-input textarea,
.form-input input[type="number"]
            {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 14px;
}

/* Düğmeler */
.form-input button {
    padding: 10px 20px;
    margin: 5px 5px 0 0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s ease;
}


#confirmSil {
    background-color: #4CAF50;
    color: white;
}
#onaylaResimSil {
    background-color: #4CAF50;
    color: white;
}
#hayirVazgec{
    background-color: #f44336;
    color: white;
}


/* Çarpı (kapat) butonu */
.close-btn {
    font-size: 40px;
    font-weight: bold;
    color: red;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    z-index: 10;
}

.close-btn:hover {
    color: black;
}

/* Giriş animasyonu */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
#fiyatAlani{
    align-items: center;
}
.resim-ekle-btn img {
    margin: 5px;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd; /* Açık gri sınır */
    cursor: pointer;
    transition: transform 0.3s ease;
    border: none;
}

.resim-ekle-btn img:hover {
    transform: scale(1.05); /* Resme hover efekt ekleyelim */
}
#loadingOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-container {
  text-align: center;
}

.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #ffffff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin: auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



.close {
    font-size: 40px;
    font-weight: bold;
    color: red;
    float: right;
    cursor: pointer;
}
.close:hover {
    color: black;
}

.close-okuma {
    font-size: 40px;
    font-weight: bold;
    color: red;
    float: right;
    cursor: pointer;
}
.close-okuma:hover {
    color: black;
}

.modal-content {
    margin: auto;
    background-color: #fff;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    border-radius: 15px 0 15px 0;
}

#mesajIcerigi{

    
}

#mesajListesi{
    display: flex;
    flex-direction: column;
    gap: 10px;
    
}
#sendMessageForm{
     margin: 10px 10px 0px 10px; 
     display: flex; 
     gap: 10px;
}
.garaj-sahibi-ana-blok{
    margin: 10px auto 10px auto;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    max-width: 1080px;
}
.garaj-sahibi-ana-blok button:hover{
    background-color: #9ec3d1;
}





.model-card {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    text-align: center;
    padding: 10px;
    color: black;
    transition: transform 0.2s;
    cursor: pointer;
}
.model-card h4{
    margin: 0;
}
.model-card p {
    margin: 0;
}
.model-card:hover {
    transform: scale(1.05);
    color: white;
    background-color: #adadad;
}

.model-card img {
    width: 50px;
    height: auto;
}
#sponsorlar-kutusu{
    width: 100%;
    max-width: 1200px;
    margin: 2px auto;
}
.sponsor-karti {
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fafafa;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 15px;
}

.sponsor-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.sponsor-logo {
  display: flex;
  justify-content: center;  /* Yatayda ortalama */
  align-items: center;      /* Dikeyde ortalama */
  height: 100%;             /* Veya sabit bir yükseklik: örn. 300px */
}

.sponsor-logo img {
  max-width: 200px;
  border-radius: 8px;
}


.sponsor-icerik {
  flex: 1;
  min-width: 200px;
}

.harita-frame {
  flex: 1;
  min-width: 300px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

.harita-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

