/* styles.css */

/* Container for the image */
.image-container {
  text-align: center;
  margin-bottom: 20px;
}

/* Ensure the image is responsive */
.image-container img {
  max-width: 100%;
  height: auto;
}

/* Container for the text below the image */
.text-container {
  text-align: center;
  margin-top: 10px;
  font-size: 18px;
}

/* Container for the button images */
.button-container {
  background-color: transparent;
  display: flex;
  justify-content: space-between;
}

/* Styling the button images */
.button-container img {
  height: auto;
  cursor: pointer;
}
/* width: 50px; /* Adjust the size of your button images */

.btn-inactive {
  cursor: not-allowed; /* Change the cursor to indicate the button is disabled */
  opacity:0.5;
}

 
