.under-dev-block {
  background: url('/static/simple_look/img/under_construnction.gif') no-repeat center center;
  background-size: contain;
  height: 750px; /* adjust height as needed */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
}

.under-dev-block .text-center {
  background-color: rgba(0,0,0,0.65);
  padding: 1rem 2rem;
  border-radius: 8px;
  color: white;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 0 10px rgba(0,0,0,0.7);
}
.under-dev-block {
  background-size: cover;
  background-position: center top; /* shifts image upward */
}
.bottom-message {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 80px; /* adjust to leave space for footer height */
  display: flex;
  justify-content: center;
  pointer-events: none; /* so it doesn't block clicks if you want */
  z-index: 1000; /* make sure it’s on top */
}

.bottom-message .text-center {
  background-color: rgba(0,0,0,0.4);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.8);
  pointer-events: auto; /* allow interaction if needed */
}
