.request-form-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}

.request-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.request-header-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(215, 31, 44, 0.1);
  color: var(--color-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.request-header h1 {
  font-size: 1.8rem;
  font-weight: 700;
}
.info-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(215, 31, 44, 0.1);
  color: #ccc;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 25px;
  font-size: 14px;
}
.info-banner i {
  color: var(--color-red);
}
.info-banner a {
  color: var(--color-red);
  text-decoration: underline;
  font-weight: 500;
}
.request-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.form-input, .form-select {
  width: 100%;
  background-color: #212121;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 12px 15px;
  color: var(--text-light);
  font-size: 1rem;
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--color-red);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  cursor: pointer;
}

/* Стили для селекта как в solution */
select.form-control {
  background: var(--input-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-light);
  height: 44px !important;
  line-height: 44px;
  margin-bottom: 10px;
  padding: 0 12px;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  cursor: pointer;
}

select.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(var(--color-primary-rgb), 0.1);
}

select.form-control option {
  background: var(--bg-card);
  color: var(--text-light);
  padding: 8px;
}

/* Стили для input-group */
.input-group {
  display: flex;
  align-items: stretch;
}

.input-group .input-group-prepend {
  display: flex;
}

.input-group .input-group-prepend .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
  background-color: var(--color-red);
  color: white;
  border: 1px solid var(--color-red);
  height: 44px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s;
}

.input-group .input-group-prepend .btn:hover {
  background-color: var(--color-red-dark);
  border-color: var(--color-red-dark);
}

.input-group .form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
}
.find-btn {
  align-self: flex-start;
}
.search-results-table {
  background-color: var(--bg-card-light);
  border-radius: 8px;
  padding: 15px;
}
.results-header, .results-row {
  display: grid;
  grid-template-columns: 120px 1fr 2fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 10px 0;
}
.results-header {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #333;
}
.results-row {
  font-size: 14px;
}
.btn.btn-outline-red {
  border: 1px solid var(--color-red);
  color: var(--color-red);
}
.btn.btn-outline-red:hover {
  background-color: var(--color-red);
  color: white;
}
.text-editor-mock {
  background-color: #212121;
  border: 1px solid #333;
  border-radius: 8px;
}
.editor-toolbar {
  height: 40px;
  border-bottom: 1px solid #333;
}
.editor-textarea {
  width: 100%;
  background: transparent;
  border: none;
  min-height: 120px;
  padding: 15px;
  color: var(--text-light);
  resize: vertical;
}
.editor-textarea:focus {
  outline: none;
}
.submit-request-btn {
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
}

.search-ban-result {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0;
}

.search-ban-result-item {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-radius: 10px;
  background-color: var(--bg-card-light);
}

.search-ban-result-item span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

.unban-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px 20px;
  justify-content: space-between;
}

.unban-info-item {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-radius: 10px;
  background-color: var(--bg-card-light);
}

.unban-info-item span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}
.unban-title {
  margin-bottom: 10px;
}

.unban-title h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--text-light);
  line-height: 20px;
}

.unban-title span {
  color: var(--text-muted);
  line-height: 10px;
  font-size: 14px;
}

.unban-text {
  background-color: var(--bg-card-light);
  padding: 10px;
  border-radius: 10px;
}

.comments {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.comment {
  padding: 10px;
  background-color: var(--bg-card-light);
  border-radius: 10px;
  display: flex;
  gap: 5px;
  position: relative;
}

.comment a img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
}

.comment .with_code {
  font-size: 16px;
}

.comment .message {
  position: relative;
  flex: 1;
}

.comment .message .info .author span {
  font-size: 14px;
  color: var(--text-muted);
}


.comment .dell_message:hover {
  background-color: var(--color-red-dark);
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(215, 31, 44, 0.3);
}

/* Стили для иконки внутри кнопки */
.comment .dell_message i {
  font-size: 12px;
  color: white;
}

/* Стили для иконки, если она вложена в i тег */
.comment .dell_message i.fa-trash,
.comment .dell_message i.fa-solid.fa-trash,
.comment .dell_message i.m-icon.icon-trash {
  font-size: 12px;
  color: white;
}

.comment .dell_message i.fa-trash-alt,
.comment .dell_message i.fa-solid.fa-trash-alt {
  font-size: 12px;
  color: white;
}

/* Если кнопка уже имеет классы иконок, применяем наши стили */
.comment .dell_message.fa-solid,
.comment .dell_message.m-icon {
  background-color: var(--color-red);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Убеждаемся, что иконка отображается правильно */
.comment .dell_message.fa-trash:before,
.comment .dell_message.fa-solid.fa-trash:before,
.comment .dell_message.m-icon.icon-trash:before {
  content: "\f1f8";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  color: white;
}

/* Альтернативная иконка, если основная не работает */
.comment .dell_message.fa-trash-alt:before,
.comment .dell_message.fa-solid.fa-trash-alt:before {
  content: "\f2ed";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  color: white;
}

/* Универсальные стили для всех вариантов иконки удаления */
.comment .dell_message[class*="fa-trash"]:before,
.comment .dell_message[class*="icon-trash"]:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  color: white;
}

/* Если иконка не отображается, используем символ X */
.comment .dell_message:before {
  content: "×";
  font-family: inherit;
  font-weight: bold;
  font-size: 16px;
  color: white;
  line-height: 1;
}

.unban-info-item .text-danger {
  color: var(--color-red);
}

.unban-info-item .text-success {
  color: var(--color-green);
}

/* Стили для кнопок */
.btn-blue {
  background-color: var(--color-blue);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-blue:hover {
  background-color: var(--color-blue-dark);
  transform: translateY(-1px);
}

.btn-yellow {
  background-color: var(--color-yellow);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-yellow:hover {
  background-color: var(--color-yellow-dark);
  transform: translateY(-1px);
}

/* Стили для модального окна */
.modal {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.modal.fade.in {
  opacity: 1;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-dialog.modal-lg {
  width: 900px;
}

.modal-content {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  margin: 0;
  color: var(--text-light);
  font-size: 18px;
  font-weight: 600;
}

.modal-header .close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header .close:hover {
  color: var(--text-light);
}

.modal-body {
  padding: 15px;
}

.table-responsive {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}

.table-bordered {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-bordered td,
.table-bordered th {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px;
  text-align: left;
}

.table thead td {
  background-color: var(--bg-card-light);
  font-weight: 600;
  color: var(--text-light);
}

/* Стили для кнопки смайликов */
.smile_btn {
  width: 44px;
  height: 44px;
  background-color: var(--color-red);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  font-size: 16px;
  transition: all 0.2s ease;
  position: relative;
  top: -2px; /* Чуть выше уровня кнопки отправить */
}

.smile_btn:hover {
  background-color: var(--color-red-dark);
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(215, 31, 44, 0.3);
}

.popover {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

.popover-content,
.popover-body {
  padding: 10px;
  color: var(--text-light);
}

.smile {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin: 2px;
  border-radius: 2px;
  transition: transform 0.2s;
}

.smile:hover {
  transform: scale(1.2);
}

.g_smile {
  width: 20px;
  height: 20px;
  border-radius: 2px;
}

/* Стили для результатов поиска жалоб */
.player-row {
  display: grid;
  gap: 20px;
  padding: 15px;
  background-color: var(--bg-card-light);
  border-radius: 8px;
  margin-bottom: 10px;
  text-decoration: none;
  color: var(--text-light);
  transition: all 0.2s ease;
}

.player-row:hover {
  background-color: var(--bg-card);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.col-player {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.player-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.player-nick {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-light);
}

.player-nick img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.player-description {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.col-red {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.text-red {
  color: var(--color-red);
}

.text-green {
  color: var(--color-green);
}

.text-yellow {
  color: var(--color-yellow);
}

.text-blue {
  color: var(--color-blue);
}

/* Стили для блока жалоб */
.block_complaints1 {
  margin-bottom: 20px;
}