/* Загальні стилі */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f9f9f9;
    color: #333;
}

/* Заголовки */
h1, h2 {
    color: #444;
}

/* Навігаційне меню */
nav {
    margin-bottom: 20px;
}
nav a {
    display: inline-block;
    margin-right: 10px;
    padding: 6px 12px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}
nav a:hover {
    background-color: #2980b9;
}

.active {
    font-weight: bold;
    background-color: #0d4a73;
}


/* Таблиці */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
table th, table td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left;
}
table th {
    background-color: #3498db;
    color: white;
}

/* Форми */
form input, form select, form button {
    padding: 6px 10px;
    margin: 4px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}
form button {
    background-color: #2ecc71;
    color: white;
    border: none;
    cursor: pointer;
}
form button:hover {
    background-color: #27ae60;
}
