/* UL as horizontal tabs */
.toc-tabs ul{
  display: flex;
  gap: 24px;
  padding: 12px 16px;
  margin: 0;
  list-style: none;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.toc-tabs ul::-webkit-scrollbar {
  display: none;
}

/* Links style */
.toc-tabs ul li {
  margin: 0;
}

.toc-tabs ul li a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

/* Active state */
.toc-tabs ul li a.active {
    color: #fff;
    background: #1e90ff;
    padding: 2px 10px;
    border-radius: 5px;	
}

#site-header {
   position:fixed;
	top:0;
	z-index:999;
}
#site-header.scrolled {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	 position:sticky;
	top:0;
}


.placement-table {   
    border-collapse: collapse;
}

.placement-table thead {
    background-color: #1f3c88;
    color: #ffffff;
}

.placement-table th,
.placement-table td {
    padding: 12px;
    border: 1px solid #dddddd;
    text-align: center;
}

.placement-table tbody tr:nth-child(even) {
    background-color: #f2f6ff;
}

.placement-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}
