/* form-control-newchat: کپی کامل از Bootstrap form-control با سفارش‌سازی‌های پروژه */

/* استایل‌های پایه - کپی از Bootstrap */
.form-control-newchat {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control-newchat:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control-newchat::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control-newchat::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control-newchat:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control-newchat::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control-newchat::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control-newchat:disabled,
.form-control-newchat[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

/* استایل‌های سفارشی پروژه - message-input */
.form-control-newchat.message-input {
  border-radius: 14px;
  padding: 10px 15px;
}

/* استایل‌های نایت مود */
.dark-mode .form-control-newchat {
  background: linear-gradient(135deg, 
      #356174 0%, 
      #3e7792 8%, 
      #356174 18%,
      #3e7792 28%,
      #356174 42%, 
      #3e7792 58%, 
      #3e7288 68%,
      #58a8ce 95%,
      #3f7288 100%
  );
  border-color: #6c757d !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25) !important;
}

.dark-mode .form-control-newchat:focus {
  background-color: #4a4b4b !important;
  border-color: #6c757d !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25) !important;
}

.dark-mode .form-control-newchat::placeholder {
  color: #adb5bd !important;
}

.dark-mode .form-control-newchat:disabled,
.dark-mode .form-control-newchat[readonly] {
  background-color: #2a2a2a;
  color: #909090;
}
