div#ea11y-root {
  display: none;
}
#userDetailsForm {
  background: white;
  padding: 30px;
  border-radius: 16px;
}
.userform {
  background: white;
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(56, 177, 197, 0.1);
}

.userform h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  color: #2c3e50;
  background: linear-gradient(135deg, #05d686 0%, #007649 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-description {
  color: #666;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}

.user-form-fields {
  margin-bottom: 24px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #334155;
  font-size: 14px;
}

.form-field.required label::after {
  content: " *";
  color: #ef4444;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="number"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0px 16px;
  border: 2px solid #c5c5c5;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
  background: white;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border: 2px solid transparent;
  background-image: linear-gradient(white, white),
    linear-gradient(135deg, #05d686 0%, #007649 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 0 0 4px rgba(56, 177, 197, 0.1);
}

.form-field textarea {
  min-height: 100px;
  resize: vertical;
}

.radio-option,
.checkbox-option {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
}

.radio-option label,
.checkbox-option label {
  margin: 0;
  font-weight: normal;
  cursor: pointer;
}

#buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

#skipBtn,
#nextBtn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

#skipBtn {
  background: white;
  border-color: #bababa;
  color: #6b7280;
}

#skipBtn:hover {
  border-color: #d1d5db;
  background: #f9fafb;
}

#nextBtn {
  background: linear-gradient(135deg, #05d686 0%, #007649 100%);
  color: white;
}

#nextBtn:hover {
  background: linear-gradient(135deg, #05d686 10%, #007649 90%);
  box-shadow: 0 4px 12px rgba(56, 177, 197, 0.3);
}

/* Add to your existing CSS */
.error-message {
  color: #ef4444;
  padding: 10px;
  margin-bottom: 15px;
  background: #fef2f2;
  border-radius: 6px;
  border: 1px solid #fecaca;
  font-size: 14px;
}

.error-message:before {
  content: "⚠️ ";
  margin-right: 5px;
}
/* Add to your existing CSS */
.instruction-container {
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(56, 177, 197, 0.1);
}
.form-container {
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(56, 177, 197, 0.1);
}

#userform {
  display: none;
}

/* Add these styles for form validation */
.form-field.error label {
  color: #ef4444 !important;
}

.form-field.error input,
.form-field.error select,
.form-field.error textarea {
  border-color: #ef4444 !important;
  background: #fef2f2 !important;
}
.toast-notification-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: absolute !important;
  z-index: 10000 !important;
  top: 60px;
  right: 20px;
}

.notification {
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
  animation: slideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: fit-content;
  max-width: 400px;
  cursor: pointer;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.notification::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  opacity: 0.6;
}

.notification::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.1)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.notification:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Success Theme - Green */
.notification.success {
  background: var(--toast-success-bg, red) !important;
  color: var(--toast-success-color, #6ee7b7) !important;
  border: var(--toast-success-border-width, 1px) solid
    var(--toast-success-border-color, rgba(52, 211, 153, 0.3)) !important;
  border-radius: var(--toast-success-border-radius, 12px) !important;
  padding: var(--toast-success-padding, 12px) 16px !important;
  font-size: var(--toast-success-font-size, 14px) !important;
  box-shadow: var(
    --toast-success-box-shadow,
    0 8px 32px rgba(16, 185, 129, 0.25),
    0 0 60px rgba(16, 185, 129, 0.1)
  ) !important;
}

/* Error Theme - Red */
.notification.error {
  background: var(--toast-error-bg, rgba(239, 68, 68, 0.15)) !important;
  color: var(--toast-error-color, #ff4d4d) !important;
  border: var(--toast-error-border-width, 1px) solid
    var(--toast-error-border-color, rgba(248, 113, 113, 0.3)) !important;
  border-radius: var(--toast-error-border-radius, 12px) !important;
  padding: var(--toast-error-padding, 12px) 16px !important;
  font-size: var(--toast-error-font-size, 14px) !important;
  box-shadow: var(
    --toast-error-box-shadow,
    0 8px 32px rgba(239, 68, 68, 0.25),
    0 0 60px rgba(239, 68, 68, 0.1)
  ) !important;
}

/* Warning Theme - Yellow */
.notification.warning {
  background: var(--toast-warning-bg, rgba(234, 179, 8, 0.15)) !important;
  color: var(--toast-warning-color, #fde047) !important;
  border: var(--toast-warning-border-width, 1px) solid
    var(--toast-warning-border-color, rgba(250, 204, 21, 0.3)) !important;
  border-radius: var(--toast-warning-border-radius, 12px) !important;
  padding: var(--toast-warning-padding, 12px) 16px !important;
  font-size: var(--toast-warning-font-size, 14px) !important;
  box-shadow: var(
    --toast-warning-box-shadow,
    0 8px 32px rgba(234, 179, 8, 0.25),
    0 0 60px rgba(234, 179, 8, 0.1)
  ) !important;
}

/* Info Theme - Purple */
.notification.info {
  background: var(--toast-info-bg, rgba(139, 92, 246, 0.15)) !important;
  color: var(--toast-info-color, #c4b5fd) !important;
  border: var(--toast-info-border-width, 1px) solid
    var(--toast-info-border-color, rgba(167, 139, 250, 0.3)) !important;
  border-radius: var(--toast-info-border-radius, 12px) !important;
  padding: var(--toast-info-padding, 12px) 16px !important;
  font-size: var(--toast-info-font-size, 14px) !important;
  box-shadow: var(
    --toast-info-box-shadow,
    0 8px 32px rgba(139, 92, 246, 0.25),
    0 0 60px rgba(139, 92, 246, 0.1)
  ) !important;
}

/* Message Text */
.notification-message {
  flex: 1;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  word-wrap: break-word;
}

/* Animations */
@keyframes slideIn {
  from {
    transform: translateX(450px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
  to {
    transform: translateX(450px) scale(0.8);
    opacity: 0;
  }
}

.notification.removing {
  animation: slideOut 0.3s ease-in forwards;
}

/* Progress Bar */
.notification-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 0 0 12px 12px;
  animation: progress 5s linear forwards;
}

@keyframes progress {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}

/* Glow Effect */
.notification.success {
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.25),
    0 0 60px rgba(16, 185, 129, 0.1);
}

.notification.error {
  box-shadow: 0 8px 32px rgba(239, 68, 68, 0.25),
    0 0 60px rgba(239, 68, 68, 0.1);
}

.notification.warning {
  box-shadow: 0 8px 32px rgba(234, 179, 8, 0.25),
    0 0 60px rgba(234, 179, 8, 0.1);
}

.notification.info {
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.25),
    0 0 60px rgba(139, 92, 246, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .toast-notification-container {
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .notification {
    padding: 14px 16px;
    font-size: 13px;
    min-width: auto;
  }

  .notification-icon {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}
