.main-image-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.zoom-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0,0,0,0.6);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}
.thumb-img {
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.thumb-img.active {
  border-color: #0d6efd;
}
@media (max-width: 768px) {
  .main-image-wrapper {
    height: 250px;
  }
}

.gallery-items-grid .gallery-item .gallery-thumb-wrapper {
  position: relative;
  border: 1px solid #e0e0e0;
  padding: 5px;
  border-radius: 4px;
  background-color: #f9f9f9;
}
.gallery-items-grid .gallery-item .gallery-thumb-wrapper img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.gallery-items-grid .gallery-item .delete-corp-gallery-image-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: .2rem .4rem;
  font-size: .75rem;
}

/* Dropzone stilleri (add sayfanızdan alıntı veya benzeri) */
.listing-gallery-dropzone {
  border: 2px dashed #007bff;
  border-radius: 5px;
  padding: 25px;
  text-align: center;
  cursor: pointer;
  background-color: #f8f9fa;
  color: #007bff;
}
.listing-gallery-dropzone.dragover {
  background-color: #e9ecef;
  border-color: #0056b3;
}
.listing-gallery-preview-container .listing-gallery-preview-item {
  position: relative;
  padding: 5px; /* Bootstrap col padding'i ile çakışmaması için */
  /* Sütunlar (col-lg-3 vb.) HTML'de eklenecek */
}
.listing-gallery-preview-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #ddd;
}
.listing-gallery-remove-btn {
  position: absolute;
  top: 10px; /* Preview item padding'ine göre ayarla */
  right: 10px; /* Preview item padding'ine göre ayarla */
  background-color: rgba(220, 53, 69, 0.8);
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 22px; /* Dikey ortalama */
  text-align: center;
  cursor: pointer;
  padding: 0;
}
.listing-gallery-remove-btn:hover {
  background-color: #dc3545;
}