/* Общие стили */
* {
    box-sizing: border-box;
}

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

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

header h1 {
    text-align: center;
    color: #333;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    padding-left: 0;
}

nav a {
    text-decoration: none;
    color: #333;
    transition: all .3s ease-in-out;
}

nav a:hover {
    color: #ff6b6b;
}

footer p {
    text-align: right;
    color: #aaa;
}

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

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}