#UTC_Output {
    width: 100%;
}

#UTC_Output .UTC_Style {
    margin-bottom: 10px;
    padding: 8px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    text-align: left;
}

.copy-btn {
    margin: 5px;
    padding: 3px 8px !important;
    background: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 12px !important;
}

.copy-btn:hover {
    background-color: #4598C9;
}

.style-output {
    margin-left: 100px;
    /* Adds space between the style name and the text */

}

#UTC_Input {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    margin-bottom: 10px;
    height: 80px;
    border: none;
    box-shadow: none;
}

#UTC_Out .UTC_Style {
    margin-bottom: 10px;
    padding: 8px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
}

.copy-btn {
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 5px 10px;
    margin-left: 10px;
    border-radius: 5px;
}

.copy-btn:hover {
    background-color: #45a049;
}

.adBox {
    margin: 10px 0;
}


.unicode-text-converter {
    margin: 20px auto;
    text-align: center;
}

.unicode-text-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.input-section,
.output-section {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bordered-section {
    border: 1px solid #ccc;
    border-radius: 2px;
}

.output-section {
    max-height: 510px;
}

/* Input field */
.unicode-text-container textarea {
    width: 100%;
    height: 220px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    resize: none;
}

/* Sentence Case Output */
#unicode-text-output {
    font-family: monospace;
    white-space: pre;
    text-align: left;
    background: #f8f8f8;
    padding: 10px;
    width: 100%;
    min-height: 220px;
    border: 1px solid #ccc;
    overflow-x: auto;
    margin: 0;
    max-height: 300px;
}

/* Statistics section */
.text-stats {
    text-align: left;
    font-size: 14px;
    width: 100%;
    padding: 5px;
    background: #f1f1f1;
    margin-top: 5px;
    display: flex;
    gap: 14px;
}

.text-stats p {
    margin: 5px 0;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    .unicode-text-container {
        flex-direction: column;
    }

    .input-section,
    .output-section {
        width: 100%;
    }
}

.buttons {
    margin-top: 10px;
}

.unicode-text-converter button {
    margin: 5px;
    padding: 10px 15px;
    background: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.unicode-text-converter button:hover {
    background: #005177;
}