body{

    background:#f5f5f5;
    font-family:Arial;
}

.container{

    width:800px;
    margin:30px auto;
    background:white;
    padding:20px;
    border-radius:8px;
    box-shadow:0 0 10px #ccc;
}

label{

    display:block;
    margin-top:15px;
    font-weight:bold;
}

input[type=text],
select,
textarea{

    width:100%;
    padding:8px;
    font-size:16px;
}

textarea{

    height:120px;
}

input[type=submit]{

    padding:12px 30px;
    font-size:18px;
    margin-top:20px;
}
.listTable{

    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}

.listTable th{

    background:#1976d2;
    color:white;
    padding:10px;
}

.listTable td{

    border:1px solid #ddd;
    padding:8px;
}

.listTable tr:nth-child(even){

    background:#f7f7f7;
}

.listTable img{

    border-radius:4px;
}