:root {
  --navy: #122231;
  --ink: #18242d;
  --muted: #6f7f8b;
  --line: #dfe5e9;
  --bg: #f4f6f7;
  --blue: #2356d8;
  --teal: #138c89;
  --green: #1b7f5d;
  --amber: #ac6c12;
  --red: #b84040;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font:
    14px/1.5 Inter,
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}
.logo i {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: linear-gradient(135deg, #2ab4ad, #2d59d0);
  color: #fff;
  font-style: normal;
  display: grid;
  place-items: center;
}
.btn {
  border: 0;
  border-radius: 5px;
  padding: 10px 16px;
  font-weight: 600;
}
.btn.primary {
  background: var(--blue);
  color: #fff;
}
.btn.ghost {
  border: 1px solid var(--line);
  background: #fff;
  color: #4c5b67;
}
.btn.danger {
  background: #fff1f0;
  color: var(--red);
}
.pill {
  padding: 4px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}
.pending {
  background: #fff1d8;
  color: var(--amber);
}
.approved {
  background: #ddf2e9;
  color: var(--green);
}
.rejected,
.flagged {
  background: #fde6e4;
  color: var(--red);
}
.draft {
  background: #eaf0f3;
  color: #61717d;
}
.music {
  --accent: #5367c8;
}
.video {
  --accent: #b64e60;
}
.literature {
  --accent: #a87836;
}
.image {
  --accent: #188f8d;
}
.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #172632;
  color: #fff;
  padding: 12px 17px;
  border-radius: 6px;
  box-shadow: 0 8px 30px #0003;
  display: none;
  z-index: 20;
}
.toast.show {
  display: block;
}
.hidden {
  display: none !important;
}
@media (max-width: 720px) {
  .hide-mobile {
    display: none !important;
  }
}
