*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
  line-height: 1.6;
}

.header{
padding: 200px 20px 20px;
text-align:center;
}

.container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:25px;
}

textarea{
width:100%;
min-height:350px;
padding:15px;
border-radius:12px;
border:none;
font-size:16px;
resize:vertical;
}

.report{
background:#1e293b;
padding:20px;
border-radius:12px;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:15px;
margin-top:20px;
}

.stat-box{
background:#0f172a;
padding:15px;
border-radius:10px;
text-align:center;
}

.stat-box h3{
margin-bottom:10px;
font-size:16px;
}

.stat-box p{
font-size:22px;
font-weight:bold;
color:#3b82f6;
}

small{
color:#94a3b8;
}

@media(max-width:900px){
.container{
grid-template-columns:1fr;
}
}