@import "https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,wght@0,300;0,400;0,700;1,300;1,700&display=swap";
body {
  font-family: "Roboto Serif",serif;
  scroll-behavior: smooth; }

body *:not(.fa, .fas, .fa-solid, pre, code) {
  font-family: inherit; }

a {
  text-decoration: none;
  transition: all 0.3s ease-in; }
  a:hover {
    color: #f80; }

code {
  font-size: 1em !important; }

.flex {
  flex: 1 !important; }

.form-label {
  color: #495057;
  /* Darker gray for better contrast */
  font-weight: 600;
  /* Make labels bolder */ }

.form-control, .form-select {
  border-color: #0d6efd;
  /* Blue border */
  background-color: #f8f9fa;
  /* Light gray background */
  transition: all 0.2s ease-in-out; }

.form-control:focus, .form-select:focus {
  border-color: #0a58ca;
  /* Darker blue */
  box-shadow: 0 0 4px rgba(13, 110, 253, 0.5); }

.form-check-input {
  border-color: #0d6efd;
  /* Blue border */ }

.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd; }

/* lg : Large Screen , with width between 992px and 1199px  */
@media screen and (min-width: 992px) {
  pre, code {
    white-space: pre-wrap !important;
    /* Allow wrapping in code blocks */
    word-break: break-word;
    /* Ensure long words wrap */ } }
/**
*   Paddings ...
*/
/* xs : Extra Small Screen , with width <= 575px */
@media screen and (max-width: 575px) {
  .p-xs-0 {
    padding: 0; }

  .pt-xs-0 {
    padding-top: 0; }

  .pr-xs-0 {
    padding-right: 0; }

  .pb-xs-0 {
    padding-bottom: 0; }

  .pl-xs-0 {
    padding-left: 0; }

  .px-xs-0 {
    padding-left: 0;
    padding-right: 0; }

  .py-xs-0 {
    padding-top: 0;
    padding-bottom: 0; }

  .p-xs-1 {
    padding: 0.25rem; }

  .pt-xs-1 {
    padding-top: 0.25rem; }

  .pr-xs-1 {
    padding-right: 0.25rem; }

  .pb-xs-1 {
    padding-bottom: 0.25rem; }

  .pl-xs-1 {
    padding-left: 0.25rem; }

  .px-xs-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem; }

  .py-xs-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem; }

  .p-xs-2 {
    padding: 0.5rem; }

  .pt-xs-2 {
    padding-top: 0.5rem; }

  .pr-xs-2 {
    padding-right: 0.5rem; }

  .pb-xs-2 {
    padding-bottom: 0.5rem; }

  .pl-xs-2 {
    padding-left: 0.5rem; }

  .px-xs-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem; }

  .py-xs-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem; }

  .p-xs-3 {
    padding: 1rem; }

  .pt-xs-3 {
    padding-top: 1rem; }

  .pr-xs-3 {
    padding-right: 1rem; }

  .pb-xs-3 {
    padding-bottom: 1rem; }

  .pl-xs-3 {
    padding-left: 1rem; }

  .px-xs-3 {
    padding-left: 1rem;
    padding-right: 1rem; }

  .py-xs-3 {
    padding-top: 1rem;
    padding-bottom: 1rem; }

  .p-xs-4 {
    padding: 1.5rem; }

  .pt-xs-4 {
    padding-top: 1.5rem; }

  .pr-xs-4 {
    padding-right: 1.5rem; }

  .pb-xs-4 {
    padding-bottom: 1.5rem; }

  .pl-xs-4 {
    padding-left: 1.5rem; }

  .px-xs-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem; }

  .py-xs-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem; }

  .p-xs-5 {
    padding: 3rem; }

  .pt-xs-5 {
    padding-top: 3rem; }

  .pr-xs-5 {
    padding-right: 3rem; }

  .pb-xs-5 {
    padding-bottom: 3rem; }

  .pl-xs-5 {
    padding-left: 3rem; }

  .px-xs-5 {
    padding-left: 3rem;
    padding-right: 3rem; }

  .py-xs-5 {
    padding-top: 3rem;
    padding-bottom: 3rem; } }
.content {
  padding-bottom: 30px; }

.docs-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  /*position: fixed;*/
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh; }
  .docs-container .content-section {
    display: flex;
    position: relative;
    flex-direction: column; }
    .docs-container .content-section .content {
      overflow: auto; }

.d-none {
  display: none; }

.no-border {
  border: none 0 !important;
  border-radius: 0 !important; }

.accordion-button:not(.collapsed),
.accordion-button:focus {
  box-shadow: none !important; }

/* Sidebar Styling */
.sidebar {
  width: 300px;
  min-height: 100vh;
  background: #343a40;
  color: white;
  /*position: fixed;*/
  transition: all 0.3s;
  overflow-y: auto;
  user-select: none; }

.sidebar .nav-link {
  color: white;
  display: flex;
  align-items: center;
  padding: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.sidebar .nav-link.active {
  color: #f80; }

.sidebar .nav-link i {
  margin-right: 8px;
  flex-shrink: 0; }

.sidebar .nav-link:hover {
  background: #495057; }

/* Icon width uniformity */
.fa-fw {
  width: 20px;
  text-align: center; }

/* Sidebar text truncation */
.text-truncate {
  display: inline-block;
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

/* Offcanvas Menu for Mobile */
@media (max-width: 1024px) {
  .sidebar {
    display: none; } }
.offcanvas-title {
  padding-left: 12px;
  padding-right: 12px; }

.offcanvas-header .btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFF'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") !important; }

.offcanvas-body a {
  color: #fff; }

.offcanvas-body .nav-link:focus,
.offcanvas-body .nav-link:hover {
  color: #f80 !important; }

.doc-links {
  list-style-type: none;
  padding: 0;
  margin: 0; }
  .doc-links > li {
    padding: 5px 10px; }
    .doc-links > li.level-2, .doc-links > li.level-3 {
      padding-left: 20px; }
    .doc-links > li > .doc-link {
      color: #fff;
      text-decoration: none;
      transition: all 0.3s ease-in;
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: flex-start;
      align-items: center;
      gap: 10px; }
      .doc-links > li > .doc-link:hover {
        color: #f80; }
      .doc-links > li > .doc-link.active {
        color: #f80; }
  .doc-links.in-page .doc-link {
    color: #000; }

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 20000; }

.back-to-top:hover {
  background-color: #555; }

.back-to-top.show {
  opacity: 1;
  transform: scale(1); }

.table-options .header {
  background-color: #f2f2f2; }
  .table-options .header td, .table-options .header th {
    background-color: #f2f2f2; }
    .table-options .header td h5, .table-options .header th h5 {
      margin-top: 0.5rem; }

.thick-borders {
  border: solid 8px #333 !important; }

/*# sourceMappingURL=styles.css.map */
