/* css/duplicate-lines-remover.css */

#input-text-dlr,
#output-text-dlr {
    min-height: 200px;
    /* Ensure a decent initial height */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
    /* Good for lists/code */
}

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

    #stats-dlr {
        font-size: 0.8rem;
        /* Smaller stats text on mobile */
        text-align: center;
        width: 100%;
        margin-bottom: 0.75rem;
    }

    #stats-dlr span {
        /* Make individual stats wrap if needed */
        display: inline-block;
        margin-right: 0.5rem;
    }
}