/* Global Styles */
body {
  font-family: "Arial", sans-serif;
  background-color: #f4f4f9;
  color: #333;
}

/* Admin Page Styles */
#imagePreview {
  text-align: center;
}

#previewImg {
  max-width: 100%;
  max-height: 300px; /* Limit preview image size */
  object-fit: contain;
}

#uploadedImages {
  display: flex;
  flex-wrap: wrap;
  gap: 15px; /* Reduced gap between images */
  justify-content: flex-start;
  margin-top: 20px;
}

#uploadedImages .image-item {
  position: relative;
  width: 120px; /* Smaller size for images */
  text-align: center;
}

#uploadedImages img {
  width: 100%;
  height: 100px; /* Adjust height for smaller images */
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 10px; /* Added space between images and the delete button */
}

#uploadedImages .delete-btn {
  display: block;
  margin-top: 5px;
  background-color: red;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
  width: 100%;
}

#uploadedImages .delete-btn:hover {
  background-color: darkred;
}

/* Ensure all gallery images have the same width and height */
.gallery-item {
  padding: 10px;
  display: flex;
  justify-content: center;
}

.gallery-image {
  width: 100%; /* Ensure images take up full width of their container */
  height: 250px; /* Set a fixed height */
  object-fit: fill; /* Ensure the image covers the area without distortion */
}

/* Carousel image adjustments */
.carousel-inner img {
  width: 100%;
  height: 80vh;
  object-fit: contain;
}
