/* Reset Styles */
  input {
    font-family: Arial, Helvetica, sans-serif;
  }
  /* Body Styles */
  body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    padding: 20px;
    margin:10px;
    
  }
  form {
  animation: slideIn 0.8s forwards; /* Slide in animation */
}

/* Apply animation to the payment details */
#payment_details.hidden {
  animation: slideOut 0.8s forwards; /* Slide out animation */
}

/* Apply animation to the button */
#show_details_button {
  transition: opacity 0.8s ease-in-out;
}

/* Hide the button when payment details are shown */
#show_details_button.hide {
  opacity: 0;
}
  input::placeholder {
    opacity: 0.4; /* Adjust the opacity value as needed */
  }
  textarea::placeholder {
    opacity: 0.4; /* Adjust the opacity value as needed */
  }
  /* Header Styles */
  header {
    text-align: center;
    margin-bottom: 20px;
  }
  
  header h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  header h5 {
    font-size: 16px;
    color: #888;
  }
  .oldtx{
    display: none;
  }
  /* Total Styles */
  .total {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(1, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
  }
  
  .total form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .total label {
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .total select,
  .total input,
  .total textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #008000; /* Green border for form elements */
    border-radius: 5px;
    box-sizing: border-box;
    font-family: "Roboto", Arial, sans-serif; /* Using Roboto font */
    font-size: 16px;
  }
  
  .total button {
    padding: 10px 20px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Your_Custom_Font', Arial, sans-serif;
     
  }
  
  .total button:hover {
    background-color: #45a049;
  }
  
  /* Footer Styles */
  h4 {
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
    color: #888;
  }
  
  h4 a {
    color: #4caf50;
    text-decoration: none;
  }
  
  h4 a:hover {
    text-decoration: underline;
  }


  /* qrform css */
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.qrform form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.qrform p {
    margin-bottom: 10px;
}

.qrform input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.qrform input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.qrform input[type="submit"]:hover {
    background-color: #45a049;
}

.qrform img {
    display: block;
    margin: 0 auto;
    max-width: 50%;
    height: auto;
    padding: 10px;
}
.qrform h4{
    background-color: #333;
    text-align: center;
    padding: 20px;
    color: #fff;
    margin-right: 1%;
  }
  
  