/* General Styles */
body {
  background-color: #800080; /* Purple background matching the logo */
  color: #ffffff; /* White text */
  font-family: "Helvetica Neue", Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Changed from height to min-height */
  margin: 0;
  text-align: center;
  flex-direction: column;
}

h1 {
  font-size: 3rem;
  margin: 0;
  color: #ffffff; /* White color for heading */
}

p {
  font-size: 1.2rem;
  color: #ffffff; /* White text */
  margin: 10px 0 30px;
  line-height: 1.6; /* Added for better readability */
}

/* Role Selection Styles */
.role-selection {
  margin-bottom: 20px;
}

.role-selection p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.role-button {
  background-color: #ffffff; /* White background for buttons */
  color: #800080; /* Purple text for buttons */
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  margin: 5px;
}

/* Input Field Styles */
input[type="text"] {
  padding: 15px; /* Increase padding for a larger input field */
  font-size: 1.2rem; /* Increase font size for better readability */
  border-radius: 20px;
  border: 1px solid #ffffff;
  width: 300px; /* Increase width of the input field */
  text-align: center;
  margin-bottom: 5px;
}

/* Button Styles */
.button {
  background-color: #ffffff; /* White background for button */
  color: #800080; /* Purple text for button */
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 30px;
}

/* Emoji and Footer Icon Styles */
.emoji {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ffffff; /* White color for emoji text */
}

.footer-icon {
  font-size: 2rem;
  color: #ffffff; /* White color for footer icon */
}

.instagram-icon {
  width: 40px;
  height: 40px;
}

/* Fleet Info View Styles */
#fleet-info-view {
  background-color: #800080; /* Same background color */
  color: #ffffff; /* White text */
  font-family: "Helvetica Neue", Arial, sans-serif;
  max-width: 800px; /* Constrain the width */
  margin: 0 auto; /* Center the content */
  padding: 20px; /* Add padding */
  text-align: left; /* Align text to the left */
  line-height: 1.6; /* Better line spacing */
  display: none; /* Ensure it's hidden by default */
}

#fleet-info-view h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-top: 0;
  text-align: center; /* Center the title */
}

#fleet-info-view h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-top: 20px;
}

#fleet-info-view p {
  font-size: 1.2rem;
  margin: 10px 0 20px;
  line-height: 1.6; /* Line spacing for readability */
}

#fleet-info-view .button {
  background-color: #ffffff; /* White background for button */
  color: #800080; /* Purple text for button */
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

/* Booking Fee View Styles */
#booking-fee-view {
  background-color: #800080; /* Same background color */
  color: #ffffff; /* White text */
  font-family: "Helvetica Neue", Arial, sans-serif;
  max-width: 800px; /* Constrain the width */
  margin: 0 auto; /* Center the content */
  padding: 20px; /* Add padding */
  text-align: left; /* Align text to the left */
  line-height: 1.6; /* Better line spacing */
}

#booking-fee-view h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-top: 0;
  text-align: center; /* Center the title */
}

#booking-fee-view h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-top: 20px;
}

#booking-fee-view p {
  font-size: 1.2rem;
  margin: 10px 0 20px;
  line-height: 1.6; /* Line spacing for readability */
}

#booking-fee-view .button {
  background-color: #ffffff; /* White background for button */
  color: #800080; /* Purple text for button */
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

/* Stripe Setup Complete View Styles */
#stripe-setup-complete-view {
  background-color: #800080; /* Same background color */
  color: #ffffff; /* White text */
  font-family: "Helvetica Neue", Arial, sans-serif;
  max-width: 800px; /* Constrain the width */
  margin: 0 auto;
  padding: 20px;
  text-align: center; /* Center the text */
  line-height: 1.6; /* Better line spacing */
}

#stripe-setup-complete-view h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-top: 0;
}

#stripe-setup-complete-view h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-top: 20px;
}

#stripe-setup-complete-view p {
  font-size: 1.2rem;
  margin: 10px 0 20px;
  line-height: 1.6; /* Line spacing for readability */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  body {
    padding: 20px; /* Add padding on smaller screens */
    min-height: auto; /* Adjust height */
  }

  #fleet-info-view,
  #booking-fee-view,
  #stripe-setup-complete-view {
    padding-top: 100px; /* Increase top padding for smaller screens */
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  p {
    font-size: 1rem;
  }

  input[type="text"] {
    width: 100%; /* Make input field full width */
  }
}
