/* फाइल: /tools/upside-down-text-generator/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 { /* ... (आपके पिछले टूल जैसा ही) ... */ margin-bottom: 1.5rem; }
.input-header { /* ... (आपके पिछले टूल जैसा ही) ... */ }
.text-area-v3 { width: 100%; min-height: 150px; /* ... (बाकी स्टाइल पहले जैसा) ... */ }
.output-area { margin-top: 1.5rem; }
.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: 150px; }
.tool-btn-copy { background-color: var(--primary-color); color: var(--white-color); border: none; padding: 0.4rem 0.8rem; border-radius: 5px; cursor: pointer; }

/* --- चेकबॉक्स का स्टाइल --- */
.options-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.control-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--background-color);
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.9rem;
}
.control-label input[type="checkbox"] { width: 1.2em; height: 1.2em; }
.content-box { /* ... (पहले जैसा) ... */ }