/* CSS style for the website*/

/* Create two unequal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
  margin-bottom: 5mm;
}
.left {
  width: 25%;
}

.right {
  width: 75%;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
	

p, details {
  font-size: 18px;
}       

.github-link {
  display: inline;
  vertical-align: middle;
}

.table-of-content {
	background-color: rgb(213, 213, 213);
	width: fit-content;
	border-radius: 25px;
	padding: 10px;
}

.title {
	margin-bottom: 0mm;
	padding-bottom: none;
}
.subtitle {
	margin-top: 0mm;
	padding-top: none;
	font-size: 12px;
}
.abstract {
	margin-top: 0mm;
	margin-bottom: 4mm;
	text-align: justify;
	text-justify: inter-word;
}
.reference {
	margin-bottom: 3mm;
}

/* Ordered reference list in blog posts with counter in [] */
ol.custom-marker {
  counter-reset: list;
}

ol.custom-marker > li {
  list-style: none;
  counter-increment: list;
}

ol.custom-marker.parens-after.decimal > li::marker {
  content: "[" counter(list) "]\a0\a0\a0";
}

/* Centering image and their captions */
.center_img {
	display: bloc;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0mm;
	padding-bottom: none;
}
.caption {
	width: 500;
	margin-top: none;
	padding-top: none;
	font-size: 14px;
	display: bloc;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5mm;
	text-align: center;
}

/* Button to return to the top of the page */
#topBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: rgb(213, 213, 213); /* Set a background color */
  /* color: white;  Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#topBtn:hover {
  background-color: rgb(153, 153, 153); /* Add a dark-grey background on hover */
}


/* Wrapper to include YouTube videos */
.videowrapper {
	float: none;
	clear: both;
	width: 100%;
	position: relative;
	padding-bottom: 51%;
	padding-top: 0px;
	height: 0;
	margin-bottom: 5mm;
}
.videowrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* For the Blog page button style */
.blog-link {
	text-decoration: none;
}
.blog-link:hover {
	text-decoration: none;
}
.blog-button {
	margin-top:1cm;
	border: 1px solid black;
	border-radius: 25px;
	color: black;
	background-color: rgb(213, 213, 213);
	width: fit-content;
	padding: 10px;
}

/* Buttons with short link and icon */
.button-link {
	text-decoration: none;
	margin-right: 3px;
}
.button-link:hover {
	text-decoration: none;
}
.button {
	border: 0px;
	border-radius: 25px;
	color: white; /*text color*/
	background-color: rgb(80, 80, 80);
	width: fit-content;
	padding: 5px;
	height: fit-content;
}
.links {
	margin-top: 5px;
}