/* Word Counter – Infotechi (AdSense Safe) */

.word-counter-wrapper {
    background: #26ae61 !important;
    color: #ffffff !important;
    padding: 30px !important;
    border-radius: 16px !important;
    max-width: 800px !important;
    margin: 40px auto !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2) !important;
}

.word-counter-wrapper h2 {
    color: #ffffff !important;
    text-align: center;
    margin-bottom: 20px;
    font-size: 26px;
}

.word-counter-wrapper textarea {
    width: 100%;
    min-height: 180px;
    padding: 15px;
    border-radius: 12px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #000000 !important;   /* 👈 TEXT BLACK */
    background: #ffffff !important;
}

.word-counter-wrapper textarea::placeholder {
    color: #666;
}

.wc-results {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
}

.wc-results div {
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 600px) {
    .wc-results {
        flex-direction: column;
        gap: 10px;
    }
}
