/* ===============================
   AWU MAIN CARD
================================ */
.awu-ui {
  max-width: 460px;
  background: #fff;
  border: 2px solid #e90001;
  border-radius: 20px;
  padding: 28px;
  font-family: system-ui, sans-serif;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.awu-ui h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #111;
}

/* ===============================
   TOGGLE BUTTONS (NO BLUE HOVER)
================================ */
.awu-toggle-wrap {
  background: #f3f3f3;
  border-radius: 30px;
  padding: 5px;
  display: inline-flex;
  margin-bottom: 24px;
}

.awu-toggle-wrap button {
  border: none !important;
  background: transparent !important;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 25px;
  cursor: pointer;
  color: #333 !important;
  box-shadow: none !important;
}

/* REMOVE HOVER EFFECT COMPLETELY */
.awu-toggle-wrap button:hover {
  background: transparent !important;
  color: #333 !important;
  box-shadow: none !important;
}

/* ACTIVE TOGGLE ONLY */
.awu-toggle-wrap button.active {
  background: #e90001 !important;
  color: #fff !important;
}

/* ===============================
   INPUT + ARROW MERGED STYLE
================================ */
.awu-input-row {
  position: relative;
  background: #f6f6f6;
  border-radius: 14px;
  padding: 0;
}

.awu-input-row input {
  width: 100%;
  border: none;
  background: transparent;
  padding: 14px 60px 14px 14px; /* right space for arrow */
  font-size: 15px;
  outline: none;
  border-radius: 14px;
}

.awu-input-row input::placeholder {
  color: #9a9a9a;
}

/* ===============================
   ARROW BUTTON INSIDE INPUT
================================ */
.awu-arrow {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #e90001;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.awu-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}
