/* planning-logs.css — Calendar, approved list, logs, run history, janitor, planner modal, shimmer */

/* ── PLANNING — Galactic Calendar ───────────────────────────────── */
.cal-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 20px;
}
.cal-month-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700; letter-spacing: -0.04em;
  color: var(--text); text-transform: uppercase; font-style: italic;
  line-height: 1;
}
.cal-month-title span { color: var(--primary); }

/* 7-column grid */
.cal-week-headers {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px; margin-bottom: 4px;
}
.cal-week-headers div {
  text-align: center; font-size: 10px; font-weight: 700;
  color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 0;
}
.cal-week-headers div.slot-header { color: var(--primary); }

.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}

/* Base cell */
.cal-cell {
  position: relative; border-radius: 8px; overflow: hidden;
  aspect-ratio: 1;
  background: #0c0e17;
  border: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.cal-cell.pad { visibility: hidden; pointer-events: none; }

/* Empty day */
.cal-cell .cal-day-num {
  position: absolute; top: 6px; left: 8px;
  font-family: var(--font-head); font-size: clamp(10px, 1.5vw, 14px);
  font-weight: 600; color: #3a3c48;
  line-height: 1;
}

/* Today emphasis */
.cal-cell.today {
  border-color: rgba(0, 228, 117, 0.5);
  box-shadow: inset 0 0 12px rgba(0, 228, 117, 0.04);
}
.cal-cell.today .cal-day-num { color: var(--primary); }

/* Slot dot (Wed=3 / Sun=0) */
.cal-slot-dot {
  position: absolute; top: 6px; right: 6px;
  width: 6px; height: 6px; border-radius: 50%;
  background: #00e475;
  box-shadow: 0 0 6px rgba(0,228,117,0.6);
}

/* Cell with scheduled media */
.cal-cell.has-media {
  border-color: rgba(0, 228, 117, 0.3);
  box-shadow: 0 0 20px rgba(0, 228, 117, 0.25);
}
.cal-cell.has-media .cal-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.75);
  transition: filter 0.4s;
}
.cal-cell.has-media:hover .cal-bg { filter: brightness(0.9); }
.cal-cell.has-media .cal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,14,23,0.85) 0%, transparent 55%);
}
.cal-cell.has-media .cal-day-num { color: rgba(255,255,255,0.7); }
.cal-cell.has-media .cal-title {
  position: absolute; bottom: 6px; left: 6px; right: 6px;
  font-family: var(--font-head); font-size: clamp(8px, 1vw, 11px);
  font-weight: 600; color: #fff; line-height: 1.2;
  overflow: hidden; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}

@media (max-width: 640px) {
  .cal-cell .cal-day-num { font-size: 9px; top: 3px; left: 4px; }
  .cal-slot-dot { width: 4px; height: 4px; top: 3px; right: 3px; }
  .cal-cell.has-media .cal-title { display: none; }
}

/* Approved cells in calendar */
@keyframes cal-approved-pulse {
  0%,100% { box-shadow: 0 0 12px rgba(129,207,255,0.3); border-color: rgba(129,207,255,0.45); }
  50%      { box-shadow: 0 0 22px rgba(129,207,255,0.55); border-color: rgba(129,207,255,0.7); }
}
.cal-cell.has-approved {
  cursor: pointer;
  animation: cal-approved-pulse 2.8s ease-in-out infinite;
}
.cal-cell.has-approved:hover .cal-bg { filter: brightness(1.05); }
.cal-cell.has-approved .cal-approved-badge {
  position: absolute; top: 6px; right: 6px;
  font-size: 8px; font-family: var(--font-head); font-weight: 700;
  letter-spacing: 0.08em; color: #81cfff;
  background: rgba(12,14,23,0.75); padding: 2px 5px; border-radius: 3px;
  border: 1px solid rgba(129,207,255,0.4);
}

.cal-cell.has-published {
  cursor: default;
  border-color: rgba(143,145,148,0.2);
}
.cal-cell.has-published { cursor: pointer; }
.cal-cell.has-published .cal-bg { filter: brightness(0.75); }
.cal-cell.has-published:hover .cal-bg { filter: brightness(0.88); }
.cal-cell.has-published .cal-published-badge {
  position: absolute; top: 6px; right: 6px;
  font-size: 8px; font-family: var(--font-head); font-weight: 700;
  letter-spacing: 0.08em; color: var(--primary);
  background: rgba(12,14,23,0.8); padding: 2px 5px; border-radius: 3px;
  border: 1px solid rgba(0,228,117,0.3);
}
/* Instagram link icon on published cells — subtil, intégré à l'image */
.cal-ig-icon {
  position: absolute; bottom: 3px; right: 3px;
  width: 18px; height: 18px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #fff; z-index: 10;
  opacity: 0.25;
  transition: opacity 0.2s, transform 0.15s;
  pointer-events: auto;
  text-decoration: none;
}
.cal-cell:hover .cal-ig-icon { opacity: 0.9; transform: scale(1.1); }
/* Instagram link button (for modals) */
.btn-instagram-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 6px;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #fff; font-size: 11px; font-weight: 700; font-family: var(--font-head);
  text-decoration: none; border: none; cursor: pointer;
  transition: filter 0.15s, box-shadow 0.15s;
}
.btn-instagram-link:hover {
  filter: brightness(1.1);
  box-shadow: 0 2px 12px rgba(131,58,180,0.4);
}
.cal-nav-btn {
  background: transparent; border: 1px solid var(--border); border-radius: 6px;
  color: var(--muted); padding: 5px 12px; font-size: 16px; cursor: pointer;
  transition: border-color .2s, color .2s;
}
.cal-nav-btn:hover { border-color: var(--primary); color: var(--primary); }


/* ── APPROUVÉ — Split layout 60/40 ──────────────────────────────── */
.apv-layout {
  display: flex; flex-direction: column; gap: 16px;
}
@media (min-width: 768px) {
  .apv-layout { flex-direction: row; align-items: flex-start; gap: 20px; }
  .apv-list-col { flex: 6; min-width: 0; }
  .apv-stats-col { flex: 4; position: sticky; top: 72px; }
}

/* Scrollable list */
.apv-list-scroll {
  max-height: 70vh; overflow-y: auto;
  display: flex; flex-direction: column; gap: 8px;
}
.apv-list-scroll::-webkit-scrollbar { width: 4px; }
.apv-list-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* Compact list item */
.apv-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 8px;
  background: #0c0e17; border: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.apv-item:hover { border-color: rgba(68,71,74,0.6); background: var(--surface-low); }
.apv-item-thumb {
  flex-shrink: 0; width: 50px; height: 50px;
  border-radius: 6px; object-fit: cover;
  background: var(--surface-hi);
}
.apv-item-thumb-placeholder {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 6px;
  background: var(--surface-hi); display: flex; align-items: center;
  justify-content: center;
}
.apv-item-thumb-placeholder .material-symbols-outlined { font-size: 20px; color: var(--muted); }
.apv-item-body { flex: 1; min-width: 0; }
.apv-item-title {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  color: var(--text); white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; margin-bottom: 4px;
}
.apv-item-meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.apv-pub-badge {
  padding: 2px 8px; border-radius: 4px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(0,228,117,0.1); border: 1px solid rgba(0,228,117,0.2);
  color: var(--primary);
}
.apv-date {
  font-size: 11px; color: var(--muted);
}
.apv-item-actions {
  display: flex; gap: 6px; flex-shrink: 0;
}
.apv-btn {
  height: 28px; padding: 0 10px; border-radius: 6px; border: 1px solid;
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; cursor: pointer; white-space: nowrap;
  transition: opacity var(--transition); display: inline-flex;
  align-items: center;
}
.apv-btn:hover { opacity: 0.8; }
.apv-btn.view  {
  border-color: rgba(0,228,117,0.3); background: var(--primary-dim); color: var(--primary);
}
.apv-btn.unapprove {
  border-color: rgba(215,59,0,0.3); background: var(--danger-dim); color: #ffb5a0;
}
.apv-btn.publish {
  border-color: var(--primary); background: var(--primary); color: #003918;
  font-weight: 700;
}
.apv-item-caption {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}
.apv-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
/* pills identiques au style .ac-hashtags span existant */
.apv-item-tags span {
  padding: 3px 10px; border-radius: 20px;
  background: var(--surface); border: 1px solid rgba(0,228,117,0.1);
  font-size: 11px; color: var(--primary); cursor: default;
}

/* Stats grid (right panel) */
.apv-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-bottom: 16px;
}
.apv-stat-tile {
  background: var(--surface-low); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px;
}
.apv-stat-val {
  font-family: var(--font-head); font-size: 24px; font-weight: 700;
  color: var(--primary); line-height: 1;
}
.apv-stat-lbl {
  font-size: 10px; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.1em; margin-top: 5px;
}

/* Reprogram button */
.apv-reprogram-btn {
  width: 100%; padding: 12px 0; border-radius: 8px; border: none;
  background: linear-gradient(135deg, #00e475 0%, #009248 100%);
  color: #003918; font-family: var(--font-head); font-size: 12px;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: filter var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.apv-reprogram-btn:hover { filter: brightness(1.1); }

/* Confirmation modal */
#apv-modal {
  display: none; position: fixed; inset: 0; z-index: 800;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
}
.apv-modal-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 24px; max-width: 360px; width: 90%;
  text-align: center;
}
.apv-modal-box h3 {
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
}
.apv-modal-box p {
  font-size: 13px; color: var(--muted); margin-bottom: 24px;
  line-height: 1.5;
}
.apv-modal-actions { display: flex; gap: 10px; justify-content: center; }
.apv-modal-cancel {
  padding: 9px 20px; border-radius: 7px;
  border: 1px solid var(--border); background: transparent;
  color: var(--text); font-family: var(--font-head); font-size: 12px;
  font-weight: 700; cursor: pointer; transition: background var(--transition);
}
.apv-modal-cancel:hover { background: var(--surface-hi); }
.apv-modal-confirm {
  padding: 9px 20px; border-radius: 7px; border: none;
  background: var(--primary); color: #003918;
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  cursor: pointer; transition: filter var(--transition);
}
.apv-modal-confirm:hover { filter: brightness(1.1); }


/* ── LOGS — Services Health + Terminal ───────────────────────────── */
.log-top-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; flex-wrap: wrap; gap: 10px;
}
.log-freshness {
  font-size: 11px; color: var(--muted); font-family: var(--font-mono);
}

/* Service badges */
.log-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px; margin-bottom: 24px;
}
.log-svc-card {
  background: var(--surface-hi);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.log-svc-card.svc-online {
  border-color: rgba(0,228,117,0.35);
  box-shadow: 0 0 18px rgba(0,228,117,0.12);
}
.log-svc-card.svc-offline {
  border-color: rgba(255,82,82,0.35);
  box-shadow: 0 0 18px rgba(255,82,82,0.1);
}
.log-svc-header {
  display: flex; align-items: center; gap: 10px;
}
.log-svc-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.svc-online .log-svc-dot { background: #00e475; box-shadow: 0 0 8px rgba(0,228,117,0.7); }
.svc-offline .log-svc-dot { background: #ff5252; box-shadow: 0 0 8px rgba(255,82,82,0.6); }
.log-svc-name {
  font-family: var(--font-head); font-size: 13px;
  font-weight: 700; color: var(--text); letter-spacing: 0.02em;
  text-transform: uppercase;
}
.log-svc-meta {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  display: flex; flex-direction: column; gap: 3px;
}
.log-svc-status-pill {
  display: inline-flex; align-items: center;
  padding: 2px 8px; border-radius: 4px; font-size: 10px;
  font-family: var(--font-mono); font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; margin-top: 4px; align-self: flex-start;
}
.svc-online .log-svc-status-pill { background: rgba(0,228,117,0.15); color: #00e475; }
.svc-offline .log-svc-status-pill { background: rgba(255,82,82,0.15); color: #ff5252; }

/* Terminal log stream */
.log-terminal-header {
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.log-terminal-label {
  font-family: var(--font-head); font-size: 11px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted);
}
.log-terminal-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #00e475; box-shadow: 0 0 6px rgba(0,228,117,0.7);
  animation: pulse 2s ease-in-out infinite;
}
.log-stream {
  background: #060710;
  border: 1px solid #1a1c28;
  border-radius: 10px;
  padding: 12px;
  max-height: 420px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 2px;
  font-family: var(--font-mono);
}
.log-stream::-webkit-scrollbar { width: 4px; }
.log-stream::-webkit-scrollbar-track { background: transparent; }
.log-stream::-webkit-scrollbar-thumb { background: #2a2c38; border-radius: 2px; }
.log-line {
  display: grid;
  grid-template-columns: 130px 1fr 90px auto;
  gap: 8px; align-items: center;
  padding: 5px 8px; border-radius: 4px;
  font-size: 11px; line-height: 1.4;
  border-bottom: 1px solid #0f1118;
  transition: background 0.15s;
}
.log-line:hover { background: #0d0f1c; }
.log-line.ll-clos   { }
.log-line.ll-running { background: rgba(129,207,255,0.04); }
.log-line.ll-fail   { background: rgba(255,82,82,0.04); }
.log-ts  { color: #3a4060; font-size: 10px; white-space: nowrap; }
.log-id  { color: var(--text); font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.log-status-badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1px 6px; border-radius: 3px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; white-space: nowrap;
}
.lsb-clos    { background: rgba(0,228,117,0.15); color: #00e475; }
.lsb-running { background: rgba(129,207,255,0.15); color: #81cfff; }
.lsb-fail    { background: rgba(255,82,82,0.15); color: #ff5252; }
.lsb-unknown { background: rgba(255,255,255,0.08); color: var(--muted); }
.log-dur { color: var(--muted); font-size: 10px; text-align: right; }

@media (max-width: 600px) {
  .log-line { grid-template-columns: 90px 1fr 70px; }
  .log-dur { display: none; }
}

/* ── Run History Cards ─────────────────────────────────────────────── */
.run-hist-card {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: monospace;
  font-size: 11px;
}
.run-hist-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  cursor: pointer;
  flex-wrap: wrap;
}
.run-hist-header:hover { background: rgba(255,255,255,0.03); }
.run-hist-source { font-family: var(--font-head); font-size: 11px; font-weight: 700; color: var(--primary); min-width: 80px; }
.run-hist-ts     { color: var(--muted); font-size: 10px; }
.run-hist-rid    { color: rgba(255,255,255,0.3); font-size: 10px; }
.run-hist-count  { color: #81cfff; font-size: 10px; margin-left: auto; }
.run-hist-status { font-size: 10px; font-family: var(--font-head); }
.run-hist-toggle { font-size: 10px; color: var(--muted); white-space: nowrap; }
.run-hist-detail {
  padding: 8px 14px 12px 28px;
  background: rgba(0,0,0,0.3);
  color: #6a7f96;
  font-size: 10.5px;
  line-height: 1.65;
  max-height: 240px;
  overflow-y: auto;
}

/* ── JANITOR — Maintenance cards ─────────────────────────────────── */
.jan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .jan-grid { grid-template-columns: 1fr 1fr; }
}

.jan-card {
  background: var(--surface-hi);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.jan-card:hover { border-color: rgba(0,228,117,0.2); }

.jan-card-header {
  display: flex; align-items: flex-start; gap: 14px;
}
.jan-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(0,228,117,0.08);
  border: 1px solid rgba(0,228,117,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.jan-icon-wrap .material-symbols-outlined {
  font-size: 22px; color: var(--primary);
}
.jan-meta { flex: 1; min-width: 0; }
.jan-title {
  font-family: var(--font-head); font-size: 14px;
  font-weight: 700; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.04em;
  margin: 0 0 4px;
}
.jan-desc {
  font-size: 12px; color: var(--muted); line-height: 1.5;
}
.jan-impact {
  font-size: 10px; color: rgba(255,183,77,0.8);
  font-family: var(--font-mono); margin-top: 4px;
}

.jan-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; flex-wrap: wrap;
}
.jan-launch-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 8px; border: none; cursor: pointer;
  background: var(--primary); color: #000;
  font-family: var(--font-head); font-size: 11px;
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  transition: filter var(--transition), opacity var(--transition);
}
.jan-launch-btn:hover { filter: brightness(1.1); }
.jan-launch-btn:disabled { opacity: 0.4; cursor: not-allowed; filter: none; }
.jan-launch-btn .material-symbols-outlined { font-size: 15px; }
.jan-running-label {
  font-family: var(--font-mono); font-size: 10px;
  color: #81cfff; display: none; align-items: center; gap: 4px;
}
.jan-running-label.visible { display: flex; }

/* SSE terminal per-card */
.jan-terminal {
  display: none;
  background: #060710;
  border: 1px solid #1a1c28;
  border-radius: 8px;
  padding: 10px;
  max-height: 180px; overflow-y: auto;
  font-family: var(--font-mono); font-size: 10px;
  color: #8899aa;
  flex-direction: column; gap: 1px;
}
.jan-terminal.open { display: flex; }
.jan-terminal::-webkit-scrollbar { width: 3px; }
.jan-terminal::-webkit-scrollbar-thumb { background: #2a2c38; border-radius: 2px; }
.jt-line { padding: 2px 0; line-height: 1.5; white-space: pre-wrap; word-break: break-all; }
.jt-line.jt-error   { color: #ff5252; }
.jt-line.jt-success { color: #00e475; }
.jt-line.jt-fin     { color: #81cfff; border-top: 1px solid #1a1c28; margin-top: 4px; padding-top: 4px; }

/* Confirm modal */
#jan-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 900;
  background: rgba(4,5,14,0.85); backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
}
#jan-modal-overlay.open { display: flex; }
#jan-modal-box {
  background: var(--surface-hi);
  border: 1px solid rgba(0,228,117,0.25);
  border-radius: 16px; padding: 28px 28px 22px;
  width: min(380px, 90vw); display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 0 40px rgba(0,228,117,0.12);
}
#jan-modal-title {
  font-family: var(--font-head); font-size: 15px;
  font-weight: 800; color: var(--text); text-transform: uppercase;
  letter-spacing: 0.04em; margin: 0;
}
#jan-modal-body {
  font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0;
}
.jan-modal-actions {
  display: flex; gap: 10px; justify-content: flex-end;
}
.jan-modal-cancel {
  padding: 8px 16px; border-radius: 8px; border: 1px solid var(--border);
  background: transparent; color: var(--muted); cursor: pointer;
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.jan-modal-confirm {
  padding: 8px 18px; border-radius: 8px; border: none; cursor: pointer;
  background: #ff5252; color: #fff;
  font-family: var(--font-head); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.jan-modal-confirm:hover { filter: brightness(1.1); }

.plan-day-chk {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 10px; border-radius: 6px; border: 1px solid var(--border);
  font-size: 12px; color: var(--text); cursor: pointer;
  user-select: none; transition: border-color 0.15s;
}
.plan-day-chk:has(input:checked) { border-color: var(--primary); color: var(--primary); }
.plan-day-chk input { accent-color: var(--primary); }

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.skeleton-shimmer {
  background: linear-gradient(90deg, #1d1f29 25%, #282933 50%, #1d1f29 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
