*{
    margin: 0;
    padding: 0;
}


.wrapper{
    display: flex;
    width: 100%;
    height: 100svh;
    overflow: hidden;
}

.input{
    width: 50%;
    display: flex;
    flex-direction: column;
    background-color: rgb(26, 26, 26);
}

.input section{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.input section div{
    display: flex;
    align-items: center;
    background-color: black;
    height: 50px;
    gap: 7px;
}

i{
    color: white;
    margin-left:7px;
    font-size: 1.1rem;
}

.input section textarea{
    width:calc(100%-8px);
    padding-left:8px;
    padding-top:5px;
    height:100%;
    resize: none;
    outline: 0;
    background-color: rgb(26, 26, 26);
    color: rgb(209, 209, 209);
    font-size: 1rem;
    border: 0;
    text-decoration: none !important;
}

.input section h1{
    color: #ffffffff;
    font-family: sans-serif;
}

iframe{
    width:calc(100% - 5px);
    overflow: auto;
    height:100%;
}

#errorDiv{
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 40%;
    height: 40%;
    line-height: 23px;
    position: absolute;
    right: 0;
    background-color:rgb(26, 26, 26);
    overflow: hidden;
    padding: 10px;
    word-wrap: break-word;
    overflow-y: auto;
    gap: 20px;
}

#errorMessage{
    word-wrap: break-word;
    font-size: 1rem;
    color: rgb(255, 116, 116);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: lighter;
}

#closeBtn{
height: 35px;
min-height: 35px;
border-radius: 10px;
background-color: rgb(31, 31, 31);
border: 1px solid white;
color: rgb(243, 243, 243);
font-size: 1.2rem;
cursor: pointer;
font-family: sans-serif;
outline: 0;
}

.outputDiv{
    width: 50%;
    display: flex;
    position: relative;
}
