#mockup{
  width :100%;
  height: 100%;
}
.navbar{
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: center;
}
body{
  background-color: #fff; 
}

.header{
  font-size: 1.7rem;
  letter-spacing:3px; 
  text-align: center;
  padding-top: 5%;
}

.subTitle{
  padding-top: 4%;
  text-align: center;
  line-height: 2rem;
}

.highlight{
  display: inline-flex;
  background: transparent;
  border: 1px solid #000;
  border-radius: 3px;
  color: #000;
  padding: 5px 5px 5px 5px;
}

#send{
  background :#fff;
  color :#000;
  font-size: 16px;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 10px 10px 10px 10px;
}

#send:active{
  background :#fff;
  color :#464040;
  border: 1px solid #141414;
}

.button{
  transform: translateY(2rem);
  display:flex;
  align-items: center;
  justify-content : center;
}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.Result {
  background-color: #ffffff; /* White background for a clean look */
  border: 1px solid #dddddd; /* Light gray border for subtle separation */
  border-radius: 10px; /* Smooth rounded corners */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
  padding: 2rem; /* Inner spacing */
  max-width: 500px; /* Constrain width for readability */
  margin: 2rem auto; /* Centered on the page */
  text-align: center; /* Center text alignment */
  font-family: Arial, sans-serif; /* Modern font */
  color: #333333; /* Dark text for contrast */
}

.Result h3 {
  font-size: 1.8rem; /* Slightly larger heading */
  color: #0d6efd; /* Primary color for emphasis */
  margin-bottom: 1rem; /* Space below the heading */
}

.Result p {
  font-size: 1.2rem; /* Larger font for key details */
  line-height: 1.5rem; /* Improve readability */
  margin-bottom: 1rem; /* Space between text elements */
}

.Result .highlighted {
  font-weight: bold; /* Bold text for key data */
  color: #0d6efd; /* Match primary theme color */
}

.Result .action-button {
  background-color: #0d6efd; /* Primary color */
  color: #ffffff; /* White text */
  border: none; /* Remove default border */
  border-radius: 5px; /* Rounded corners */
  padding: 10px 20px; /* Comfortable button size */
  font-size: 1rem; /* Button text size */
  cursor: pointer; /* Pointer cursor for interactivity */
  transition: background-color 0.3s ease; /* Smooth hover effect */
}

.Result .action-button:hover {
  background-color: #084298; /* Darker hover state */
}

/* Readonly container styling (optional) */
.readonly-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* Readonly style for p elements */
.readonly {
  background-color: #f8f9fa; /* Light gray background */
  border: 1px solid #ced4da; /* Border like an input field */
  border-radius: 4px; /* Rounded corners */
  padding: 8px 10px; /* Padding for better spacing */
  font-size: 14px; /* Text size */
  font-family: Arial, sans-serif; /* Font style */
  color: #495057; /* Dark gray text */
  pointer-events: none; /* Make non-editable */
  user-select: none; /* Prevent text selection */
}
.footer {
  background-color: #1c1c1c;
  color: #ffffff;
  font-size: 0.9rem;
}

.footer span {
  color: #0d6efd;
}

#confirmImage{
  width: 100%;
}
