/*Script Preview*/

#script {
    width: 100%;
    padding: 10px;
    overflow-y: hidden;  /* Hide vertical scrollbar */
    height: 40px; 
    white-space: pre-wrap; 
    word-wrap: break-word; 
    box-sizing: border-box; 
}

#output {
    margin-bottom: 10px;
    border-radius: 5px;
}

#output > div {
    border: 1px solid rgb(209 213 219);
    border-radius: 5px;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    min-height: 40px; 
    word-wrap: break-word; 
    overflow-wrap: break-word;
    box-sizing: border-box; 
}

.line-number {         
    font-weight: bold;     
    margin-right: 10px;
}

#previewLabel {
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
    display: none;
}