*{
    overflow-x: hidden;
    box-sizing: border-box;
    padding: 0;
    margin: 0;   
    color: #ffffffcb;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    background-color: rgb(36, 56, 86);
}
.container{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row-reverse;
}
.left,.right{
    /* flex-basis: 50%; */
    padding: 5px;
}
.left{
    width: 30%;
    overflow-y: hidden;
    background-color: rgb(0, 0, 0);
    padding-right:10px ; 
}
.right{
    width: 70%;
    height: 100%;   
    margin: 0;
    background-color: rgb(0, 0, 0);
}
textarea{
    width: 100%;
    height: 28.7%;
    background-color: #1f1f1f;
    padding: 10px 20px;
    border: 0;
    outline: 0;
    font-size: 13px;
}
iframe{
    width: 100%;
    height: 100%;
    background-color: #fff;
    border: 0;
    outline: 0;
}
label i{
    margin-right: 10px;
    margin-left: 10px;
}
label{
    display: flex;
    align-items: center;
    background: #000;
    height: 30px;
}
#output{
    width: 100%;
    height: 95.3%;
}
#name-tag{
    background-color: #1f1f1f;
    height: 100%;
    padding-top: 6px;
    width:90px;
    padding-right: 10px;
    border-top:2px solid #ffffff71;
    display: flex;
    align-items: baseline;
    justify-content: center;
}
#name-tag1{
    background-color: #fffefe;
    color: black;
    height: 100%;
    font-weight: bold;
    width:100px;
    border-top:2px solid #00000077;
    display: flex;
    align-items: baseline;

}

@media (max-width: 576px) {

.container{
    width: 100%;
    height: 100vh;
    /* padding: 20px; */
    display: flex;
    flex-direction:column-reverse;
}
.left{
    width: 100%;
    height: 100%;
    /* overflow-y: hidden; */
    background-color: rgb(0, 0, 0);
    /* padding-right:10px ;  */
    padding: 5px;

}

.right{
    width: 100%;
    height: 100%;   
    overflow-y: scroll;
    margin: 0;
    background-color: rgb(0, 0, 0);
}
textarea{
    width: 100%;
    height: 23%;
    background-color: #1f1f1f;
    padding: 10px 20px;
    border: 0;
    outline: 0;
    font-size: 13px;
}

}
/* Style the scrollbar track */
textarea::-webkit-scrollbar {
    width: 10px; /* Width of the scrollbar track */
    background-color: #ffffff5c; /* Background color of the track */
}


/* Style the scrollbar thumb/handle */
textarea::-webkit-scrollbar-thumb {
    background-color: rgba(199, 199, 199, 0.774); /* Color of the scrollbar thumb */
    border-radius: 5px; /* Rounded corners for the thumb */
}

/* Style the scrollbar when the mouse hovers over it */
textarea::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.926); /* Color of the scrollbar thumb on hover */
}
.iframe-container iframe::-webkit-scrollbar {
    width: 10px; /* Adjust the width as needed */
}
