.text-compare {
    margin-top: 20px;
}

.text-compare .inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.text-compare textarea {
    flex: 1 1 45%;
    min-height: 160px;
    padding: 10px;
    font-family: monospace;
    font-size: 0.95rem;
    border: 1px solid #333;
    border-radius: 6px;
    background: #111;
    color: #f0f0f0;
}

.text-compare button {
    margin-top: 15px;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    background: #444;
    color: #fff;
    cursor: pointer;
}

.text-compare button:hover {
    background: #666;
}

.diff-output {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #333;
    border-radius: 6px;
    min-height: 100px;
    font-family: monospace;
    background: #000;
    color: #f0f0f0;
    white-space: pre-wrap;
}

.diff-output ins {
    background: rgba(0, 200, 0, 0.3);
    text-decoration: none;
}

.diff-output del {
    background: rgba(200, 0, 0, 0.603);
    border-radius: 3px;
}

#diffStatus {
    margin-top: 15px;
}

#compareBtn {
    user-select: none;
}