/* Очистка текста */

.text-cleaner-tool {
    padding: 1rem 0;
}

.text-cleaner-options {
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    background: var(--bg-secondary, #f8fafc);
}

.text-cleaner-options-title {
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.text-cleaner-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
}

.text-cleaner-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.text-cleaner-checkbox input {
    margin: 0;
}

.text-cleaner-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 768px) {
    .text-cleaner-layout {
        grid-template-columns: 1fr;
    }
}

.text-cleaner-panel {
    padding: 1.25rem;
    border-radius: 12px;
    background: var(--bg-secondary, #f8fafc);
}

.text-cleaner-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.text-cleaner-textarea {
    width: 100%;
    min-height: 200px;
    margin-bottom: 0.75rem;
}

.text-cleaner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.text-cleaner-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
