* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 960px;
    margin: 20px auto;
    padding: 20px;
}

.container table {
    width: 100%;
    border-collapse: collapse;
    background-color: #f4f4f4;
    border: 1px solid black;
    border-radius: 5px;
}

.container table thead {
    background-color: #AEAEA4;
}

.container table th {
    padding: 12px;
    text-align: left;
    font-weight: bold;
}

.container table td {
    padding: 12px;
    text-align: left;
}

.container table tbody tr:nth-child(even) {
    background-color: #e8e8e8;
}

.container table tbody tr:hover {
    background-color: #d8d8d8;
}

.container table a {
    display: inline-block;
    padding: 8px 16px;
    margin: 8px 0;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.container table a:hover {
    background-color: #555;
}