body{
	margin:0;
	font-family: sans-serif;
    display: flex;
    align-items: stretch;
  background: #fff;

}
#menu,
#content,
#result{
    overflow: auto;
    height: 100vh;
}

#menu,
#content {
    /*border-right: 1px solid #dadada;*/
    resize: horizontal;
    flex-grow: 0;
    flex-shrink: 0;
    width: 33%;
    max-width: 80%;
    min-width: 10px;
}
#result{
    flex-grow: 1;
    flex-shrink: 1;
}
*{
	box-sizing: border-box;
}


#menu {
    background: linear-gradient(45deg ,#0060df, #a400df);
    position: relative;
    overflow: auto;
    /*The RTL hack to get the scrollbar on the left side also gets the resize handle on the left, not ideal*/
    /*direction: rtl;*/
}

#menu .menu-inner{
    /*direction: ltr;*/
}

#menu a{
    display: block;
    text-decoration: none;
    padding: 12.5px 25px;
    line-height: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    color: #fff;
}
 #menu a.active{
     background:#fff;
     color:black;
     position: relative;
     z-index: 1;
 }

#content textarea{
	display: block;
	width: 100%;
	resize: vertical;
    min-height: 300px;
    padding: 25px;
    line-height: 25px;
    font-family: monospace;
}
#result{

	font-family:monospace;
}
#result table{
    border-collapse: collapse;
}
#result td{
	max-width: 200px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

thead{
    color: white;
    background: linear-gradient(45deg, #0060df, #a400df);
}
td,th{
	line-height: 25px;
	padding: 12.5px 25px;
}
th{
    text-align: left;
    font-weight: bold;
	border-bottom-color: grey;
}

tbody tr:nth-child(2n) td:nth-child(2n),
tbody tr:nth-child(2n+1) td:nth-child(2n+1){
	background: rgba(0,0,0,0.05);
}
#solution{
	display: none;
}

#content {
    position: relative;
	padding: 50px;
}
#content
.buttons{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content:space-between;
    gap: 10px;
    padding: 10px;

}
#content
.buttons
>*{
    flex-basis: 33%;
    flex-grow: 1;
    text-align: center;
	cursor: pointer;
	display: block;
	padding: 10px 12.5px;
    /*background: #0060df;*/
    background: linear-gradient(45deg, #0060df, #a400df);
    box-shadow: 0 2px 0 #004095;
    transform: translateY(-2px);
	color: #fff;
	border: none;
	text-decoration: none;
    font:inherit;
	font-weight: bold;
	line-height: 25px;
    border-radius: 2px;
    transition: box-shadow 0.2s, transform 0.2s;
    animation: fadeIn 0.2s;
}



#content
.buttons
>*:active{
    box-shadow: 0 0 0 #004095;
    transform: translateY(0);
}

#content
.buttons
>*[disabled="true"]{
    opacity: 0.2;
    pointer-events: none;
    background: #b7b7b7;
    box-shadow: 0 0 0 #a9a9a9;
    transform: translateY(0);
}

@keyframes fadeIn {
    0%{
    opacity: 0.2;
    background: #b7b7b7;
    box-shadow: 0 0 0 #a9a9a9;
    transform: translateY(0);
    }
}
#result{
    background: linear-gradient(to right, rgba(0,0,0,0.05), rgba(0,0,0,0) 20px);
}
#result>p{

  padding: 25px;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}




.error {background: linear-gradient(45deg, #ffce0f, #ff6c00);
}

h1{
    margin: 0 0 25px 0;
    padding: 0;
     font-size: 48px;
    font-weight: 800;
    line-height: 50px;
    background: linear-gradient(45deg, #0060df, #a400df);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
p{
    line-height: 25px;
    padding: 0;
    margin-bottom: 25px;
}

/*.github-link {*/
/*  background: #333;*/
/*  color: white;*/
/*  font-weight: bold;*/
/*  text-decoration: none;*/
/*  text-transform: uppercase;*/
/*  position: fixed;*/
/*  right: 0;*/
/*  top:0;*/
/*  padding: 10px 60px;*/
/*  transform: rotate(45deg) translateX(80px);*/
/*}*/
/*.github-link:hover{*/
/*    background: #222;*/
/*}*/