html, body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }


  main {
    flex: 1 1 auto;
  }

  .wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }
  .footer {
    margin-top: auto;
    background-color: #f8f9fa;
    
  }


.b-example-divider {
    height: 1rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);

}

/* Применяем стиль для ссылки */
.article-link {
  text-decoration: none; /* Убираем подчеркивание */
  color: #000; /* Цвет ссылки */
}

/* Применяем стиль при наведении на ссылку */
.article-link:hover {
  text-decoration: underline; /* Добавляем подчеркивание при наведении */
}


.toggle-icon {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}

.collapsed .toggle-icon {
  transform: rotate(0deg);

}