/* favorites.css */

.fav-stats{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.fav-stat{
  flex:0 0 auto;
  padding:10px 12px;
  border:1px solid rgba(148,163,184,.18);
  border-radius:12px;
  background: rgba(15,23,42,.35);
}
.fav-stat-n{
  font-size:20px;
  font-weight:900;
  line-height:1.1;
}
.fav-stat-l{
  font-size:12px;
  opacity:.75;
}

.fav-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.fav-section-title{
  font-weight:900;
  letter-spacing:.2px;
}
.fav-section-sub{
  font-size:12px;
  opacity:.75;
}

/* Card tile similar feel to models.php */
.fav-tile{
  display:block;
  text-decoration:none;
  color:inherit;
}
.fav-thumb{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background:#0b0f19;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.fav-thumb img{
  width:100%;
  height:auto;
  display:block;
}
.fav-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,0) 60%);
  pointer-events:none;
}
.fav-titlebar{
  position:absolute;
  left:10px;
  right:10px;
  bottom:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.fav-title{
  font-weight:900;
  text-shadow: 0 4px 16px rgba(0,0,0,.7);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  min-width:0;
}

.fav-badges{
  position:absolute;
  left:10px;
  top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.fav-badge{
  font-size:12px;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  color:#fff;
  font-weight:800;
}

/* Online badge */
.fav-live{
  position:absolute;
  top:10px;
  right:10px;
  font-size:12px;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.20);
  background:rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  color:#fff;
  font-weight:900;
}
.fav-live.on{ box-shadow:0 0 0 1px rgba(40,255,120,.25) inset; }
.fav-live.off{ opacity:.85; }

/* Remove X */
.fav-x{
  position:absolute;
  top:10px;
  left:10px;
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.55);
  color:#fff;
  font-weight:900;
  cursor:pointer;
  user-select:none;
}
.fav-x:hover{ background: rgba(255,255,255,.10); }

/* Live open button */
.fav-live-open{
  position:absolute;
  bottom:10px;
  right:10px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.55);
  color:#fff;
  font-weight:900;
  font-size:12px;
  padding:6px 10px;
  cursor:pointer;
}
.fav-live-open:hover{ background: rgba(255,255,255,.10); }

/* modal textarea already uses bootstrap form-control */
