    body {
            font-family: Arial, sans-serif;
            background-color: #f2f2f2;
            height: 100vh;
            justify-content: center;
            align-items: center;
        }
        .login-container {
            width:100%;
            margin: 50px auto;
            font-family: Arial, sans-serif;
            border: 1px solid #ccc;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .login-container.narrow {
           width: 40%;
        }
        .login-container h2 {
            text-align: center;
        }
        .login-container label {
            display: block;
            margin: 10px 0 5px;
        }
        .login-container input[type="text"],
        .login-container input[type="number"],
        .login-container input[type="password"],
        .login-container select {
            
            padding: 8px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }

        .login-container input[type="submit"]{
            width: 30%;
            padding: 10px;
            background-color: red;
            border: none;
            color: white;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
        }
        .login-container button:hover {
            background-color: #4CAF50;
        }
        .error {
            color: red;
            text-align: center;
            margin-bottom: 15px;
        }
        .header {
            display: inline-flex;
            justify-content:center;
            align-content: center;
        }
        .content {
    display: flex;
    flex-direction: row;
    overflow-x: auto;       /* Горизонтальная прокрутка при нехватке места */
    white-space: nowrap;    /* Не переносить ссылки на новую строку */
    gap: 10px;              /* Расстояние между ссылками */
    padding: 10px 20px;
    background-color: #f2f2f2;
    border-radius: 6px;
    align-items: center;
}

.content a.logout {
    text-decoration: none;
    color: #fff;
    background-color: #4CAF50;
    padding: 10px 15px;
    border-radius: 4px;
    white-space: nowrap; /* Не переносить текст внутри ссылки */
    display: inline-block;
    flex-shrink: 0;       /* Не сжимать ссылку при нехватке места */
}



        .table-container {
            width: 100%;
            margin-top: 20px;
            overflow-x: auto;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .table-container table {
            width: 100%;
            border-collapse: collapse;
        }
        .table-container th,
        .table-container td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .table-container th {
            background-color: #ada4a4;
            font-weight: bold;
        }
        .table-container tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .table-container tr:hover {
            background-color: #f1f1f1;
        }
        .table-container td {
            font-family: Arial, sans-serif;
            color: #333;
        }
        .table-container .action-btn {
            text-decoration: none;
            color: #fff;
            background-color: #4CAF50;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 14px;
            display: inline-block;
        }
        .table-container .delete-btn {
            background-color: #f44336;
        }
