.form-groupAddTicket {
	 margin-top:20px;
  display: flex;
  flex-direction: column; /* <-- ТУК! */
  gap: 1rem; /* Разстояние между елементите */
  width:100%;
}

@media (max-width: 768px) {
  .form-groupAddTicket {
    flex-direction: column;
  }
}
.btn-submitAddTicket {
  width:100%;
  background-color: #363a43;
  outline: 1px solid #434343;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submitAddTicket:hover {
  background-color: #daff7d;
   color: #000000;
}
.btn_support_topTicket {
  cursor: pointer;
  height: 50px;
  display: flex;
  font-weight: 600;
  font-size: 11.5px;
  border-radius: 11px;
  width: 100%;
  color: #828690;
  align-items: center;
  transition: 0.2s;
  justify-content: center;
  position: relative; /* важно за значката */
}

.btn_support_topTicket:hover {
  color: #ffffff;
  font-size: 11.5px;
  background: #454a53;
}

/* Значката за известие */
.badge_notificationTicket {
  position: absolute;
  top: 5px;
  right: 15px;
  background: #e74c3c;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
}

.ticket-conversation { 
   
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.ticket-messages-scroll {
  margin-top:20px;	
  max-height: 300px; /* Височина на скрол контейнера */
  overflow-y: auto;
  background: #363a43;
  outline: 1px solid #434343;
  box-shadow: 0px 5px 10px #13151a4f;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 20px;
}

.ticket-message {
  background-color: #1abc9c;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 14px;
}

.support-messageTicket  {
  background-color: #3498db;
}

.message-textTicket  {
  margin-top: 5px;
}

.ticket-reply {
  margin-top: 10px;
}

.reply-textareaTicket  {
  width: 100%;
  height: 100px;
  padding: 10px;
  resize: vertical;
  border: 1px solid #434343;
  border-radius: 5px;
}

.reply-buttonTicket  {
  margin-top: 10px;
  background-color: #27ae60;
  color: #fff;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.reply-buttonTicket:hover {
  background-color: #219150;
}

/* Скрол стил по желание */
.ticket-messages-scroll::-webkit-scrollbar {
  width: 8px;
}

.ticket-messages-scroll::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}

.ticket-messages-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}