/* फाइल: /tools/title-case-converter-online/tool-style.css */
/* --- यह स्टाइल लगभग आपके 'uppercase-to-lowercase' टूल जैसा ही है --- */
.tool-container { max-width: 900px; background-color: var(--white-color); padding: 2rem; border-radius: var(--border-radius); box-shadow: var(--box-shadow); margin-top: 2rem; }
.tool-header { text-align: center; margin-bottom: 2rem; }
.tool-header h1 { font-size: 2.5rem; }
.text-area { width: 100%; min-height: 150px; padding: 1.2rem; font-size: 1.2rem; /* थोड़ा बड़ा फॉन्ट */ border: 1px solid var(--border-color); border-radius: var(--border-radius); resize: vertical; }
.text-area:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25); }
.text-box-wrapper { margin-bottom: 1.5rem; }
.text-box-wrapper label { font-weight: 500; margin-bottom: 0.5rem; display: block; }
.utility-buttons { display: flex; justify-content: center; gap: 1rem; margin-top: 1rem; }
.tool-btn.utility { padding: 0.75rem 1.5rem; font-size: 1rem; font-weight: 500; border: none; background-color: var(--primary-color); color: var(--white-color); border-radius: var(--border-radius); cursor: pointer; transition: all 0.2s ease; }
.tool-btn.utility.clear { background-color: #6c757d; }
.tool-btn.utility:hover { opacity: 0.9; }
.content-box { /* ... (पहले जैसा) ... */ }