/* Gallery Container */ .gallery-container { margin: 0; display: flex; flex-direction: column; gap: 0.75rem; } .gallery-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; } .gallery-counter { display: inline-flex; align-items: center; justify-content: center; min-width: 2rem; height: 2rem; padding: 0 0.5rem; background-color: var(--button-background-color); color: white; border-radius: 1rem; font-size: 0.9rem; font-weight: 600; } /* Empty State */ .gallery-empty-state { text-align: center; } .gallery-empty-state .message { font-size: 0.85rem; } /* Scroll Container */ .gallery-scroll-container { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; scrollbar-width: none; /* Firefox */ -ms-overflow-style: none; /* IE and Edge */ } .gallery-scroll-container::-webkit-scrollbar { display: none; /* Chrome, Safari, Opera */ } /* Gallery Track */ .gallery-track { display: flex; gap: 1rem; padding-bottom: 0.5rem; } /* Gallery Item */ .gallery-item { flex: 0 0 90%; max-width: 320px; scroll-snap-align: start; scroll-snap-stop: always; } .gallery-item-link { display: block; padding: 0.75rem; background-color: var( --card-background-color, var(--message-background-color) ); border: 1px solid var(--border-color); border-radius: 12px; text-decoration: none; color: var(--text-color); min-height: 100px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); } .gallery-item-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.25rem; } .gallery-item-header .favourite-icon { color: var(--star-color); font-size: 0.9rem; } .gallery-item-code { font-size: 0.8rem; color: var(--subtitle-color); font-weight: 500; } .gallery-item-name { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; line-height: 1.3; display: -webkit-box; /* Standard property for compatibility */ line-clamp: 2; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.5em; } .gallery-item-lines { display: flex; flex-wrap: wrap; gap: 0.25rem; align-items: center; } .more-lines { font-size: 0.75rem; color: var(--subtitle-color); font-weight: 500; padding: 0.125rem 0.375rem; background-color: var(--border-color); border-radius: 4px; } /* Gallery Indicators */ .gallery-dots { display: flex; justify-content: center; gap: 0.35rem; margin-top: 0.25rem; } .dot { width: 6px; height: 6px; border-radius: 50%; background-color: var(--border-color); transition: background-color 0.2s ease-in-out; } .dot.active { background-color: var(--button-background-color); } /* Tablet and larger */ @media (min-width: 768px) { .gallery-item { flex: 0 0 320px; } .gallery-scroll-container { margin: 0; padding: 0; } } /* Desktop */ @media (min-width: 1024px) { .gallery-item { flex: 0 0 340px; } }