@charset "utf-8";
/* ==========================================================
   Water Lilly Pharmacy
   modal_style.css
   Page layout and page-specific components only
   ========================================================== */
/* ---------- Welcome Modal ---------- */
.welcome-modal {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.68) !important;
  border: none;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}
.modal-content.welcome-modal {
  background-color: rgba(255, 255, 255, 0.68) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.welcome-modal-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 70px;
  color: #F0F8FF; /* Color White */
  background-color: #301A4B; /* Color Amethyst */
}
.welcome-modal-body {
  padding: 1.5rem 2rem 2rem;
}
.welcome-modal-logo {
  position: absolute;
  top: 6px;
  left: 30px;
  width: 72px;
  height: auto;
}
.welcome-modal-banner-text {
  width: 100%;
  padding: 20px 0 0 15px;
  font-weight: 700;
  text-align: center;
}
.welcome-modal-text {
  color: #1E3F20; /* Color Black Forest */
  font-weight: 400;
  text-align: center;
}
.welcome-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 1rem;
}
.welcome-images img {
  max-width: 100%;
  height: auto;
}
.welcome-divider {
  margin: 0.5rem 0;
}
.modal-backdrop.show {
  opacity: 0.4;
}