/* Gallery container */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 10 images per row */
  gap: 10px;
  margin: 20px 0;
  padding: 40px !important;
	margin-right:30px;
}


@media screen and (max-width: 650px) {
	.image-gallery {
	  grid-template-columns: repeat(2, 1fr); /* 10 images per row */
	  margin: 0;
	  padding: 20px !important;
	}
}


/* Image selection styling */
.image-selection {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

/* Hide the radio button */
.image-selection input[type="radio"] {
  display: none;
}

/* Image styles */
.gallery-image {
  width: 100%; /* Full width of the grid cell */
  height: 100px; /* Fixed height */
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease; /* Smooth zoom effect and background transition */
  border: 2px solid transparent; /* No border initially */
}

/* Highlight selected image */
.selected {
  border: 2px solid #3498db; /* Blue border for selected images */
  background-color: rgba(52, 152, 219, 0.2); /* Light blue background */
  transform: scale(1.05); /* Slight zoom effect */
}

/* Optional hover effect for unselected images */
.gallery-image:hover {
  transform: scale(1.1); /* Zoom effect on hover */
  border: 2px solid #ddd; /* Add a light gray border on hover */
}



/* Type your CSS code here. */

.akoia_title {
    display: flex;
    background: #A0A0A059;
    padding: 10px 15px;
    margin-left: 20%;
    margin-top: 60px;
    margin-bottom: 30px;
    align-items: center;
}

.akoia_title_center {
  display: flex;
  background: #A0A0A059;
  padding: 10px 15px;
  margin: 30px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.akoia_title_center h5 {
  font-weight: bold;
  font-size: 30px;
  color: #000000;
  padding: 0px !important;
  margin: 0px;
}


.akoia_title img {
margin-left: 10px;
  width: 35px;
  height: 35px;
  margin-right: 20px;
}

.akoia_title h3 {
    margin: 0;
    color: #696681;
    display: inline-block;
    font-size: 28px;
    font-weight: bold;
}


.akoia_submit_form p {
  background: #A0A0A059;
  padding: 10px 40px;
  margin-top: 20px;
}


.akoia_submit_form h4 {
    margin: 0;
    color: #000000;
    display: inline-block;
    font-size: 22px;
    font-weight: bold;
    margin-right: 30px;
}

button[type="submit"]{
  background: #6A6A82 !important;
  font-size: 30px;
  font-weight: 300;
  margin-right:40px;
}