html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

#imageContainer {
  margin-top: 7%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.tophead {
  margin-top: 40px;
}
#upperSection {
    width: 100%;
    height: 50px; /* Adjusted height */
    text-align: center;
    margin-top: 10px;
}

#paypalFormContainer {
  margin-top: 20px; /* Adjust margin for better spacing */
  padding: 20px; /* Padding around the container */
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Horizontally center the container */
  justify-content: center; /* Vertically center the container */
  width: 80%; /* Adjust width for responsiveness */
  text-align: left; /* Keep text aligned to the left */
  max-width: 600px; /* Limit the maximum width */
  margin-left: auto;
  margin-right: auto;
}

.tophead h1 {
  font-size: 20px; /* Adjust the font size for the slogan */
  margin: 20px 0;
  padding: 0;
}

.poscontainer p {
  margin: 5px 0;
  font-size: 16px; /* Adjust font size for better readability */
}

/* Center the PayPal button */
.poscontainer form {
  display: flex;
  justify-content: center; /* Horizontally center the button */
  margin-top: 20px; /* Adjust the spacing between text and button */
}

.poscontainer input[type="image"] {
  max-width: 200px; /* Control button size */
  height: auto;
}


/* Card */
.card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Success & Cancel Styles */
.success {
    border-left: 6px solid #4CAF50;
}

.cancel {
    border-left: 6px solid #1b0280;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.success .btn {
    background: #4CAF50;
}

.cancel .btn {
    background: #1b0280;
}

.btn:hover {
    opacity: 0.8;
}