.container{
    width:700px;
    max-width:90%;
    background:rgb(0, 0, 0);
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

textarea{
    width:100%;
    height:250px;
    padding:15px;
    font-size:16px;
    border:2px solid #ccc;
    background:#1e1e1e;
    color:white;
    border-radius:10px;
    resize:vertical;
    box-sizing:border-box;
}

.stats{
    margin-top:20px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.box{
    background:#3f3f3f;
    padding:15px;
    border-radius:10px;
    text-align:center;
}

.number{
    font-size:28px;
    font-weight:bold;
}

.label{
    color:#b0b0b0;
}

.info-card {
    background-color: #1f1f1f;
    border: 1px solid #444;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: left;
    transition: 0.2s ease;

    margin: 20px;
    box-sizing: border-box;
}