/* फाइल: /tools/remove-spaces-from-text-online/tool-style.css */
.tool-container { max-width: 1000px; 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; color: var(--heading-color); }
.text-boxes-container { display: flex; gap: 2rem; margin-bottom: 1.5rem; }
.text-box-wrapper { flex: 1; display: flex; flex-direction: column; }
.text-box-wrapper label { font-weight: 500; margin-bottom: 0.5rem; }
.text-area { width: 100%; min-height: 250px; padding: 1rem; font-size: 1rem; font-family: monospace; border: 1px solid var(--border-color); border-radius: var(--border-radius); resize: vertical; flex-grow: 1; }
.text-area:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25); }

/* --- कंट्रोल ऑप्शंस का स्टाइल --- */
.options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 1rem;
    margin: 1rem 0 1.5rem 0;
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}
.control-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #fff;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.control-label:hover { border-color: var(--primary-color); }
.control-label input[type="checkbox"] { width: 1.2em; height: 1.2em; }

/* --- यूटिलिटी बटन और कंटेंट बॉक्स का स्टाइल --- */
.utility-buttons { display: flex; justify-content: center; gap: 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 { /* ... (पहले जैसा) ... */ }

/* --- मोबाइल के लिए रेस्पॉन्सिव स्टाइल --- */
@media (max-width: 768px) {
    .text-boxes-container { flex-direction: column; }
    .options-container { flex-direction: column; align-items: flex-start; }
}