body { background: #121212; color: #e0e0e0; font-family: sans-serif; display: flex; height: 100vh; margin: 0; overflow: hidden;}
.sidebar { width: 300px; background: #1e1e1e; border-right: 1px solid #333; display: flex; flex-direction: column; }
.content { flex: 1; display: flex; flex-direction: column; padding: 20px; overflow: hidden; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; overflow-y: auto; padding-bottom: 50px; }
.card { background: #252525; padding: 10px; border-radius: 8px; border: 1px solid #333; display: flex; gap: 10px; }
.card.selected { border-color: #bb86fc; background: #2a2a2a; }
.card img { width: 50px; height: 50px; object-fit: contain; background: black; }
input { background: #121212; border: 1px solid #444; color: white; padding: 5px; width: 100%; box-sizing: border-box; margin-bottom: 5px; }
button { cursor: pointer; padding: 8px; background: #333; color: white; border: none; }
button.primary { background: #bb86fc; color: black; font-weight: bold; }
.cat-item { padding: 10px; cursor: pointer; border-bottom: 1px solid #333; display: flex; justify-content: space-between; }
.cat-item:hover, .cat-item.active { background: #333; }
/* ... כל ה-CSS הקודם ... */
.tabs { display: flex; border-bottom: 1px solid #333; }
.tab { flex: 1; background: #1e1e1e; color: #aaa; border: none; padding: 15px; cursor: pointer; font-size: 14px; }
.tab.active { background: #333; color: white; border-bottom: 2px solid #bb86fc; font-weight: bold; }
.toolbar { margin-bottom: 15px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; padding-bottom: 10px; }