.room-column {
    background-color: white;
    color: black;
    padding-bottom: 10px;
    font-size: var(--font-size);
    margin-bottom: 15px;
    margin-right: 15px;
    flex-grow: 1;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.column-and-button {
    display: flex;
    flex-direction: column;
    flex-grow: 1;

}

h2 {
    color: white;
    text-align: center;
    margin: 0;
    padding: .25rem;
    font-weight: normal;

}

.section-header {
    background-color: #8d7644;
    padding: 0;
}

#container {
    max-width: 600px;
    margin: 0 auto;
    flex-grow: 1;
    display: flex;
    flex-direction: row;
}

summary {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Oswald', Helvetica, Arial, Lucida, sans-serif;
}


details {
  font-family: "Open Sans", Arial, sans-serif;
}

p {
    font-weight: bold;
    font-style: italic;
}

details[open] {
  max-height: 700px; /* Adjust based on content */
  overflow: hidden;
  animation: expand 1s ease-in-out;
}

@keyframes expand {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rooms {
    margin-bottom: 10px;
}

.room-box {
    text-align: center;
}

.button-box {
    margin: 0 auto;
    text-align: center;
}

/* Custom CSS for Stripe button */
#purchaseButton {
  background-color: #635BFF !important; /* Stripe's brand color */
  color: white !important;
  border-radius: 5px;
  padding: 12px 30px;
  font-size: 16px;
  font-style: italic;
  font-weight: bold;
}

#purchaseButton span {
  display: none; /* Hide default text */
}

.custom-stripe-button-text::before {
  content: 'Pay with Stripe'; /* Custom button text */
}

