* {
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            margin: 0;
            background: #f8fafc;
        }
        
        /* Фиксированный поиск (как в примере с постами) */
        .search-box {
            position: fixed;
            top: 0;
            left: 46px;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border-bottom: 1px solid #e2e8f0;
        }
        .search-box input {
            width: 100%;
            padding: 12px 17px;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            font-size: 14px;
            outline: none;
            margin: 0 auto;
            display: block;
        }
        .search-box input:focus {
            border-color: #4f46e5;
        }
        
        /* Контейнер таблицы */
        .table-container {
            position: fixed;
            top:0;
            left:0;
            right:0;
            bottom:0;
//            background:white;
            overflow: auto;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        /* Фиксация заголовка */
        thead th {
            position: sticky;
            top: 0;
            background: #f1f5f9;
            color: #1e293b;
            font-weight: 600;
            padding: 12px 15px;
            text-align: left;
            border-bottom: 2px solid #e2e8f0;
            z-index: 10;
        }
        
        td {
            padding: 10px 15px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        tr:hover {
            background: #f8fafc;
            cursor: pointer;
        }
        
        tr.selected {
            background-color: #fef3c7 !important;
        }
        
        .lang-code {
            font-family: monospace;
            color: #64748b;
            font-size: 12px;
        }
        
        .footer {
            text-align: center;
            padding: 20px;
            color: #94a3b8;
        }
        
        .row-indicator {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #1e293b;
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            z-index: 100;
        }

