.pageContainer {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-color);
  background-image: url('/floral-pattern.png'); /* Optional subtle floral pattern */
  background-size: cover;
  padding: 20px;
}

.browserFrame {
  background: var(--background-color);
  border-radius: 8px;
  padding: 2rem;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.header {
  font-size: 2rem;
  font-weight: bold;
  color: var(--header);
  text-align: center;
  margin-bottom: 0.5rem;
}

.subHeader {
  color: var(--sub-header);
  text-align: center;
  margin-bottom: 2rem;
}

.rsvpName {
  color: var(--sub-header);
}

.rsvpForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rsvpForm input,
.rsvpForm select {
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  background-color: white;
  color: var(--form-input);
}

.rsvpForm input::placeholder {
  color: var(--form-placeholder);
}

.rsvpDate {
  color: var(--sub-header);
}

.rsvpForm button, .locationButton {
  padding: 0.8rem;
  background-color: var(--submit-button);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.footer {
  text-align: center;
  margin-top: 1.5rem;
  font-family: 'Brush Script MT', cursive;
  font-size: 1.5rem;
  color: white;
}

/* Restricted access & errors */
.rsvpRestricted {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.restrictedCard {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  max-width: 500px;
  text-align: center;
}

.restrictedCard h3 {
  color: var(--restricted-card-content);
  margin-bottom: 1rem;
}

.restrictedCard p {
  color: var(--restricted-card-content);
  line-height: 1.5;
}

.rsvpSubmitted {
  text-align: center;
  padding: 2rem;
  background: #f8f8f8;
  border-radius: 8px;
  margin: 2rem 0;
}

.errorContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f8f8;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.errorCard {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}

.errorTitle {
  color: #d32f2f;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.errorMessage {
  color: #555;
  line-height: 1.5;
}

/* Mobile friendly */
@media (max-width: 600px) {
  .browserFrame {
    padding: 1.5rem;
  }
}
