* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "AgainstRegular";
  src: url("./fonts/against regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

body,
html {
  font-family: "AgainstRegular";
  background-image: url("https://storage.googleapis.com/daata-bucket-cdn/okra/images/background-okra-desktop-new.png");
  background-size: cover;
  background-position: center;
}

h1 {
  font-size: 28px;
  color: #ede1d6;
  font-family: "AgainstRegular";
  margin: 30px 0px;
  text-align: center;
}

h3 {
  font-size: 20px;
  color: #ede1d6;
  font-family: "AgainstRegular";
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

h4 {
    font-size: 16px;
    color: #ede1d6;
    font-family: "AgainstRegular";
    text-align: center;
    margin-top: 20px;
    margin-bottom: 15px;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.logo {
  width: 280px;
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.theme-button {
  height: 56px; /* Adjust the height to fit the background image */
  cursor: pointer;
  border: none;
  border-radius: 15px;
  color: #3d2a35;
  background-color: rgba(235, 218, 205, 1);
  transition: background-color 0.3s ease;
  font-size: 20px;
  font-family: "AgainstRegular";
  font-weight: bold;
}
/* Styling for input and select placeholders */
input::placeholder,
select option[value=""] {
  font-family: "AgainstRegular", sans-serif;
  font-size: 15px;
  font-weight: bold;
  color: #3d2a35;
}

input#allergy::placeholder {
    font-size: 14px;
}

/* Ensure consistent font styling across all form fields */
input,
select {
  font-family: "AgainstRegular", sans-serif;
  font-size: 15px;
  font-weight: bold;
  color: #3d2a35;
  background-color: rgba(
    235,
    218,
    205,
    0.8
  ); /* Partially transparent background */
  width: 369px;
  height: 56px;
  padding: 0 10px;
  border: 1px solid #ebdacd;
  box-sizing: border-box;
  border-radius: 15px;
}

input[type="number"],
input[type="tel"],
input[type="date"],
select {
  appearance: none; /* Remove default arrow and styles in some browsers */
}

/* Placeholder color for text inputs */
input::placeholder {
  color: #3d2a35;
}

/* Select placeholder (first option) */
select option[value=""] {
  color: #3d2a35;
}

input,
select,
button {
  width: 100%;
  margin-top: 5px;
  border: 1px solid #3d2a35;
  border-radius: 15px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}
/* Remove yellow border (focus outline) */
input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none; /* Removes the default focus outline */
  border-color: #3d2a35; /* Optional: Customize the focus border color */
  box-shadow: 0 0 5px rgba(61, 42, 53, 0.5); /* Optional: Add shadow for focus effect */
}

/* Input field styling as divs */
.input-field {
  width: 100%;
  height: 46px;
  background-color: rgba(235, 218, 205, 0.8);
  border-radius: 5px;
  font-size: 25px;
  color: #3d2a35;
  font-family: "AgainstRegular", sans-serif;
  font-weight: bold;
  outline: none;
  position: relative;
  cursor: text;
}

/* Hide the original input fields */
/* input[type="text"],
input[type="tel"],
input[type="number"],
input[type="date"],
select {
  display: none;
} */
/* Floating label styles */

input[type="date"]::-webkit-datetime-edit-text,
input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
  color: #3d2a35; /* Hide the text */
}

.thank-you-message {
  background-color: rgba(235, 218, 205, 0.8);
  color: #3d2a35;
  text-align: center;
  padding: 20px;
  border-radius: 15px; /* Optional: to give rounded corners */
  margin: 20px auto;
}

.thank-you-message h1 {
  margin: 0;
  color: #3d2a35;
  font-size: 18px; /* Adjust as necessary */
}

.thank-you-message p {
  margin: 10px 0 0;
  color: #3d2a35;
  font-size: 18px; /* Adjust as necessary */
}

#time option {
  background: transparent;
  color: inherit;
  pointer-events: none;
}

.reservation-receipt {
  background-color: rgba(235, 218, 205, 0.8);
  color: #3d2a35;
  padding: 20px;
  border-radius: 15px; /* Optional: to give rounded corners */
  margin: 20px auto;
    text-align: left;
  /* min-width: 40%; */
}

.reservation-details {
  margin: 0;
  padding: 0;
  list-style: none;
}
.reservation-details li {
  margin: 10px 0;
  font-size: 18px; /* Adjust as necessary */
}
.label {
  font-weight: bold;
  color: #3d2a35;
}
.value {
  color: #3d2a35;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  body {
    background-image: url("https://storage.googleapis.com/daata-bucket-cdn/okra/images/background-okra-new.png"); /* Replace with your mobile image */
  }

  .theme-button {
    font-size: 26px; /* Slightly smaller font size */
  }
}

@media (max-width: 480px) {
  .logo {
    /* width: 269px; */
    height: 60px;
      margin-top: 20px;
    margin-bottom: 0px;
  }
  h1 {
    font-size: 16px;
  }
  h3 {
    font-size: 14px;
  }
  h4 {
    font-size: 12px;
  }
  .form-group {
    display: flex;
    justify-content: center;
  }
  input,
  select {
    width: 269px;
    height: 46px;
  }
  .theme-button {
    width: 269px;
    min-width: unset; /* Remove min-width */
    font-size: 16px; /* Smaller font size */
    height: 46px; /* Adjust button height for small screens */
  }

  .button-container {
    gap: 20px; /* Reduce gap between buttons */
  }
  .reservation-details li {
    font-size: 14px; /* Adjust as necessary */
  }
    .thank-you-message {
        min-width: 40%; /* Adjust as necessary */
    }
  .thank-you-message h1 {
    font-size: 14px; /* Adjust as necessary */
  }

  .thank-you-message p {
    font-size: 14px; /* Adjust as necessary */
  }
}
