﻿body {
    font-family: Arial, sans-serif;
    margin: 20px;
}
.header {
    text-align: center;
    margin-bottom: 20px;
}
.title {
    font-size: 24px;
    font-weight: bold;
}
.subtitle {
    font-size: 18px;
    color: #555;
    margin-top: 10px;
}
a {
    color: #0066cc;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Стили для основной таблицы */
.table-main {
    width: 60%;
    margin: 20px auto;
    border-collapse: collapse;
}
.table-main th,
.table-main td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
}
.table-main th {
    background-color: #4CAF50;
    color: white;
    text-align: center;
}
.table-main td:first-child {
    width: 40%;
}

/* Стили для детальных таблиц */
.table-detail {
    width: 60%;
    margin: 20px auto;
    border-collapse: collapse;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.table-detail th,
.table-detail td {
    border: 1px solid #ddd;
    padding: 10px 12px;
}
.table-detail th {
    background-color: #2196F3;
    color: white;
    text-align: center;
}
.table-detail td:nth-child(1),
.table-detail td:nth-child(3),
.table-detail td:nth-child(4),
.table-detail td:nth-child(5),
.table-detail td:nth-child(6) {
    text-align: center;
    width: 8%;
}
.table-detail td:nth-child(2) {
    width: 40%;
}