* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-padding: 2rem;
  width: 100%;
  max-width: 100vw;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) rgba(255, 255, 255, 0.02);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #0b0d0e;
  color: #e6e9eb;
  font-family: "JetBrains Mono", ui-monospace, "Cascadia Mono", "Segoe UI", monospace;  -webkit-font-smoothing: antialiased;
  width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

::selection {
  background: rgba(180, 180, 180, 0.3);
  color: #fff;
}

::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

.accent {
  color: #f59e0b;
}

/* Loading screen */
/* Loading screen */
.loading-main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #0a0a0a;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loading-main-container.hidden {
  opacity: 0;
  visibility: hidden;
}
.loading-infinity {
  width: 106px;
  height: 41px;
}
.loading-infinity-track {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 6;
  stroke-linecap: round;
}
.loading-infinity-dash {
  stroke: #fff;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 0.3 0.7;
  animation: loading-infinity 2.2s linear infinite;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.55));
}
@keyframes loading-infinity {
  to {
    stroke-dashoffset: -1;
  }
}

/* Navbar top*/
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  padding: 14px 0;
  background: #0b0d0e99;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.9s ease;
}

body.ready .navbar {
  opacity: 1;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.navbar-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Bpmf Huninn", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #e6e9eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.navbar-logo:hover {
  color: #fff;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #b3b3b3;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s ease;
}

.nav-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1;
}

.nav-link .fa-clapperboard {
  font-size: 0.85rem;
  transform: translateY(0.5px);
}

.nav-link .fa-lastfm {
  transform: translateY(0.5px);
}

.nav-link:hover {
  color: #fff;
}

/* Layout */
.standard-container {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
  padding-top: 50px;
  padding-left: 18px;
  padding-right: 18px;
  flex: 1;
  opacity: 0;
  transition: opacity 0.9s ease;
}

body.ready .standard-container {
  opacity: 1;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 56px 0 24px;
}

.avatar-wrap {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}

.avatar {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  background: #1a1b1c;
}

.avatar-decor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 144px;
  height: 144px;
  pointer-events: none;
  z-index: 2;
}

.presence-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #747f8d;
  margin-right: 6px;
  cursor: default;
  z-index: 3;
}

.presence-dot::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a1b1c;
  color: #e6e9eb;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 0.72rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, visibility 0.15s;
  pointer-events: none;
  z-index: 100;
}

.presence-dot:hover::after {
  opacity: 1;
  visibility: visible;
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.username {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  word-break: break-word;
}

.role {
  display: inline-flex;
  align-items: center;
  color: #8b949e;
  font-size: 0.8rem;
  font-weight: 500;
}

.status {
  color: #8b949e;
  font-size: 0.85rem;
  font-weight: 500;
}

.chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 4px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #8b949e;
  white-space: nowrap;
}

.chip-mono {
  font-family: inherit;
  font-weight: 400;
}

.chip-icon {
  width: calc(0.95em + 2px);
  height: calc(0.95em + 2px);
  color: #8b949e;
  flex-shrink: 0;
  position: relative;
  top: -0.5px;
}

.chip-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #4a5158;
  flex-shrink: 0;
}

/* Stats */
.stats {
  padding-bottom: 24px;
}

.stats-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  margin: 0 0 16px;
}

.stats-header {
  color: #8b949e;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.capture-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8b949e;
}

.capture-frame {
  display: none;
}

.capture-text {
  position: relative;
  z-index: 1;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #131517;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.social-card:hover {
  background: #1a1d1e;
}

.social-card:hover .social-icon {
  color: #fff;
}

.social-card:hover .social-nick {
  color: #fff;
}

.social-card:hover .social-handle {
  color: #b3b3b3;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #8b949e;
  flex-shrink: 0;
}

.social-icon i {
  font-size: 26px;
}

.social-icon .fa-instagram {
  font-size: 28px;
}

.social-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.social-nick {
  font-size: 0.8rem;
  font-weight: 600;
  color: #e6e9eb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-handle {
  font-size: 0.7rem;
  font-weight: 500;
  color: #8b949e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-follow {
  display: none;
}

/* AniList */
#anilist {
  font-family: "Sora", sans-serif;
}

.anilist-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.anilist-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  background: #131517;
  border-radius: 10px;
  min-width: 0;
  overflow: hidden;
}

.anilist-stat-label {
  font-size: clamp(0.52rem, 1.7vw, 0.62rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8b949e;
  white-space: nowrap;
  line-height: 1.1;
  text-align: center;
  max-width: 100%;
  order: 2;
}

.anilist-stat-value {
  font-size: clamp(0.9rem, 3.2vw, 1rem);
  font-weight: 800;
  color: #e6e9eb;
  white-space: nowrap;
  line-height: 1.1;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  order: 1;
}

@media (max-width: 480px) {
  .anilist-stats {
    gap: 6px;
  }
  .anilist-stat {
    padding: 10px 4px;
    gap: 3px;
  }
  .anilist-stat-label {
    font-size: clamp(0.46rem, 2.1vw, 0.55rem);
    letter-spacing: 0.05em;
  }
  .anilist-stat-value {
    font-size: clamp(0.8rem, 3.6vw, 0.9rem);
  }
}

@media (max-width: 360px) {
  .anilist-stat {
    padding: 8px 2px;
  }
}

/* Last.fm */
#lastfm {
  font-family: "Sora", sans-serif;
}

.lfm-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.lfm-box .media-note {
  padding: 14px;
}

/* Player */
.lfm-player {
  background-color: #131517;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}
.lfm-tracks {
  background-color: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.lfm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.lfm-player {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease;
}

.lfm-player:hover {
  background-color: #1a1d1e;
}

.lfm-player-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.lfm-player-art {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
  background: #1a1b1c;
}

.lfm-player-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.lfm-player-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b949e;
}

.lfm-player-track {
  font-size: 0.95rem;
  font-weight: 800;
  color: #e6e9eb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lfm-player-artist {
  font-size: 0.78rem;
  font-weight: 500;
  color: #8b949e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lfm-player-time {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #8b949e;
}

/* Tracks grid */
.lfm-tracks {
  display: grid;
  grid-template-columns: 1fr;
  background-color: #131517;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.lfm-tracks .media-note {
  grid-column: 1 / -1;
  background: #131517;
  border-radius: 10px;
  padding: 12px;
}

.lfm-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 10px 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.lfm-row:hover {
  background: #1a1d1e;
}

.lfm-art {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: cover;
  background: #1a1b1c;
}

.lfm-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lfm-track {
  font-size: 0.78rem;
  font-weight: 700;
  color: #e6e9eb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lfm-artist {
  font-size: 0.68rem;
  font-weight: 500;
  color: #8b949e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lfm-time {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 500;
  color: #8b949e;
}

/* Stats */
.lfm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.lfm-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  background: #131517;
  border-radius: 10px;
  min-width: 0;
  overflow: hidden;
}

.lfm-stat-label {
  font-size: clamp(0.52rem, 1.7vw, 0.62rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8b949e;
  white-space: nowrap;
  line-height: 1.1;
  text-align: center;
  max-width: 100%;
  order: 2;
}

.lfm-stat-value {
  font-size: clamp(0.9rem, 3.2vw, 1rem);
  font-weight: 800;
  color: #e6e9eb;
  white-space: nowrap;
  line-height: 1.1;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  order: 1;
}

@media (max-width: 600px) {
  .lfm-box {
    gap: 6px;
  }
  .lfm-stats {
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .lfm-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .lfm-stat {
    padding: 10px 4px;
    gap: 3px;
  }
  .lfm-stat-label {
    font-size: clamp(0.46rem, 2.1vw, 0.55rem);
    letter-spacing: 0.05em;
  }
  .lfm-stat-value {
    font-size: clamp(0.8rem, 3.6vw, 0.9rem);
  }
}

@media (max-width: 360px) {
  .lfm-stats {
    gap: 6px;
  }
  .lfm-stat {
    padding: 8px 2px;
  }
}

.media-note {
  color: #8b949e;
  font-size: 0.85rem;
  padding: 8px 0;
}

.media-more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.media-more-btn {
  border: none;
  background: #131517;
  color: #e6e9eb;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.media-more-btn:hover {
  background: #1a1d1e;
}

.media-section {
  margin-bottom: 16px;
  scroll-margin-top: 90px;
}

.media-section:last-child {
  margin-bottom: 0;
}

.media-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none;
  color: #8b949e;
}

.media-section-title .count {
  font-weight: 400;
  color: #5c636b;
}

.anilist-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.anilist-filter {
  position: relative;
  display: inline-block;
}

.custom-select.anilist-filter::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #8b949e;
  border-bottom: 1px solid #8b949e;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
  transition: transform 0.15s ease;
}

.custom-select.open.anilist-filter::after {
  transform: translateY(-30%) rotate(-135deg);
}

.anilist-select {
  appearance: none;
  -webkit-appearance: none;
  background: #131517;
  color: #e6e9eb;
  border: none;
  border-radius: 10px;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0 32px 0 12px;
  height: 36px;
  box-sizing: border-box;
  cursor: pointer;
  transition: background 0.15s ease;
}

.anilist-select:hover {
  background: #1a1d1e;
}

.anilist-select:focus {
  outline: none;
}

.custom-select-trigger.anilist-select {
  display: inline-flex;
  align-items: center;
  min-width: 130px;
  justify-content: space-between;
  gap: 12px;
  height: 36px;
  box-sizing: border-box;
}

#anilist-select[hidden] {
  display: none !important;
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 180px;
  max-width: 260px;
  max-height: 280px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #131517;
  border-radius: 10px;
  padding: 6px;
  margin: 0;
  list-style: none;
  z-index: 50;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.12) transparent;
}

.custom-select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 6px;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #8b949e;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
  white-space: nowrap;
}

.custom-select-option:hover {
  background: #1a1d1e;
  color: #e6e9eb;
}

.custom-select-option.is-selected {
  background: #1e2123;
  color: #e6e9eb;
}

.custom-select-option .count {
  font-size: 0.7rem;
  color: #5c636b;
  margin-left: 8px;
  flex-shrink: 0;
}

.custom-select-option.is-selected .count {
  color: #8b949e;
}

.anilist-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: #131517;
  color: #8b949e;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.anilist-view:hover {
  background: #1a1d1e;
  color: #e6e9eb;
}

.anilist-view svg {
  width: 16px;
  height: 16px;
}

.anilist-search {
  position: relative;
  flex: 1;
  min-width: 160px;
}

.anilist-search svg {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: #8b949e;
  pointer-events: none;
}

.anilist-search input {
  width: 100%;
  height: 36px;
  box-sizing: border-box;
  background: #131517;
  color: #e6e9eb;
  border: none;
  border-radius: 10px;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0 12px 0 32px;
  transition: background 0.15s ease;
}

.anilist-search input::placeholder {
  color: #8b949e;
}

.anilist-search input:hover {
  background: #1a1d1e;
}

.anilist-search input:focus {
  outline: none;
  background: #1a1d1e;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

@media (max-width: 600px) {
  .media-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

.media-card {
  display: block;
  position: relative;
  aspect-ratio: 3 / 4;
  background: #131517;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  animation: media-card-in 0.5s ease both;
  transition: transform 0.15s ease;
}

@keyframes media-card-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.media-card:hover {
  transform: translateY(-2px);
}

.media-cover {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 1px;
}

.media-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-cover::after {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.34) 40%, rgba(0, 0, 0, 0.1) 60%, transparent 72%);
}

.media-meta {
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -2px;
  min-height: 55px;
  padding: 30px 6px 7px;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6), transparent);
}

.media-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: calc(0.68rem * 1.3 * 3 + 1px);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.3;
  color: #f0f2f4;
  word-break: break-word;
}

.media-progress {
  margin-top: 3px;
  font-size: 0.6rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.72);
}

/* List view */
.media-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.media-list .media-card {
  display: flex;
  align-items: center;
  gap: 12px;
  aspect-ratio: auto;
  background: #131517;
  border: none;
  border-radius: 10px;
  padding: 8px 12px;
}

.media-list .media-card:hover {
  transform: translateX(2px);
}

.media-list .media-cover {
  position: static;
  width: 54px;
  height: 76px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.media-list .media-cover img {
  position: static;
  width: 100%;
  height: 100%;
}

.media-list .media-cover::after {
  display: none;
}

.media-list .media-meta {
  position: static;
  min-height: 0;
  padding: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
}

.media-list .media-title {
  -webkit-line-clamp: 2;
  line-clamp: 2;
  max-height: none;
  font-size: 0.85rem;
}

.media-list .media-progress {
  margin-top: 0;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 600;
  color: #8b949e;
}

@media (max-width: 600px) {
  .custom-select-menu {
    min-width: 150px;
    max-width: 74vw;
  }
  .custom-select-trigger.anilist-select,
  .anilist-select,
  .anilist-search input {
    height: 34px;
  }
  .anilist-view {
    width: 34px;
    height: 34px;
  }
  .custom-select-trigger.anilist-select {
    min-width: 110px;
    font-size: 0.75rem;
    padding: 0 26px 0 10px;
  }
  .anilist-search input {
    font-size: 0.75rem;
    padding: 0 10px 0 28px;
  }
}

