
        :root {
            --bg-color: #f4f6f9;
            --table-bg: #ffffff;
            --primary: #007bff;
            --success: #28a745;
            --warning: #ffc107;
            --danger: #dc3545;
            --info: #17a2b8;
            --text-dark: #343a40;
            --border-color: #dee2e6;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-color);
            color: var(--text-dark);
            padding: 20px;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: var(--table-bg);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            border: 1px solid var(--border-color);
        }
        
        h1, h2 {
            color: var(--text-dark);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .actions {
            margin-bottom: 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px;
            text-decoration: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            transition: background 0.2s;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .btn:hover {
            transform: translateY(-1px);
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #0056b3;
        }
        
        .btn-secondary {
            background-color: #6c757d;
            color: white;
        }
        
        .btn-secondary:hover {
            background-color: #5a6268;
        }
        
        .btn-success {
            background-color: var(--success);
            color: white;
        }
        
        .btn-success:hover {
            background-color: #218838;
        }
        
        .btn-small {
            padding: 5px 10px;
            font-size: 12px;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
            font-size: 14px;
        }
        
        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        
        thead {
            background-color: var(--primary);
            color: white;
        }
        
        th {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 0.5px;
        }
        
        tr:last-child td {
            border-bottom: none;
        }
        
        tr:hover {
            background-color: #f8f9fa;
        }
        
        .active {
            color: var(--success);
            font-weight: bold;
        }
        
        .inactive {
            color: var(--danger);
        }
        
        .changed {
            color: #fd7e14;
            font-weight: bold;
            background: #fff3cd;
            padding: 2px 6px;
            border-radius: 4px;
        }
        
        .unchanged {
            color: #6c757d;
        }
        
        .new {
            color: var(--info);
            font-weight: bold;
        }
        
        .success {
            color: var(--success);
            font-weight: bold;
        }
        
        .error {
            color: var(--danger);
            font-weight: bold;
        }
        
        .task-info, .task-actions, .task-results {
            margin-bottom: 30px;
        }
        
        .results, .result {
            margin-top: 20px;
        }
        
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.2s;
        }
        
        a:hover {
            color: #0056b3;
            text-decoration: underline;
        }
        
        .header-actions {
            margin-bottom: 20px;
        }
        
        .col-actions {
            white-space: nowrap;
            display: flex;
            gap: 5px;
        }
        
        .col-name {
            font-weight: 500;
        }
        
        .verdict-SUCCESS {
            color: var(--success);
            font-weight: bold;
        }
        
        .verdict-SKIPPED {
            color: #6c757d;
            font-style: italic;
        }
        
        .status-SUCCESS {
            color: var(--success);
            font-weight: bold;
        }
        
        .status-ERROR {
            color: var(--danger);
            font-weight: bold;
        }
        
        /* Стили для кнопок действий */
        .col-actions {
            white-space: nowrap;
            display: flex;
            gap: 5px;
            align-items: center;
        }
        
        .btn-info {
            background-color: var(--info);
            color: white;
        }
        
        .btn-info:hover {
            background-color: #138496;
        }
        
        .btn-history {
            background-color: #6c757d;
            color: white;
        }
        
        .btn-history:hover {
            background-color: #5a6268;
        }
        
        /* Стили для вердиктов */
        .verdict-changed {
            color: #fd7e14;
            font-weight: bold;
            background: #fff3cd;
            padding: 2px 6px;
            border-radius: 4px;
        }
        
        .verdict-unchanged {
            color: #6c757d;
        }
        
        .verdict-new {
            color: var(--info);
            font-weight: bold;
        }
        
        /* Стили для Markdown контента */
        .markdown-body {
            font-size: 16px;
            line-height: 1.6;
        }
        
        .markdown-body h1, .markdown-body h2, .markdown-body h3 {
            margin-top: 24px;
            margin-bottom: 16px;
            font-weight: 600;
            color: #24292e;
        }
        
        .markdown-body h1 {
            font-size: 2em;
            border-bottom: 1px solid #eaecef;
            padding-bottom: 0.3em;
        }
        
        .markdown-body h2 {
            font-size: 1.5em;
            border-bottom: 1px solid #eaecef;
            padding-bottom: 0.3em;
        }
        
        .markdown-body h3 {
            font-size: 1.25em;
        }
        
        .markdown-body p {
            margin-top: 0;
            margin-bottom: 16px;
        }
        
        .markdown-body code {
            background-color: rgba(27,31,35,0.05);
            padding: 0.2em 0.4em;
            border-radius: 3px;
            font-family: monospace;
        }
        
        .markdown-body pre {
            background-color: #f6f8fa;
            padding: 16px;
            overflow: auto;
            border-radius: 3px;
        }
        
        .markdown-body pre code {
            background-color: transparent;
            padding: 0;
        }
        
        .markdown-body ul, .markdown-body ol {
            padding-left: 2em;
        }
        
        .markdown-body blockquote {
            color: #6a737d;
            border-left: 0.25em solid #dfe2e5;
            padding: 0 1em;
            margin: 0 0 16px 0;
        }
        
        .markdown-body hr {
            height: 0.25em;
            padding: 0;
            margin: 24px 0;
            background-color: #e1e4e8;
            border: 0;
        }
        
        /* Стили для diff2html */
        .diff-source {
            display: none;
        }
        
        .diff-output {
            margin: 16px 0;
        }
        
        .error-msg {
            color: var(--danger);
            background-color: #f8d7da;
            border: 1px solid #f5c6cb;
            padding: 12px;
            border-radius: 4px;
            margin: 16px 0;
        }
        
        /* Стили для контейнера с результатами */
        .result-details {
            max-height: 500px;
            overflow-y: auto;
        }
        