/**
 * Styles for the main layout of the application, including the sidebar and content frames.
 * The body is set to full viewport height, and the sidebar and content frames are sized to fill the remaining space.
 * The sidebar and content frames have no borders, and the content frame has some padding.
 * The sidebar column has a negative left margin to align it with the content column.
 * The content column has no margin or padding.
 * Utility classes are provided to hide elements and set a background color.
 * Icon and text styles are defined for the navbar brand.
 * Media queries are used to show/hide the text in the navbar links based on screen size.
 */
body {
  box-sizing: border-box;
  height: 100vh;
}

.iframe-sidebar {
  height: calc(100vh - 113px);
  width: 100%;
  border: none;
}

.iframe-content {
  height: calc(100vh - 113px);
  width: 100%;
  padding: 1rem 0;
  border: none;
}

.sidebar-col {
  margin-left: -12px;
}

.content-col {
  margin: 0;
  padding: 0;
}

.hidden {
  display: none;
}

.background {
  background-color: #fff6e7;
}

.icon-large {
  font-size: 2.2rem;
  color: #ff8000;
}

span {
  color: #ff8000;
  font-size: 90%;
  font-weight: 500;
}

.navbar {
  background-color: #fff6e7;
  box-shadow: 0 6px 5px -5px rgb(38, 36, 36);
}

.navbar-brand {
  color: #ff8000;
  font-size: 1.7rem;
  text-shadow: -1px 1px 1px rgb(38, 36, 36);
  padding-left: 0.5rem;
}

.navbar-brand:hover {
  color: orangered;
  text-shadow: -1px 1px 1px rgb(38, 36, 36);
}

.orange:hover {
  text-shadow: 0 -1px 1px rgb(38, 36, 36);
}

@media (max-width: 768px) {
  .nav-link span {
    display: none;
  }
}

@media (min-width: 769px) {
  .nav-link span {
    display: inline;
  }
}
