.container {
    display: flex;  
    align-items: center;  
    justify-content: space-between;  
}

.input-col {
    flex: 1;  /* This ensures it takes the space required by its content */
    padding: 0 10px;  /* Spacing between columns */
    min-width: 200px;
}

.output-col {
    flex: 2;  /* This will make it take up twice as much space as the input */
    padding: 0 10px;  /* Spacing between columns */
    border-radius: 5px; 
    min-width: 400px;
    overflow: auto;
}


.small-caps-input {
    width: 100%; 
    padding: 6px 12px;
    font-size: 16px!important;
    margin-right: 20px;  /* spacing between the input and the output */
    border-radius: 15px;  /* rounded corners for the input */
}

#small-caps-output {
    color: white;  
    font-size: 24px;  
    word-wrap: break-word;  
    white-space: pre-wrap;  
    background-color: #1f2933; 
    border: white solid 1px;
    padding: 20px;
    border-radius: 5px;
    margin:0!important;
}
