/* फाइल: /tools/character-counter-with-spaces/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: 250px; /* थोड़ी ज़्यादा हाइट */ /* ... (बाकी स्टाइल पहले जैसा) ... */ }

/* --- परिणाम ग्रिड का स्टाइल --- */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.result-box {
    background-color: var(--white-color);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.result-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    display: block;
}
.result-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}
.content-box { /* ... (पहले जैसा) ... */ }