/* Sidebar styling */
#sidebar {
  width: 350px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  background-color: #f8f9fa;
  overflow-y: auto;
}
/* Content area styling */
#post {
  margin-left: 350px;
  padding: 20px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  #sidebar {
    width: 100%;
    position: relative;
    height: auto;
  }
  #post {
    margin-left: 0;
  }
}

/* FIGURE HIGHTLIGHT */

/* Main container styling */
figure.highlight {
  border: 1px solid #1971c9;
  border-radius: 0.25rem;
  padding: 0.75rem;
  margin: 1rem 0;
  max-width: 100%;
  overflow-x: auto;
}

/* Table structure */
figure.highlight table {
  width: 100%;
  border-collapse: collapse;
}
