/* फाइल: /tools/text-repeater-online/tool-style.css */
.tool-container-v3 { max-width: 900px; /* ... */ }
.tool-header { text-align: center; margin-bottom: 2rem; }
.tool-header h1 { font-size: 2.5rem; }
.input-area { /* ... (आपके पिछले टूल जैसा ही) ... */ }
.input-header { /* ... (आपके पिछले टूल जैसा ही) ... */ }
.text-area-v3 { width: 100%; min-height: 100px; /* ... (बाकी स्टाइल पहले जैसा) ... */ }
.output-area { margin-top: 2rem; }
.output-header { display: flex; justify-content: space-between; align-items: center; background-color: var(--background-color); padding: 0.5rem 1rem; border: 1px solid var(--border-color); border-bottom: none; border-top-left-radius: var(--border-radius); border-top-right-radius: var(--border-radius); font-weight: 500; }
.text-area-v3.output { border-top-left-radius: 0; border-top-right-radius: 0; min-height: 250px; }
.tool-btn-copy { background-color: var(--primary-color); color: var(--white-color); border: none; padding: 0.4rem 0.8rem; border-radius: 5px; cursor: pointer; }
.controls-container { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.control-group { display: flex; flex-direction: column; }
.control-group label { font-weight: 500; margin-bottom: 0.5rem; }
.control-input { padding: 0.75rem; border: 1px solid var(--border-color); border-radius: var(--border-radius); font-size: 1rem; }
.generate-btn { width: 100%; padding: 1rem; font-size: 1.2rem; font-weight: 700; background-color: #198754; color: var(--white-color); border: none; border-radius: var(--border-radius); cursor: pointer; transition: background-color 0.2s ease; }
.generate-btn:hover { background-color: #157347; }
.content-box { /* ... (पहले जैसा) ... */ }
@media (max-width: 600px) { .controls-container { grid-template-columns: 1fr; } }