.template-table { display: grid; grid-template-columns: 1.4fr repeat(8, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.template-table > * { background: #fff; min-height: 48px; display: flex; align-items: center; justify-content: center; padding: 9px; color: var(--accent); text-decoration: none; }
.template-table a:hover { background: var(--accent-soft); }
.template-head { font-weight: 900; background: #f3f6ff; }
.template-name { justify-content: flex-start; gap: 8px; font-weight: 800; }
.template-name img { width: 30px; height: 30px; }
@media (max-width: 900px) { .template-table { grid-template-columns: 1fr; } .template-head { display:none; } }
