.layout-card { 
    padding: 15px; border-radius: 12px; border: 1px solid var(--border); 
    background: rgba(0,0,0,0.05); cursor: pointer; display: flex; align-items: center; gap: 10px; 
    transition: all 0.2s; 
    position: relative; z-index: 10; pointer-events: auto;
}
.layout-card.selected { border: 2px solid var(--primary); background: rgba(0,122,255,0.1); }
.layout-card:active { transform: scale(0.98); background: rgba(0,0,0,0.1); }
.layout-icon { font-size: 1.5rem; } .layout-info { display: flex; flex-direction: column; }
.layout-name { font-weight: 800; font-size: 0.9rem; } .layout-desc { font-size: 0.7rem; opacity: 0.6; }
