.prices {
  display: flex;
  flex-direction: column;
  background-color: rgb(184, 247, 184);
  margin-top: clamp(12px, calc(12px + (38 * ((100vw - 300px) / 250))), 50px);
  padding-bottom: clamp(12px, calc(12px + (38 * ((100vw - 300px) / 250))), 50px);
}

.pricesBanner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(110px, calc(110px + (90 * ((100vw - 300px) / 250))), 200px);
  height: clamp(44px, calc(44px + (26 * ((100vw - 300px) / 250))), 70px);
  background-color: #e8bdff;
  border-radius: 20px;
}
.pricesBanner img {
  width: clamp(28px, calc(28px + (22 * ((100vw - 300px) / 250))), 50px);
  margin-left: -5px;
}
.pricesBanner h1 {
  color: #1bfc54;
  -webkit-text-stroke: 1px black; /* Outline width and color */
  font-weight: bold;
  font-size: clamp(28px, calc(28px + (22 * ((100vw - 300px) / 250))), 50px);
  margin-left: clamp(5px, calc(5px + (5 * ((100vw - 300px) / 250))), 10px);
  white-space: nowrap;
}

.pricesContainer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  background-color: rgb(184, 247, 184);
  width: 1150px;
  padding-left: 20px;
  padding-right: 20px;
  border-color: #e8bdff;
  border-width: 5px;
  border-style: solid;
  border-radius: 20px;
}

.pricesContainer ul {
  list-style:disc;
  font-size: clamp(12px, calc(12px + (12 * ((100vw - 300px) / 250))), 24px);
  padding-left: clamp(20px, calc(20px + (20 * ((100vw - 300px) / 250))), 40px);
}

.pricesList {
  color: #e8bdff;
  font-weight: bold;
  -webkit-text-stroke: 0.5px black; /* Outline width and color */
}

.zelleModalContent {
  background-color: white;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 5px 15px black;
  animation: fadeIn 0.3s ease-out;
  display: flex; /* Make modal-content a flex container */
  justify-content: center;
  align-items: center;
  width: 80%;
  height: fit-content
}
.zelleModalContent .closeModalButton {
  position: absolute; /* Position relative to .modal-content */
  top: 6px;
  right: 6px;
  cursor: pointer;
  width: clamp(20px, calc(10px + (10 * ((100vw - 300px) / 120))), 30px);
  margin: 0;
}

/* Styling for the Zelle QR display within its modal */
.zelleQRdisplay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  flex-grow: 1; /* Allows it to take available space within modalContent */
}

.zelleQRdisplay h2 {
  margin-top: 0;
  color: #A50cf8;
  -webkit-text-stroke: 1px black; /* Outline width and color */  font-size: 1.8rem;
  margin-bottom: clamp(10px, calc(10px + (10 * ((100vw - 300px) / 250))), 20px);
  font-size: clamp(32px, calc(32px + (28 * ((100vw - 300px) / 250))), 60px);
}

.zelleQRcode  {
  max-width: 80%; /* Ensure the QR code image doesn't overflow its container */
  width: clamp(200px, calc(200px + (100 * ((100vw - 300px) / 250))), 300px);;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  object-fit: contain; /* Ensure the QR code image fits entirely without cropping */
}

.zelleQRdisplay p {
  margin-top: clamp(10px, calc(10px + (5 * ((100vw - 300px) / 250))), 15px);
  font-size: clamp(15px, calc(15px + (5 * ((100vw - 300px) / 250))), 20px);
  color: black;
  text-align: center;
}

.zelleModal .closeButton {
  width: 50px
}

@media screen and (max-width: 1200px) {
    .pricesContainer {
    width: 95vw;
    }
  }