body {
    background: #9ab6dc; /* Светло-синий фон */
    font-family: "Times New Roman", sans-serif;
    margin: 0;
    padding: 20px;
}

h2, h1 {
    color: #011140; /* Тёмно-синий */
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

li {
    margin-bottom: 20px;
    padding: 10px;
}

a {
    text-decoration: none;
    color: #011140; /* Тёмно-синий цвет текста */
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

a:hover {
    color: #F25C05; /* Ярко-оранжевый при наведении */
}

/* --- Стиль для таблицы --- */

table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: #a8c7f1; /* Светло-голубой фон всей таблицы */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #ccc;
    color: #011140;
}

th {
    background-color: #011140; /* Тёмно-синий фон шапки */
    color: #F2E205; /* Жёлтый текст в шапке */
    font-size: 18px;
}

tr:hover {
    background-color: #F2E205; /* Жёлтый фон строки при наведении */
    color: #011140;
    cursor: pointer;
}

/* --- Стиль для input --- */

input[type="text"] {
    padding: 6px 10px;
    border: 1px solid #2165BF;
    border-radius: 5px;
    background-color: white;
    color: #011140;
}
