.text-counter-wrapper{
background:#f8f9fa;
padding:20px;
border:1px solid #e0e0e0;
font-family:Arial;
}

.tc-header{
background:#a7e05e;
padding:10px;
text-align:center;
}

.tc-header h2{
color:#000;
margin:0;
}

#tc-text{
width:100%;
height:200px;
padding:10px;
margin-top:15px;
border:1px solid #e0e0e0;
}

.tc-buttons{
margin-top:10px;
}

.tc-buttons button{
background:#a7e05e;
border:none;
padding:10px 20px;
margin-right:10px;
cursor:pointer;
}

.tc-buttons button:hover{
background:#8bc34a;
}

.tc-results{
margin-top:20px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:10px;
}

.tc-card{
background:#fff;
padding:15px;
border:1px solid #e0e0e0;
box-shadow:0 2px 4px rgba(0,0,0,0.05);
}

/* Tablet */

@media(max-width:900px){
.tc-results{
grid-template-columns:repeat(2,1fr);
}
}

/* Mobile */

@media(max-width:500px){
.tc-results{
grid-template-columns:1fr;
}
}