.custom-dropdown {
  position: relative;
  width: 100%;
  font-size: 16px;
  margin-bottom: 8px;
}
.custom-dropdown-selected {
  position: relative;
  background: #fff;
  border: 1px solid #999;
  border-radius: 4px;
  padding: 12px 40px 12px 16px;
  cursor: pointer;
  min-height: 20px;
  transition: border-color 0.2s;
  font-size: 0.9rem;
}
.dropdown-chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.2s;
  pointer-events: none;
  z-index: 2;
}
.custom-dropdown.open .dropdown-chevron {
  transform: translateY(-50%) rotate(180deg);
}
.neonweb-clickup-form .custom-dropdown-list {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #999;
  border-top: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  z-index: 1000;
  margin: 0;
  padding: 0;
  list-style: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  overflow-y: auto;
  max-height: 240px;
}
.custom-dropdown.open .custom-dropdown-list {
  display: block;
}
.custom-dropdown-list li {
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid #fff;
}
.custom-dropdown-list li:last-child {
  border-bottom: none;
}
.custom-dropdown-list li:hover {
  background: #f4f4f4;
}
.custom-dropdown-list li.selected {
  background: #eaf6fb;
  color: #0073aa;
  font-weight: bold;
}
.neonweb-clickup-input-invalid {
  border-color: red !important;
} 
.tel-dropdown {
  width: 120px;
}
.accept-terms {
  margin: 24px 0;
}
.neonweb-clickup-form input[type=text], .neonweb-clickup-form input[type=url], .neonweb-clickup-form select, .neonweb-clickup-form input[type=date], .neonweb-clickup-form input[type=email], .neonweb-clickup-form input[type=number], .neonweb-clickup-form input[type=password], .neonweb-clickup-form input[type=search], .neonweb-clickup-form input[type=tel] {
  border: 1px solid #999;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 16px;
  margin-bottom: 8px;
  height: 48px;
  font-size: 0.9rem;
}
 .neonweb-clickup-form textarea {
  border: 1px solid #999;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 16px;
  margin-bottom: 8px;
  height: 120px;
  font-size: 0.9rem;
 }