.template-table { display: grid; grid-template-columns: 1.4fr repeat(8, 1fr); gap: 1px; background: rgba(11,25,117,.12); border-radius: 8px; overflow: hidden; }
    .template-table > * { background: #fff; min-height: 44px; display: flex; align-items: center; justify-content: center; padding: 8px; color: var(--blue); text-decoration: none; }
    .template-head { font-weight: 800; background: #f3f6ff; }
    .template-name { justify-content: flex-start; gap: 8px; font-weight: 700; }
    .template-name img { width: 30px; height: 30px; }
    @media (max-width: 900px) { .template-table { grid-template-columns: 1fr; } .template-head { display:none; } }
