.abc-form {
  background: #fff;
  padding: 40px;
  max-width: 1200px;
  margin: 60px auto;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.abc-form .form-wrapper {
  flex: 1;
  min-width: 300px;
}

.abc-form .form-wrapper form {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.abc-form form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 16px;
  color: #333;
}

.abc-form form .abc-input,
.abc-form form select {
  width: 100%;
  height: 50px;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  color: #333;
  margin-top: 5px;
}

.abc-form form .abc-checkbox {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  color: #333;
}

.abc-form form .abc-lbl-checkbox {
  display: flex;
  margin: 10px 0;
  align-items: center;
  gap: 10px;
}

.abc-form form .abc-lbl-checkbox a {
    color:#f7941d;
}

.abc-form button {
  width: 100%;
  height: 55px;
  background-color: #f7941d !important;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  margin-top: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.abc-form button:hover {
  background-color: #e68216;
}

#abc-results {
  flex: 1;
  min-width: 300px;
}

#abc-results h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

#abc-results table {
  width: 100%;
  border-collapse: collapse;
}

#abc-results table th,
#abc-results table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
  font-size: 16px;
  color: #333;
}

#abc-results table th {
  background-color: #f7941d;
  color: #fff;
  font-weight: 700;
}

#abc-results table tr:nth-child(even) {
  background-color: #f9f9f9;
}

#abc-results .print-btn {
  margin-top: 20px;
  background-color: #f7941d;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
}

#abc-results .print-btn:hover {
  background-color: #e68216;
}

#abc-results .hidden {
  display: none;
}

#abc-email-response h5 {
  color: #28a745;
}

#abc-email-response h6 {
  color: #dc3545;
}

button.abc-tab {
  padding: 8px 16px;
  background: #f0f0f0 !important;
  cursor: pointer;
  color: #f7941d;
}

button.abc-tab:hover {
  color: #f7941d;
}

#tab-dont-know.abc-tab {
      border-radius: 4px 0 0 4px;
}

#tab-know.abc-tab {
      border-radius: 0 4px 4px 0;
}

.abc-tab.active {
  background: #f7941d !important;
  color: #fff;
}

.abc-tab-switcher {
  display: flex;
  flex-direction: column;
}

.abc-form .custom-select {
  min-width: 290px;
  position: relative;
}

.abc-form .custom-select span {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  gap: 8.5px;
  color: #051105;
  cursor: pointer;
  text-align: center;
  background-color: transparent;
  border: 1px solid #ddd;
  height: 48px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  font-family: "Montserrat Alternates", Sans-serif;
}

.abc-form .custom-select span::after {
  content: "";
  width: 11.8px;
  height: 6.8px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("https://bevera.ai/wp-content/uploads/2025/04/Vector.svg");
}

.abc-form .custom-select ul {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  height: max-content;
  list-style: none;
  padding-left: 0;
  z-index: 99999;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  visibility: hidden;
}

.abc-form .custom-select.active ul {
  visibility: visible;
}

.abc-form .custom-select ul li {
  text-align: center;
  font-size: 18px;
  padding: 3px 0;
  cursor: pointer;
}

.abc-form .custom-select ul li:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.abc-form .custom-select ul li:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.abc-form .custom-select ul li:hover {
  background-color: #002523;
  color: #ffffff;
}