/* फाइल: /tools/add-prefix-suffix-to-lines-online/tool-style.css */
.tool-container-v3 { max-width: 1200px; /* थोड़ा ज़्यादा चौड़ा */ /* ... */ }
.tool-header { text-align: center; margin-bottom: 2rem; }
.tool-header h1 { font-size: 2.5rem; }
.text-area-v3 { width: 100%; min-height: 350px; /* थोड़ा ज़्यादा लंबा */ /* ... */ }
.utility-buttons { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }
.tool-btn.utility { padding: 0.8rem 1.8rem; font-size: 1.1rem; /* ... */ }

/* --- मुख्य तीन-कॉलम लेआउट --- */
.main-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
}
.column {
    display: flex;
    flex-direction: column;
}
.column-label {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
}
.controls-column {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}
.control-group {
    margin-bottom: 1.5rem;
}
.control-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}
.control-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
}
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.control-label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; cursor: pointer; }
.control-label input[type="checkbox"] { width: 1.2em; height: 1.2em; }

/* --- मोबाइल के लिए रेस्पॉन्सिव स्टाइल --- */
@media (max-width: 992px) {
    .main-layout {
        grid-template-columns: 1fr;
    }
    .controls-column {
        grid-row: 2; /* कंट्रोल्स को बीच में ले आओ */
    }
}
.content-box { /* ... (पहले जैसा) ... */ }