/* AniList Weekly Schedule - styles (dark-themed like your screenshot idea) */
.anis-week-wrap {
  background:#111111;
  color:#eee;
  padding:18px;
  border-radius:10px;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

.anis-week-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:12px; }
.anis-week-header h3 { margin:0; color:#86b6ff; font-size:20px; }
.anis-week-sub { color:#cfcfd8; font-size:13px; }

.anis-week-days { display:flex; gap:8px; overflow-x:auto; padding-bottom:10px; margin-bottom:10px; }
.anis-week-day {
  background:#1f1f2a; border:none; padding:10px 14px; border-radius:12px; color:#cfcfd8; cursor:pointer; white-space:nowrap; flex:0 0 auto;
}
.anis-week-day.active { background:#86b6ff; color:#111; font-weight:700; }

.anis-week-entries { border-top:1px solid rgba(255,255,255,0.03); padding-top:12px; }
.anis-week-panel { display:none; }
.anis-week-panel.active { display:block; }

.anis-item { display:flex; gap:12px; align-items:center; padding:12px 0; border-bottom:1px solid rgba(255,255,255,0.02); }
.anis-cover img { width:72px; height:100px; object-fit:cover; border-radius:6px; display:block; }
.anis-info { flex:1; display:flex; flex-direction:column; gap:6px; }
.anis-top { display:flex; gap:12px; align-items:center; }
.anis-time { min-width:60px; font-weight:700; opacity:0.95; color:#86b6ff; }
.anis-title { font-weight:700; color:#fff; }
.anis-bottom { display:flex; justify-content:space-between; color:#cfcfd8; align-items:center; }
.anis-countdown { font-weight:700; color:#86b6ff; }

.anis-empty { color:#bdbdc7; }

@media (max-width:768px) {
  .anis-item { flex-direction:row; align-items:flex-start; }
  .anis-cover img { width:56px; height:78px; }
  .anis-time { min-width:50px; }
  .anis-week-day { padding:8px 12px; }
}
