/* ======================================== GALLERY STATISTICS ======================================== */ .gallery-stats { position: fixed; bottom: 20px; left: 20px; background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 8px; padding: 0.8rem 1rem; font-size: 0.85rem; color: var(--breadcrumb-color); box-shadow: 0 2px 8px rgba(0,0,0,0.1); z-index: 500; opacity: 0.8; transition: opacity 0.2s ease; max-width: 200px; } .gallery-stats:hover { opacity: 1; } .stats-item { display: flex; justify-content: space-between; align-items: center; margin: 0.2rem 0; white-space: nowrap; } .stats-label { margin-right: 0.8rem; } .stats-value { font-weight: 600; color: var(--text-color); }