/**
 *
 * CSS file for the styling of the table of content
 *
 * This file is written by Yaya MNH48 and licensed under MIT
 *
 */

/* Table of content styling */
.toc {
  float: right;
  clear: right;
  width: auto;
  background: none;
  padding: 10px;
  margin: 1em;
  border: 1px solid white;
  font-size: 14px;
  line-height: 1.2;
}

/* Reset list padding for TOC */
.toc li {
  padding-bottom: 0px;
}

/* Fix font size in TOC */
.toc li a {
  font-size: 14px;
  line-height: 1.2;
}

/* Title for the table of content */
.toc[data-title]::before {
  content: attr(data-title);
  display: block;
  font-weight: bold;
  padding: 4px;
  font-size: 1.2em;
}

/* Add support for Jawi Malay which reads right to left */
.toc:lang(ms-Arab) {
  float: left;
  clear: left;
}

/* Add support for Beringin Malay which reads top to bottom */
.toc:lang(ms-Brgn) {
  padding: 10px 0px 10px 0px;
}
