body {
  font-family: courier;
  font-size: 12px;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f8f9fa;
}

.wrapper {
  display: flex;
  flex: 1;
  /*overflow: hidden;*/
}

.sidebar {
  font-size: 14px;
  width: 280px;
  background-color: #0d6efd;
  color: #fff;
  transition: all 0.3s ease;
  padding: 0px 3px;
}

.sidebar a {
  color: #fff;
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  transition: background 0.3s;
  border: 1px solid #63D0F8;
  font-weight: bolder;
}

.sidebar a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.sidebar .submenu {
  padding: 5px 5px;
  background-color: rgba(255, 255, 255, 0.1);
  display: none;
}

.sidebar .submenu a {
  font-size: 12px;
  padding-left: 30px;
}

.sidebar.collapsed {
  width: 0;
  /*overflow: hidden;*/
}

.content {
  flex: 1;
  padding: 10px;
  background-color: #f8f9fa;
}

.rotate {
  transform: rotate(90deg);
  transition: transform 0.3s;
}

/*---------------------------------------------------------------*/
.saptable {
  /*font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;*/
  font-size: 11px;
  width: 100%;
  /*margin:0.5rem;*/
}
.saptable td, .saptable th {
  border: 1px solid #ddd;
  padding: 2px;
}
.saptable tr:nth-child(even){background-color: #f2f2f2;}

.saptable tr:hover {background-color: #ddd;}

.saptable th {
  padding-top: 3px;
  padding-bottom: 3px;
  text-align: left;
  background-color: #3399ff;
  color: white;
  vertical-align: middle;
}

.button_01 {
  background-color: #3399ff;
  border: none;
  color: white;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  font-weight: bolder;
  margin: 4px 0px;
  cursor: pointer;
}

.button_02 {
  background-color: #04AA6D;
  border: none;
  color: white;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  font-weight: bolder;
  margin: 4px 0px;
  cursor: pointer;
}

.button_03 {
  background-color: #F4320B;
  border: none;
  color: white;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  font-weight: bolder;
  margin: 4px 0px;
  cursor: pointer;
}

.login_center {
  margin: auto;
  width: 50%;
  border: 3px solid #3476fa;
  padding: 10px;
  text-align: center;
}

#result {
    font-family: lucida console, courier new, courier, monospace;
    margin: 0;
    padding: 10px 0;
    height: 70vh;
    border-radius: 0;
    resize: none;
    font-size: 10px;
    line-height: 1.2;
    outline: none;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: calc(0.5rem + 5px);
    width:100%;
    /* Determine appearance of code editor */
    background-color:#272822;
    border-color:#272822;
    color:#ffffff;
    outline:none;

    overflow: auto;
    white-space: nowrap;
  }
  