.wy-nav-side {
  background: #1b67a6 !important;
}
.wy-nav-side .wy-side-nav-search {
  background-color: #1b67a6 !important;
}

.wy-breadcrumbs .wy-breadcrumbs-aside {
  display: none !important;
}

.wy-table-responsive tr.row-odd:nth-child(1) {
  background-color: #ff9e1b !important;
}

.wy-nav-content .document img {
  box-shadow: 5px 5px 10px #999;
}

/* ----------TABLES IN MARKDOWN---------- */
/* Style table header */
.md-typeset table thead th {
  background-color: #ff9e1b;
  color: white;
  text-align: center;
}

/* Add vertical line between columns */
.md-typeset table th,
.md-typeset table td {
  border-right: 1px solid #ddd;
  padding: 8px 12px;
}

/* Remove right border from last column */
.md-typeset table th:last-child,
.md-typeset table td:last-child {
  border-right: none;
}

/* Add subtle row hover */
.md-typeset table tbody tr:hover {
  background-color: #fff3e0; /* light orange highlight */
}

/* Optional: center table on page */
.md-typeset table {
  margin-left: auto;
  margin-right: auto;
  width: 60%;
  border-collapse: collapse;
  border: 1px solid #ddd;
}