/* General Styling for the Vendor Application Page */
.vendor-application-section {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Heading Styles */
.vendor-application-section h2,
.vendor-application-section h3 {
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: rgb(19, 90, 197); /* Matching the header colors */
}

/* Instruction List Styling */
.vendor-application-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
  border: 2px solid #eee; /* Light border for better visibility */
  border-radius: 8px;
  background-color: #f9f9f9; /* Subtle background for separation */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.vendor-application-section ul li {
  margin-bottom: 10px;
  padding: 10px 10px;
  border-bottom: 1px solid #ddd;
}

.vendor-application-section ul li:last-child {
  border-bottom: none;
}

/* Highlighting List Numbers */
.vendor-application-section ul li::before {
  content: attr(data-step) " ";
  font-weight: bold;
  color: rgb(19, 90, 197); /* Same blue as header for consistency */
  display: inline-block;
  width: 25px;
  text-align: center;
}

/* Button Styling */
.vendor-application-section a.btn-highlight {
  display: inline-block;
  background-color: rgb(19, 90, 197);
  color: white;
  text-align: center;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.vendor-application-section a.btn-highlight:hover {
  background-color: #1256b0; /* Darker blue on hover */
}

/* Tax Registration Section Styling */
.tax-registration-info {
  margin-bottom: 30px;
  padding: 25px;
  border: 2px solid #d4a574; /* Gold border to highlight importance */
  border-radius: 8px;
  background-color: #fefdf8; /* Light cream background */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tax-registration-info h3 {
  color: #b8860b; /* Dark goldenrod for emphasis */
  margin-bottom: 15px;
  text-align: left;
}

.tax-registration-info h4 {
  color: rgb(19, 90, 197);
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.event-details {
  background-color: #f0f8ff; /* Light blue background */
  padding: 15px;
  border-radius: 5px;
  margin: 15px 0;
  border-left: 4px solid rgb(19, 90, 197);
}

.event-details ul {
  margin: 0;
  padding-left: 20px;
  background: none;
  border: none;
  box-shadow: none;
}

.event-details li {
  border: none;
  padding: 5px 0;
  margin-bottom: 5px;
}

.tax-registration-info ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.tax-registration-info ol li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.note-section {
  background-color: #fff3cd; /* Light yellow for notes */
  border: 1px solid #ffeaa7;
  border-radius: 4px;
  padding: 10px;
  margin: 10px 0;
}

.note-section ul {
  margin: 10px 0 0 0;
  padding-left: 20px;
  background: none;
  border: none;
  box-shadow: none;
}

.note-section li {
  border: none;
  padding: 2px 0;
  margin-bottom: 5px;
}

.contact-info {
  background-color: #e8f4fd;
  border-left: 4px solid rgb(19, 90, 197);
  padding: 10px 15px;
  margin-top: 20px;
  border-radius: 0 4px 4px 0;
}

/* Form Embed Styling */
.vendor-application-form {
  margin-top: 20px;
  padding: 20px;
  border: 2px solid #eee;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
