body{
    font-family:Arial,sans-serif;
    background:#f4f7f5;
    margin:0;
}

.container{
    max-width:900px;
    margin:auto;
    padding:20px;
}

.card{
    background:#fff;
    border-radius:12px;
    padding:20px;
    box-shadow:0 3px 12px rgba(0,0,0,.1);
}

.row{
    display:grid;
    grid-template-columns:1fr 220px;
    gap:10px;
}

input,
select{
    padding:12px;
    border-radius:8px;
    border:1px solid #ccc;
}

table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}

th,
td{
    padding:10px;
    border:1px solid #ddd;
}

th{
    background:#0b7a4b;
    color:#fff;
}

small{
    color:#666;
    font-size:13px;
}

@media(max-width:700px){

    .row{
        grid-template-columns:1fr;
    }

}