.otp-modal {
  font-family: "Cairo", "Noto Color Emoji", sans-serif !important;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.otp-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 370px;
}

.otp-title {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
  font-family: "Cairo", "Noto Color Emoji", sans-serif !important;
}

.otp-description {
  color: #666;
  margin-bottom: 20px;
  font-size: 14.3px;
  font-family: "Cairo", "Noto Color Emoji", sans-serif !important;
}

.otp-inputs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  direction: ltr;
}

.otp-inputs input {
  width: 40px !important;
  height: 40px !important;
  text-align: center !important;
  font-size: 20px !important;
  border: 2px solid #ddd !important;
  border-radius: 8px !important;
  outline: none !important;
  transition: border-color 0.3s !important;
  padding: 0 !important;
  margin: 2px !important;
  background-color: white !important;
  color: #333 !important;
}

.otp-inputs input:focus {
  border-color: #007bff !important;
}

.otp-button {
  background: #007bff !important;
  color: white !important;
  border: none !important;
  padding: 12px 20px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  width: 100% !important;
  font-size: 16px !important;
  transition: background 0.3s !important;
}

.otp-button:disabled {
  background: #ccc !important;
  cursor: not-allowed !important;
}

.otp-resend {
  margin-top: 15px !important;
  font-size: 14px !important;
}
#otp-resend {
  margin-top: 15px !important;
  color: #007bff !important;
  cursor: pointer !important;
  font-size: 14px !important;
}

#otp-resend:hover {
  text-decoration: underline !important;
}

.otp-close {
  display: none;
}

#otp-cancel-order {
  margin-top: 20px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
}
.otp-message-success {
  font-family: "Cairo", "Noto Color Emoji", sans-serif !important;
  font-size: 14px;
  font-weight: bold;
  color: #4caf50;
  padding: 4px 8px;
  border-radius: 4px;
}
.otp-message-error {
  font-family: "Cairo", "Noto Color Emoji", sans-serif !important;
  font-size: 14px;
  font-weight: bold;
  color: #ba003b;
  padding: 4px 8px;
  border-radius: 4px;
}
