.input-with-mic {
  padding-right: 45px; /* نخلي مجال للمايك */
}

.myspeackbtn-inside {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  color: #666;
}

.myspeackbtn-inside:hover {
  color: #000; /* لون عند الهوفر */
}


.ask-btn {
  display: inline-block;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
  transition: all 0.3s ease-in-out;
}

.ask-btn span {
  position: relative;
  z-index: 2;
}

.ask-btn::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.3s ease-in-out;
  z-index: 1;

}

.ask-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 119, 182, 0.4);
}

.ask-btn:hover::after {
  width: 100%;
}

.tag {
  display: inline-block;
  background: #f1f1f1;
  border-radius: 20px;
  padding: 5px 12px;
  margin: 5px;
  font-size: 14px;
  cursor: pointer;
}
.tag:hover {
  background: #ddd;
}

.chat-box {
  margin-top: 15px;
  font-family: Arial, sans-serif;
}

.chat-text {
  font-size: 16px;
  line-height: 1.6;
  margin: 8px 0;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: bold;
}

.chat-text.user {
  background: #ececec;
  color: #222;
}

.chat-text.amc {
  background: #cff8ff;
  color: #333;
}

.highlightyou {
  color: red;
  font-weight: bold;
}

.highlightamc {
  color: #208b9f;
  font-weight: bold;
}

/* الحاوية الأساسية للأزرار */
.whatsapp-btn, .top-btn {
  position: fixed;
  right: 20px;
  z-index: 9999;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* زر واتساب */
.whatsapp-btn {
  bottom: 20px;
  background-color: #25d366;
  width: 60px;
  height: 60px;
}

.whatsapp-btn img {
  width: 35px;
  height: 35px;
  margin-top: 12px;
}

/* الزر الثاني فوق واتساب */
.top-btn {
  bottom: 90px; /* المسافة فوق الواتساب */
  background-color: #ffffff;
  color: white;
  width: 60px;
  height: 60px;
  font-size: 22px;
  line-height: 50px;
}

/* تأثير hover */
.whatsapp-btn:hover, .top-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}


.footermydir {
  text-align: right;

}
