body{
    font-family: Arial, sans-serif;
    background:#f4f4f4;
}

.container{
    width:800px;
    margin:30px auto;
    background:white;
    padding:20px;
    border-radius:8px;
}

h1{
    text-align:center;
}

form{
    display:grid;
    gap:10px;
    margin-bottom:20px;
}

input{
    padding:10px;
}

button{
    padding:10px;
    background:#007bff;
    color:white;
    border:none;
    cursor:pointer;
}

button:hover{
    background:#0056b3;
}

table{
    width:100%;
    border-collapse:collapse;
}

table,th,td{
    border:1px solid #ccc;
}

th{
    background:#007bff;
    color:white;
}

th,td{
    padding:10px;
    text-align:center;
}

.edit{
    background:green;
    margin-right:5px;
}

.delete{
    background:red;
}