/* css/text-case-change.css */

#input-text-tcc,
#output-text-tcc {
    min-height: 150px;
    /* Ensure a decent initial height */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.case-btn {
    padding: 0.75rem 0.5rem;
    /* Adjust padding for more buttons */
    font-size: 0.875rem;
    /* text-sm */
    /* Ensure buttons wrap nicely if there are many */
    white-space: normal;
    /* Allow text to wrap if button text is long */
    line-height: 1.2;
    min-height: 50px;
    /* Ensure consistent height for wrapped text */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments if needed beyond Tailwind's grid */
@media (max-width: 640px) {
    h1 {
        font-size: 1.8rem;
    }

    .case-btn {
        font-size: 0.8rem;
        padding: 0.6rem 0.4rem;
        min-height: 45px;
    }
}