body {
  font-family: 'Open Sans';
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.banner {
  background-color: #472f91;
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner img {
  max-height: 50px;
  width: auto;
  margin: 0 auto;
  display: block;
  position: relative;
}

/* Desktop version */
@media (min-width: 768px) {
  .banner img {
    left: -60px; /* Adjust this value for desktop offset */
  }
}

/* Mobile version */
@media (max-width: 767px) {
  .banner img {
    left: -20px; /* Adjust this value for mobile offset */
  }
}


.menu {
  display: none;
  position: fixed; /* Make the menu cover the entire screen */
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; /* Make the menu cover the entire screen width */
  background-color: rgba(0, 0, 0, 0.9); /* Dark overlay with some transparency */
  color: #fff;
  padding-top: 60px;
  transition: 0.3s;
  z-index: 1000; /* Ensure the menu is on top of everything else */
  text-align: center; /* Center the text in the menu */
}

.menu a {
  padding: 15px 30px; /* Increase padding for larger click area */
  text-decoration: none;
  color: #fff;
  display: block;
  font-size: 24px; /* Increase font size */
}

.menu a:hover {
  background-color: #472f91;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 36px; /* Increase the size of the close button */
  color: #fff;
  cursor: pointer;
}

.close-btn:hover {
  color: #472f91;
}

.open-menu {
  display: block;
}

.menu-btn {
  cursor: pointer;
  padding: 10px;
  background-color: #472f91;
  border: none;
  color: #fff;
  border-radius: 5px;
  margin-left: 20px;
}

.menu-btn:hover {
  background-color: #e04d00;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}

.social-icon img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.social-icon img:hover {
  transform: scale(1.1);
}

.search-container {
  text-align: center;
  margin: 50px auto;
  max-width: 500px;
  width: 100%;
}

.search-container h1 {
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 15px;
  max-width: 300px; /* Restrict the maximum width of the input fields */
  margin: 0 auto 15px; /* Center align the input fields */
  font-size: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: left;
}

.input-group input {
  padding: 10px;
  width: 100%; /* Make the input fields take up the full width of the .input-group */
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.input-group input:focus {
  border-color: #ff6600;
}

.input-group input[readonly] {
  background-color: #f9f9f9;
  color: #777;
  cursor: not-allowed;
}

.button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  background-color: #472f91;
  color: #fff;
  transition: background-color 0.3s ease;
  margin-top: 30px; /* Space between form and button */
  margin-bottom: 30px;
  text-decoration: none;
  font-family: 'Open Sans';
  
  

}

.button-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.button-stack .button {
  display: block;
  width: 80%; /* Optional: make them wider */
  max-width: 300px; /* Optional: control maximum width */
  text-align: center;
}

.button1 {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  background-color: #472f91;
  color: #fff;
  transition: background-color 0.3s ease;
  margin-top: 0px; /* Space between form and button */
  margin-bottom: 5px;
  text-decoration: none;
  font-family: 'Open Sans';
  
}



.album {
  width: 90%;
  max-width: 800px;
  margin: auto;
  text-align: center;
  padding: 20px;
 
 
  
}

h1,h2 {
  color: #333;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 25px;
  
}

.gallery,
.image-selection {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.image-container {
  position: relative;
  width: calc(33.33% - 20px);
  max-width: 250px;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.image-container:hover {
  transform: scale(1.05);
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.download-button {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s;
}

.download-button:hover {
  background-color: #ff5500;
}


.share-button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  width: 30px;  /* Adjust the width to control the size */
  height: 30px; /* Make the height equal to width for a perfect circle */
  text-decoration: none;
  border-radius: 50%;  /* Fully round the corners to make a circle */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  border: none; /* Remove any border */
  cursor: pointer; /* Change cursor to pointer on hover */
}

.share-button:hover {
  background-color: #ff5500
}


.no-images {
  color: #777;
}

.form-container {
  margin-top: 20px;
  text-align: center;
}

.form-container h2 {
  color: #333;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 15px; /* Center align and margin-bottom for spacing */
}

.form-group label {
  text-align: left;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .image-container {
      width: calc(50% - 20px);
  }

  .input-group label {
      text-align: left;
  }

  .search-container {
    padding: 0 15px; /* Add padding to the container to create space on the left and right */
    width: 100%; /* Ensure the container takes up the full width */
    box-sizing: border-box; /* Include padding in the element's total width */
  }

  .input-group input[type="text"] {
    width: 100%; /* Make the input field take up the full width of its container */
    padding-left: 10px; /* Optional: Add some padding inside the input field for text alignment */
    padding-right: 10px; /* Optional: Add some padding inside the input field for text alignment */
    box-sizing: border-box; /* Ensure the padding is included within the width */
  }

  .space {

    margin-top: 40px;
  
  }
}

@media screen and (max-width: 480px) {
  .image-container {
      width: 100%;
  }

  input[type="text"] {
      width: 100%;
  }

  .form-container input[type="text"],
  .form-container input[type="password"] {
      width: 100%;
  }

  .social-icons {
    flex-direction: column; /* Stack icons vertically */
    align-items: center;
  }
}


/* Custom styles for the Google sign-in button */
.google-login {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.g_id_signin {
  width: auto;
  padding: 0px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.password-group {
  position: relative;
}

.password-group .toggle-password {
  position: absolute;
  top: 35px;
  right: 10px;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
}

.password-group .toggle-password:hover {
  color: #333;
}


.error-message .recover-link {
  color: blue;
  text-decoration: underline;
  margin-left: 10px;
}

.error-message .recover-link:hover {
  color: darkblue;
  text-decoration: none;
}

.products {
  position: relative;
  width: 300px; /* Adjust based on your image size */
  margin: 20px auto; /* Center the container horizontally */
  text-align: center;
}



.product img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: -20px; /* Negative margin to overlap the button */
}

.product a.buy-button {
  position: absolute;
  bottom: 15%; /* Move the button higher */
  left: 50%;
  transform: translate(-50%, 50%);
  padding: 20px 15px; /* Adjust padding */
  background-color: #000000;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  padding: 20px 15px; /* Adjust the padding to control the button's position */
}
.product:hover {
  background-color: #e65c00; /* Darker shade for hover effect */
}

.buy-button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
  background-color: #472f91;
  color: #fff;
  transition: background-color 0.3s ease;
  margin-top: 0px; /* Space between form and button */
  margin-bottom: 30px;
  font-family: 'Open Sans';

}





/* Prevent zooming in on input fields on mobile devices */
input[type="text"], input[type="password"], input[type="email"], input[type="search"], input[type="tel"], input[type="number"], input[type="url"] {
  font-size: 20px;
}


#video {
  border: 1px solid #472f91;
  width: 320px;
  height: 240px;
}

.camera {
  width: 340px;
  display: inline-block;
}

.output {
  width: 340px;
  display: inline-block;
}

.contentarea {
  font-size: 16px;
  font-family: Arial;
  text-align: center;
  color: black;
  padding-top: 100px;
}


.content {

padding-left: 20px;

}


.faq-container {
  width: 80%;
  max-width: 400px;
  margin: 20px auto;
  text-align: center;
  
  
 
}
.faq {
  background: #472f91;
  margin-bottom: 0px;
  border-radius: 50px;
  overflow: hidden;
  

}
.faq-header {
  font-weight: bold;  /* Makes the text bold */
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  color: #FFFFFF;
}


.faq-content {
  overflow: hidden;
  transition: all 0.3s ease-out;
  padding-left: 15px;
  padding-right: 15px;
  background: #472f91;
  height: 0; /* Initially hidden */
  opacity: 0; /* Initially hidden */
  display: none; /* Initially hidden */
  Color: #FFFFFF;
  
}

.faq-content p {
  margin: 10px 0;
  padding: 0;

}
.faq.open .faq-content {
  display: block; /* Show content */
  height: auto; /* Let content expand fully */
  opacity: 1; /* Fade-in effect */
}
.faq .arrow-button {
  background-color: #ffffff;
  border: none;
  color: #472f91;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;

}

.faq.open .arrow-button {
  transform: rotate(180deg);
}


.deliver {
  border: 2px solid #472f91; /* Orange border */
  border-radius: 8px; /* Rounded corners */
  padding: 15px;
  margin: 20px 0;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Slight shadow for a 3D effect */
}

.deliver h3 {
  margin-left: 10px;
  font-size: 18px;
  color: #333;
}

.deliver i {
  font-size: 24px;
  color: #472f91;
}

.order-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.order-wrapper h1 {
  font-size: 28px;
  color: #ff6600;
  margin-bottom: 30px;
}

.order {
  width: 80%;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #ff6600; /* Added orange border */
  margin-bottom: 20px;
  text-align: center; /* Center text within each order card */
  box-shadow: none; /* Removed the shadow */
}

.order h2 {
  font-size: 24px;
  color: #ff6600;
  margin-bottom: 10px;
}

.order p {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.total-price {
  font-weight: bold;
  color: #ff6600;
}

.photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center the images horizontally */
  margin-top: 20px;
}

.photo {
  margin-right: 10px;
  margin-bottom: 10px;
}

/* New class for the update status */
.update-status {
  font-weight: bold !important;
  color: #03b32c !important; /* Green color */
  font-size: 50px !important;
  margin-bottom: 15px !important; /* Space between the update status and photos */
}

.order-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: none; /* Removed shadow from the images */
  border: 1px solid #ddd; /* Added light border to images */
}


.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: center;
}
.quantity-selector button {
  width: 30px;
  height: 30px;
  background-color: #ff6600;
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 4px;
}
.quantity-selector input {
  text-align: center;
  line-height: 40px; /* Center the text vertically */
  border: none; /* Removed border */
  padding: 0;
  margin: 0 5px;
}
.quantity-selector button:hover {
  background-color: #ff6600;
}
.quantity-selector button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}


  /* Additional styling to enhance the appearance */
  .quantity-selector button:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.quantity-selector button:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.quantity-selector {
 
    overflow: hidden;
    display: inline-flex;
}


/* Header for "Add more Photos to Save" */
.add-photo-header {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

/* Form and its elements styling */
.add-photo-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Wrapper for input and button */
.search-wrapper {
  position: relative;
  width: 80%;
  max-width: 600px;
  margin-bottom: 10px;
}

/* Input field styling */
.search-input {
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Search button inside input field */
.search-button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}

.search-button i {
  font-size: 18px;
  color: #472f91; /* Move icon color here */
}

/* Divider styling for "or" between input and QR button */
.or-divider {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Wrapper for Scan QR Code button */
.qr-code-wrapper {
  width: 80%;
  max-width: 600px;
  text-align: center;
  margin-bottom: 30px;
}

/* Add spacing to the next button */
.button + .button {
  margin-top: 30px;  /* Add more spacing between consecutive buttons */
}

/* Or, if the next button is an <a> tag instead of an <input> or <form> */
.button ~ a {
  margin-top: 30px;  /* Add more spacing if another link follows */
}

.loading-spinner {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed; /* Make the spinner fixed */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9); /* Semi-transparent black */
  z-index: 9999; /* Ensure it is above all other elements */
}

.loading-spinner p {
  color: white;
  font-size: 36px; /* Larger text for loading */
}

.fa-spin {
  margin-bottom: 20px; /* Space between spinner and text */
  font-size: 100px; /* Larger spinner */
  color: white;
}


.loading-spinner i {
  font-size: 100px;
  color: white;
}




    /* Styles for File Input and Buttons */
    .file-input-group {
      margin-bottom: 20px;
      text-align: center;
  }

  .file-input-group label {
      font-size: 1.2rem;
      margin-bottom: 10px;
      display: inline-block;
  }

  input[type="file"] {
      padding: 12px;
      font-size: 1rem;
      border-radius: 8px;
      border: 2px solid #ddd;
      cursor: pointer;
      max-width: 100%;
      box-sizing: border-box;
      background-color: #f2f2f2;
  }


  .consent-container {
    margin-top: 10px; /* Reduced margin for closer spacing */
    text-align: center;
    font-size: 14px;
}

.consent-container label {
    display: flex;
    align-items: center;
    justify-content: center;
}

.consent-container input[type="checkbox"] {
    margin-right: 10px;
}

#submitButton {
    margin-top: 10px; /* Reduced gap between the checkbox and "Search" button */
}

#iosMessage {
  display: none;
}

