/* These styles are generated from project.scss. */

.alert-debug {
  color: black;
  background-color: white;
  border-color: #d6e9c6;
}

.alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

/* Основной стиль для заголовков */
.sortable-header {
  font-weight: bold;
  color: black;
  cursor: pointer;
  position: relative; /* Для позиционирования стрелок */
  padding-right: 20px; /* Место для стрелки */
}

/* Добавим стили для стрелок */
.sortable-header::after {
  content: "▼"; /* Стрелка вниз по умолчанию */
  font-size: 0.8em;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5; /* Стрелка полупрозрачная */
}

/* При активной сортировке по возрастанию (стрелка вверх) */
.sorted-asc::after {
  content: "▲";
  opacity: 1;
}

/* При активной сортировке по убыванию (стрелка вниз) */
.sorted-desc::after {
  content: "▼";
  opacity: 1;
}


.sortable-header {
    font-weight: bold;
    color: black;
    background-color: #f8f9fa; /* Light background */
    cursor: pointer; /* Change cursor to pointer */
}

th a {
  color: black;
  text-decoration: none;
}

a.page-link {
  color: black;
  text-decoration: none;
}
