
/* Glizzy Lovers Frontend Styles */
#glizzy-module { position: relative; margin: 20px 0; padding: 18px; border:1px solid #eee; background:#fff; border-radius:8px; max-width:1000px; }
.glizzy-header { display:flex; justify-content:space-between; align-items:center; }
.glizzy-title { margin:0; }
.glizzy-refresh { background:none; border:none; cursor:pointer; font-size:18px; }
.glizzy-spinner { width:30px; height:30px; border:4px solid #f3f3f3; border-top:4px solid #555; border-radius:50%; animation:spin 1s linear infinite; margin:auto; }
@keyframes spin { from {transform:rotate(0);} to {transform:rotate(360deg);} }
.glizzy-list { list-style:none; padding:0; margin:16px 0 40px; display:flex; flex-wrap:wrap; gap:20px; justify-content:center; }
.glizzy-item { width:140px; text-align:center; display:flex; flex-direction:column; align-items:center; }
.glizzy-avatar { width:110px; height:110px; object-fit:cover; border-radius:50%; border:2px solid #ddd; }
.glizzy-name { margin-top:8px; font-weight:600; color:#333; }
.glizzy-count { position:absolute; right:12px; bottom:12px; font-size:13px; color:#666; }
