/* Radge's Social Schedule — Part 2/?? (assets/app.css)
   Clean, modern, spacious, colourful, light + fun.
   Buttons: rectangle w/ subtle rounding (NOT pill).
*/

:root{
  /* Brand-ish */
  --rs-ink:#2B2D42;
  --rs-bg:#F6F7FB;
  --rs-card:#FFFFFF;
  --rs-line:rgba(43,45,66,.12);
  --rs-line2:rgba(43,45,66,.08);
  --rs-muted:rgba(43,45,66,.64);
  --rs-muted2:rgba(43,45,66,.50);

  --rs-primary:#2B2D42;
  --rs-accent:#EB233C; /* highlight */
  --rs-good:#11B981;
  --rs-warn:#F59E0B;
  --rs-bad:#EF4444;

  --rs-shadow: 0 10px 30px rgba(0,0,0,.08);
  --rs-shadow2: 0 18px 50px rgba(0,0,0,.10);

  --rs-radius:14px;
  --rs-radius2:18px;
  --rs-btnRadius:10px; /* subtle */
  --rs-gap:16px;
  --rs-gap2:22px;

  --rs-font: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --rs-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  --rs-topbarH: 74px;
  --rs-sideW: 320px;

  /* platform colors */
  --p-twitch:#9146FF;
  --p-kick:#32CD32;
  --p-tiktok:#111827;
  --p-youtube:#FF0033;
  --p-twitter:#111827;
  --p-instagram:#E1306C;
  --p-discord:#5865F2;
  --p-blog:#00A3FF;

  /* subtle gradients */
  --g-hero: radial-gradient(1200px 500px at 15% -10%, rgba(145,70,255,.18), transparent 60%),
            radial-gradient(900px 450px at 80% -20%, rgba(235,35,60,.14), transparent 60%),
            radial-gradient(900px 600px at 105% 30%, rgba(17,185,129,.12), transparent 62%),
            radial-gradient(800px 520px at -10% 90%, rgba(0,163,255,.14), transparent 58%);

  --g-card: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.82));
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--rs-font);
  color:var(--rs-ink);
  background:var(--rs-bg);
  background-image:var(--g-hero);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.rs-body{overflow:hidden}
.rs-app{
  height:100%;
  width:100%;
  display:flex;
  flex-direction:column;
}

.rs-topbar{
  height:var(--rs-topbarH);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 18px;
  position:sticky;
  top:0;
  z-index:20;
  border-bottom:1px solid var(--rs-line2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(246,247,251,.72);
}

.rs-topbar-left, .rs-topbar-right{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.rs-brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:inherit;
  min-width:0;
}

.rs-logoWrap{
  width:44px; height:44px;
  border-radius:14px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  border:1px solid var(--rs-line2);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.rs-logo{
  width:100%;
  height:100%;
  object-fit:cover;
}

.rs-brandText{display:flex; flex-direction:column; line-height:1.1; min-width:0}
.rs-brandTitle{
  font-weight:800;
  letter-spacing:-.3px;
  font-size:16px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.rs-brandSub{
  font-weight:600;
  font-size:12px;
  color:var(--rs-muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.rs-divider{
  width:1px; height:38px;
  background:var(--rs-line2);
  margin:0 6px;
}

.rs-nav{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.rs-navArrows{display:flex; align-items:center; gap:8px}
.rs-monthLabel{
  font-weight:800;
  font-size:15px;
  letter-spacing:-.2px;
  color:var(--rs-ink);
  padding:8px 10px;
  border-radius:12px;
  background: rgba(255,255,255,.70);
  border:1px solid var(--rs-line2);
  box-shadow: 0 10px 22px rgba(0,0,0,.05);
  white-space:nowrap;
}

.rs-caret{opacity:.75; margin-left:6px}

.rs-main{
  height:calc(100% - var(--rs-topbarH));
  display:grid;
  grid-template-columns: var(--rs-sideW) 1fr;
  gap: var(--rs-gap2);
  padding: var(--rs-gap2);
  padding-top: 16px;
  overflow:hidden;
}

.rs-sidebar{
  background: rgba(255,255,255,.78);
  border:1px solid var(--rs-line2);
  border-radius: var(--rs-radius2);
  box-shadow: var(--rs-shadow);
  padding: 16px;
  overflow:auto;
  position:relative;
}

.rs-sideSection{padding: 10px 10px 14px}
.rs-sideSection + .rs-sideSection{border-top:1px solid var(--rs-line2)}
.rs-sideTitle{
  font-weight:800;
  font-size:12px;
  letter-spacing:.7px;
  text-transform:uppercase;
  color:rgba(43,45,66,.78);
  margin-bottom:10px;
}

.rs-platformList{display:flex; flex-direction:column; gap:8px}

.rs-pill{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 10px;
  border-radius:12px;
  border:1px solid var(--rs-line2);
  background:rgba(255,255,255,.85);
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  user-select:none;
}
.rs-pill:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,0,0,.07);
  background:rgba(255,255,255,.95);
}
.rs-pill:active{transform: translateY(0px) scale(.99)}
.rs-pillLeft{display:flex; align-items:center; gap:10px; min-width:0}
.rs-dot{
  width:12px; height:12px;
  border-radius:4px;
  background: var(--rs-accent);
  box-shadow: 0 0 0 4px rgba(235,35,60,.12);
  flex:0 0 auto;
}
.rs-pillLabel{
  font-weight:700;
  font-size:13px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.rs-pillMeta{
  font-family:var(--rs-mono);
  font-size:12px;
  color:var(--rs-muted);
  flex:0 0 auto;
}

.rs-stats{display:grid; grid-template-columns:1fr; gap:10px}
.rs-stat{
  border-radius:14px;
  border:1px solid var(--rs-line2);
  background:rgba(255,255,255,.85);
  padding:12px 12px;
  box-shadow: 0 10px 22px rgba(0,0,0,.05);
}
.rs-statLabel{
  font-size:12px;
  font-weight:700;
  color:var(--rs-muted);
}
.rs-statValue{
  margin-top:6px;
  font-size:22px;
  font-weight:900;
  letter-spacing:-.6px;
}

.rs-legend{display:flex; flex-wrap:wrap; gap:8px}
.rs-legendItem{
  display:flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid var(--rs-line2);
  background:rgba(255,255,255,.82);
  font-weight:700;
  font-size:12px;
}
.rs-legendSwatch{
  width:12px; height:12px;
  border-radius:4px;
  background:#999;
  box-shadow:0 0 0 4px rgba(0,0,0,.06);
}

.rs-sideFooter{padding-bottom:8px}
.rs-muted{color:var(--rs-muted); font-size:12px; font-weight:600}

.rs-canvas{
  background: rgba(255,255,255,.78);
  border:1px solid var(--rs-line2);
  border-radius: var(--rs-radius2);
  box-shadow: var(--rs-shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-width:0;
}

.rs-canvasHeader{
  padding: 14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  border-bottom:1px solid var(--rs-line2);
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.rs-weekdays{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap:10px;
  width:100%;
  max-width: 820px;
}
.rs-weekday{
  font-size:12px;
  font-weight:800;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:rgba(43,45,66,.72);
  padding:8px 10px;
  border-radius:12px;
  border:1px solid var(--rs-line2);
  background:rgba(255,255,255,.8);
}

.rs-miniControls{display:flex; align-items:center; gap:10px; flex:0 0 auto}

.rs-calendar{
  position:relative;
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: minmax(120px, 1fr);
  gap:12px;
  padding: 14px;
  overflow:auto;
  background: linear-gradient(180deg, rgba(246,247,251,.25), rgba(246,247,251,.65));
}

.rs-day{
  position:relative;
  border-radius: 18px;
  border:1px solid var(--rs-line2);
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 22px rgba(0,0,0,.04);
  overflow:hidden;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.rs-day:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0,0,0,.08);
  background: rgba(255,255,255,.94);
}
.rs-day:focus-within{
  outline: 3px solid rgba(235,35,60,.18);
  outline-offset: 2px;
}

.rs-dayHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 12px;
  border-bottom:1px dashed rgba(43,45,66,.12);
}
.rs-dayNum{
  font-weight:900;
  font-size:13px;
  letter-spacing:-.2px;
}
.rs-dayMeta{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--rs-muted);
  font-weight:700;
  font-size:12px;
}
.rs-badge{
  font-family:var(--rs-mono);
  font-size:11px;
  font-weight:800;
  padding: 3px 8px;
  border-radius: 10px; /* subtle, not pill */
  border:1px solid var(--rs-line2);
  background: rgba(255,255,255,.9);
}
.rs-badgeToday{
  border-color: rgba(235,35,60,.35);
  box-shadow: 0 0 0 4px rgba(235,35,60,.10);
}

.rs-dayBody{
  padding: 10px 12px 12px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.rs-emptyHint{
  color: rgba(43,45,66,.35);
  font-weight:800;
  font-size:12px;
  letter-spacing:.2px;
  padding: 10px 8px;
  border-radius: 12px;
  border:1px dashed rgba(43,45,66,.18);
  background: rgba(246,247,251,.65);
}

.rs-chipRow{display:flex; flex-wrap:wrap; gap:8px}

.rs-eventChip{
  position:relative;
  display:flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 12px;
  border:1px solid rgba(43,45,66,.12);
  background: rgba(255,255,255,.9);
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  min-width:0;
}
.rs-eventChip:hover{transform: translateY(-1px); box-shadow: 0 12px 24px rgba(0,0,0,.07)}
.rs-eventIcon{
  width:22px; height:22px;
  border-radius: 8px;
  display:flex; align-items:center; justify-content:center;
  color:#fff;
  font-size:12px;
  flex:0 0 auto;
}
.rs-eventTitle{
  font-weight:800;
  font-size:12px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.rs-eventTime{
  margin-left:auto;
  font-family:var(--rs-mono);
  font-size:11px;
  color:var(--rs-muted);
  font-weight:800;
  flex:0 0 auto;
}

.rs-fabPlus{
  position:fixed;
  z-index:50;
  width:42px; height:42px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.45);
  background: rgba(43,45,66,.92);
  color:#fff;
  box-shadow: var(--rs-shadow2);
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .15s ease, opacity .15s ease;
}
.rs-fabPlus:hover{transform: translateY(-1px)}
.rs-fabPlus:active{transform: translateY(0px) scale(.99)}

.rs-toasts{
  position:fixed;
  z-index:60;
  right: 18px;
  bottom: 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  pointer-events:none;
}
.rs-toast{
  pointer-events:auto;
  min-width: 260px;
  max-width: 360px;
  padding: 12px 12px;
  border-radius: 16px;
  border:1px solid var(--rs-line2);
  background: rgba(255,255,255,.92);
  box-shadow: var(--rs-shadow2);
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.rs-toastIcon{
  width:32px; height:32px;
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  color:#fff;
  flex:0 0 auto;
}
.rs-toastText{display:flex; flex-direction:column; gap:3px}
.rs-toastTitle{font-weight:900; font-size:13px}
.rs-toastDesc{font-weight:700; font-size:12px; color:var(--rs-muted)}
.rs-toastClose{
  margin-left:auto;
  border:0;
  background:transparent;
  color:var(--rs-muted);
  cursor:pointer;
  padding:6px;
  border-radius: 10px;
}
.rs-toastClose:hover{background:rgba(43,45,66,.06); color:var(--rs-ink)}

.rs-menu{
  position:fixed;
  z-index:70;
  min-width: 260px;
  max-width: 320px;
  border-radius: 16px;
  border:1px solid var(--rs-line2);
  background: rgba(255,255,255,.94);
  box-shadow: var(--rs-shadow2);
  padding: 8px;
  display:none;
}
.rs-menuItem{
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
  padding: 10px 10px;
  border-radius: 12px;
  border:1px solid transparent;
  background: transparent;
  cursor:pointer;
  font-weight:800;
  font-size:13px;
  color:var(--rs-ink);
}
.rs-menuItem:hover{
  background: rgba(43,45,66,.05);
  border-color: rgba(43,45,66,.06);
}
.rs-menuItem i{width:18px; text-align:center; color:rgba(43,45,66,.72)}

.rs-overlay{
  position:fixed;
  inset:0;
  background: rgba(20,22,36,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 18px;
  z-index:80;
}
.rs-modal{
  width: min(900px, 100%);
  max-height: min(85vh, 860px);
  overflow:hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.92);
  box-shadow: var(--rs-shadow2);
  display:flex;
  flex-direction:column;
}
.rs-modalTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 14px 16px;
  border-bottom:1px solid var(--rs-line2);
  background: rgba(255,255,255,.80);
}
.rs-modalTitle{
  font-weight:1000;
  letter-spacing:-.4px;
  font-size:16px;
}
.rs-modalBody{
  padding: 16px;
  overflow:auto;
}
.rs-modalBottom{
  padding: 14px 16px;
  border-top:1px solid var(--rs-line2);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  background: rgba(255,255,255,.80);
}

.rs-grid2{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.rs-grid3{display:grid; grid-template-columns: 1fr 1fr 1fr; gap:12px}
.rs-grid1{display:grid; grid-template-columns: 1fr; gap:12px}

.rs-field{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.rs-label{
  font-weight:800;
  font-size:12px;
  color:rgba(43,45,66,.78);
  display:flex;
  align-items:center;
  gap:8px;
}
.rs-label i{color:rgba(43,45,66,.62)}
.rs-input, .rs-select, .rs-textarea{
  width:100%;
  padding: 10px 11px;
  border-radius: 12px;
  border:1px solid rgba(43,45,66,.14);
  background: rgba(255,255,255,.95);
  font-family:var(--rs-font);
  font-weight:650;
  color:var(--rs-ink);
  outline:none;
  transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}
.rs-textarea{min-height:110px; resize:vertical}
.rs-input:focus, .rs-select:focus, .rs-textarea:focus{
  border-color: rgba(235,35,60,.35);
  box-shadow: 0 0 0 4px rgba(235,35,60,.10);
}
.rs-helpRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.rs-help{
  font-size:12px;
  font-weight:700;
  color:var(--rs-muted);
}
.rs-starRow{display:flex; align-items:center; gap:6px}
.rs-star{
  width:34px; height:34px;
  border-radius: 12px;
  border:1px solid rgba(43,45,66,.12);
  background: rgba(255,255,255,.88);
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition: transform .12s ease, box-shadow .12s ease;
}
.rs-star:hover{transform: translateY(-1px); box-shadow: 0 10px 22px rgba(0,0,0,.06)}
.rs-star.is-on{border-color: rgba(245,158,11,.50); box-shadow:0 0 0 4px rgba(245,158,11,.10)}
.rs-star i{color: rgba(245,158,11,.95)}

.rs-btn{
  border:1px solid rgba(43,45,66,.16);
  background: rgba(255,255,255,.88);
  color: var(--rs-ink);
  font-weight:850;
  letter-spacing:-.15px;
  padding: 10px 12px;
  border-radius: var(--rs-btnRadius);
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  user-select:none;
}
.rs-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,0,0,.07);
  background: rgba(255,255,255,.96);
}
.rs-btn:active{transform: translateY(0px) scale(.99)}
.rs-btn i{opacity:.95}

.rs-btn-primary{
  background: rgba(43,45,66,.92);
  color:#fff;
  border-color: rgba(43,45,66,.18);
}
.rs-btn-primary:hover{
  background: rgba(43,45,66,.98);
  border-color: rgba(43,45,66,.24);
}
.rs-btn-ghost{
  background: rgba(255,255,255,.72);
}
.rs-square{
  width:42px; height:42px;
  padding:0;
  justify-content:center;
}

.rs-iconBtn{
  width:42px; height:42px;
  border-radius: 14px;
  border:1px solid rgba(43,45,66,.12);
  background: rgba(255,255,255,.78);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.rs-iconBtn:hover{transform: translateY(-1px); box-shadow: 0 14px 28px rgba(0,0,0,.07); background: rgba(255,255,255,.95)}
.rs-iconBtn:active{transform: translateY(0px) scale(.99)}
.rs-iconBtn i{color:rgba(43,45,66,.82); font-size:15px}

.rs-searchWrap{
  position:relative;
  width: min(420px, 46vw);
  display:flex;
  align-items:center;
  gap:10px;
  padding: 0 8px 0 38px;
  height:42px;
  border-radius: 16px;
  border:1px solid rgba(43,45,66,.12);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 22px rgba(0,0,0,.04);
}
.rs-searchIcon{
  position:absolute;
  left: 12px;
  color: rgba(43,45,66,.55);
  font-size:14px;
}
.rs-search{
  width:100%;
  border:0;
  background:transparent;
  outline:none;
  font-weight:750;
  color:var(--rs-ink);
  padding: 10px 8px 10px 0;
}
.rs-search::placeholder{color: rgba(43,45,66,.45); font-weight:700}
#btnClearSearch{
  width:34px; height:34px;
  border-radius: 12px;
  border:1px solid rgba(43,45,66,.10);
  background: rgba(255,255,255,.68);
}
#btnClearSearch:hover{background: rgba(255,255,255,.90)}

.rs-kbd{
  font-family:var(--rs-mono);
  font-weight:900;
  font-size:11px;
  padding: 3px 8px;
  border-radius: 10px;
  border:1px solid rgba(43,45,66,.12);
  background: rgba(255,255,255,.82);
  color: rgba(43,45,66,.82);
}

.rs-dividerH{
  height:1px;
  background: var(--rs-line2);
  margin: 12px 0;
}

.rs-row{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.rs-rowBetween{display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap}

.rs-chipLink{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 12px;
  border:1px solid rgba(43,45,66,.12);
  background: rgba(255,255,255,.86);
  font-weight:900;
  cursor:pointer;
  text-decoration:none;
  color:var(--rs-ink);
}
.rs-chipLink:hover{box-shadow: 0 14px 28px rgba(0,0,0,.07); transform: translateY(-1px)}
.rs-chipLink i{color: rgba(43,45,66,.72)}

.rs-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 7px 10px;
  border-radius: 12px;
  border:1px solid rgba(43,45,66,.12);
  background: rgba(255,255,255,.86);
  font-weight:900;
  font-size:12px;
}
.rs-tag .rs-dot{width:10px; height:10px; border-radius:4px}

.rs-skeleton{
  border-radius: 16px;
  border:1px solid var(--rs-line2);
  background: linear-gradient(90deg, rgba(246,247,251,.7) 0%, rgba(255,255,255,.9) 50%, rgba(246,247,251,.7) 100%);
  background-size: 220% 100%;
  animation: rsShimmer 1.2s ease-in-out infinite;
}
@keyframes rsShimmer{
  0%{background-position: 0% 0%}
  100%{background-position: 220% 0%}
}

.rs-hidden{display:none !important}
.rs-scrollThin{scrollbar-width:thin}
.rs-scrollThin::-webkit-scrollbar{width:10px;height:10px}
.rs-scrollThin::-webkit-scrollbar-thumb{background: rgba(43,45,66,.18); border-radius: 20px; border:3px solid transparent; background-clip:content-box}
.rs-scrollThin::-webkit-scrollbar-track{background: transparent}

/* Responsive */
@media (max-width: 1100px){
  :root{--rs-sideW: 300px}
  .rs-weekdays{max-width: 700px}
}
@media (max-width: 980px){
  .rs-main{
    grid-template-columns: 1fr;
    padding: 14px;
    gap:14px;
  }
  .rs-sidebar{order:2; max-height: 38vh}
  .rs-canvas{order:1}
  .rs-weekdays{max-width: none}
}
@media (max-width: 640px){
  .rs-topbar{padding: 12px}
  .rs-brandSub{display:none}
  .rs-divider{display:none}
  .rs-monthLabel{display:none}
  .rs-searchWrap{width: 54vw; min-width: 180px}
  .rs-calendar{grid-auto-rows: minmax(110px, 1fr); padding: 12px; gap:10px}
  .rs-weekdays{gap:8px}
  .rs-weekday{padding:7px 8px}
}

/* Platform icon background helpers */
.rs-bg-twitch{background: var(--p-twitch)}
.rs-bg-kick{background: var(--p-kick)}
.rs-bg-tiktok{background: #111827}
.rs-bg-youtube{background: var(--p-youtube)}
.rs-bg-twitter{background: #111827}
.rs-bg-instagram{background: var(--p-instagram)}
.rs-bg-discord{background: var(--p-discord)}
.rs-bg-blog{background: var(--p-blog)}
