body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}
.split {
  display: flex;
  height: 100vh;
  width: 100vw;
}
.split > div {
  overflow: auto;
}
.gutter {
  background-color: #eee;
  background-repeat: no-repeat;
  background-position: 50%;
}
.gutter.gutter-vertical {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAFAQMAAABo7865AAAABlBMVEVHcEzMzMzyAv2sAAAAAXRSTlMAQObYZgAAABBJREFUeF5jOAMEEAIEEFwAn3kMwcB6I2AAAAAASUVORK5CYII=');
  cursor: row-resize;
}
.gutter.gutter-horizontal {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg==');
  cursor: col-resize;
}
@media (max-width: 768px) {
  .split {
    flex-direction: column;
  }
}


.brand-text {
font-weight: 900 !important;
color: #fff !important;
font-size: 1.2rem !important;
}

.ace_editor, .ace_editor div {
  font-family: 'Jetson', monospace !important;
}

.bg-dots {
  background: white;
  background-image: radial-gradient(#cecece 1px, transparent 0);
  background-size: 20px 20px;
  background-position: -20px -20px;
}

.nav-segment {
  padding: 0 !important;
}

* {
  text-decoration: none !important;
}

html, body {
    font-family: 'Certia', sans-serif !important;
  	vertical-align: baseline;
}

h1, h2, h3 {
    font-weight: 800 !important;
}

h4, h5, h6 {
    font-weight: 700 !important;
}

small a {
    font-weight: 700 !important;
}

p {
    font-weight: 400 !important;
}

.icon  {
  padding: 0 !important;
}

.icon {
  width: 20px !important;
  height: 20px !important;
}
.logo-small {
  width: 32px !important;
  height: 32px !important;
  margin-right: 2px !important;
}
.navbar-brand {
  display: flex;
  align-items: center;
  padding-left: 0 !important;
}
.brand-text {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
}

#offcanvasBottom {
  transition: none;
}
@media (min-width: 769px) {
  #offcanvasBottom {
    transition: transform 0.3s ease-in-out;
  }
}
#offcanvasBottom .offcanvas-body {
  display: flex;
  flex-direction: column;
  height: calc(100% - 56px); /* Subtract the header height */
}
#chatBoard {
  flex-grow: 1;
  overflow-y: auto;
  background-color: transparent !important;
}
.chat__conversation-panel {
  flex-shrink: 0;
}

.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 10px 20px;
  border-radius: 4px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
}
.toast.show {
  opacity: 1;
}
.toast.info {
  background-color: #007bff;
}
.toast.success {
  background-color: #28a745;
}
.toast.error {
  background-color: #dc3545;
}
