.crown-badge {
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    color: #1a1a1a;
  }

  .crown-top1 {
    background: linear-gradient(145deg, #ffd700, #ffaa00);
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
  }

  .crown-top2 {
    background: linear-gradient(145deg, #dcdcdc, #bcbcbc);
    box-shadow: 0 0 6px rgba(192, 192, 192, 0.5);
  }

  .crown-top3 {
    background: linear-gradient(145deg, #cd7f32, #b46a29);
    box-shadow: 0 0 6px rgba(205, 127, 50, 0.5);
  }

  .crown-badge i {
    font-size: 0.8rem;
  }.layout-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 30px;
}

.timeline-new {
  flex: 1 1 60%;
  border-left: 3px solid var(--accent);
  padding-left: 30px;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -19px;
  top: 16px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}

.card-new {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-info img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.user-info .name {
  font-weight: bold;
  font-size: 14px;
  color: var(--accent);
}

.vouch-badge {
  font-size: 11px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--gray);
  color: white;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vouch-green { background: var(--green); }
.vouch-red { background: var(--red); }
.vouch-neutral { background: var(--gray); }

.comment-box {
  background: var(--comment-bg);
  padding: 10px 12px;
  border-radius: 8px;
  margin-top: 8px;
  font-size: 13px;
  color: #d1d1d1;
  border: 1px solid rgba(255,255,255,0.05);
}

.bottom-line {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--pink);
  gap: 10px;
  flex-wrap: wrap;
}

.bottom-line i {
  color: var(--accent);
  margin-right: 4px;
}

.top-vouch-box {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.panel-card {
 background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.05);
}

.panel-card h3 {
  margin-top: 0;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 12px;
}

.top-voucher {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.top-voucher img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.rank-icon {
  font-size: 14px;
  margin-right: 6px;
}



@media (max-width: 900px) {
  .layout-wrapper {
    flex-direction: column;
  }
  .timeline-new, .top-vouch-box {
    flex: 1 1 100%;
  }
}
.vouch-card {
  display: flex;
  align-items: flex-start;
  background-color: #1f1f1f;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 0 8px rgba(127, 86, 217, 0.2);
  border: 1px solid #2c2c2c;
}

.vouch-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  border: 2px solid #3a3a3a;
}

.vouch-content {
  flex: 1;
}

.vouch-username {
  font-weight: bold;
  font-size: 1rem;
  color: #ff5e98;
  text-decoration: none;
}

.vouch-comment-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0;
}

.vouch-comment {
  font-size: 0.95rem;
  color: #e0e0e0;
}

.vouch-label {
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.vouch-label.positive {
  background-color: #0b8700;
  color: #fff;
}

.vouch-label.negative {
  background-color: #ff3b3b;
  color: #fff;
}

.vouch-label.neutral {
  background-color: #6c757d;
  color: #fff;
}

.vouch-thread-info {
  font-size: 0.85rem;
  margin-top: 6px;
  color: #aaa;
}


.vouch-forum a {
  color: #9a7fe0;
  text-decoration: none;
}

.vouch-card {
  display: flex;
  background-color: var(--card-bg, #1f1f1f);
  border-left: 4px solid var(--accent, #00ff88);
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
}

.vouch-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.vouch-content {
  margin-left: 12px;
  flex-grow: 1;
}

.vouch-username {
  font-weight: bold;
  color: #00ffe7;
  text-shadow: 0 0 4px #00ffe7;
  display: block;
  margin-bottom: 4px;
}

.vouch-comment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #e0e0e0;
}

.vouch-label {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}

.vouch-label.positive {
  background-color: #00c97a;
}

.vouch-label.negative {
  background-color: #ff4d4d;
}

.vouch-label.neutral {
  background-color: #666666;
}
	.vouch-entry {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    margin-bottom: 14px;
    background: var(--card-bg);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}
.vouch-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.vouch-right {
    flex: 1;
}
.vouch-username {
    font-weight: bold;
    color: var(--text-bright);
    display: block;
}
.vouch-comment {
    color: var(--text-light);
    margin-top: 6px;
}
.vouch-time {
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 4px;
}
.vouch-label {
    display: inline-block;
    font-size: 11px;
    padding: 2px 8px;
    margin-left: 8px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
}
.vouch-label.positive {
    background: #2d6a4f;
    color: white;
}
.vouch-label.neutral {
    background: #666666;
    color: white;
}
.vouch-label.negative {
    background: #a12121;
    color: white;
}
.no-vouch-message {
    text-align: center;
    padding: 16px;
    background: var(--card-bg);
    border-radius: 8px;
    color: var(--text-muted);
    font-style: italic;
}

.vouch-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding: 20px;
}
.vouch-left-col {
    flex: 3;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
}
.vouch-right-col {
    flex: 1;
    background: var(--highlight-bg);
    padding: 20px;
    border-radius: 10px;
}
.vouch-entry {
    background: var(--secondary-bg);
    padding: 10px;
    margin-bottom: 15px;
    border-left: 4px solid var(--accent);
    border-radius: 8px;
}
.vouch-avatar {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}
.vouch-username {
    color: #00ffe0;
    font-weight: bold;
}
.vouch-comment {
    color: #ffffff;
    padding-top: 5px;
}
.vouch-thread-title {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
}
.vouch-thread-link {
    color: var(--link-color);
}
.vouch-stat {
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    background: linear-gradient(to right, #1e1e1e, #333);
    color: white;
}
.thread-entry {
  background: var(--background-color-4);
  border: 1px solid var(--border-color);
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}



.thread-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text-bright);
}

.thread-info .title {
  display: flex;
  align-items: center;
  gap: 8px;
}




.thread-info .forum-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--link-color);
  text-decoration: none;
}
.panel-card {
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px var(--shadow-color);background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.panel-card h3 {
  color: var(--text-bright);
  font-size: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-voucher {
  background: var(--background-color-3);
  padding: 12px 14px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;border: 1px solid rgba(255, 255, 255, 0.06);
}

.top-voucher-left {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

/* Avatar + crown container */
.avatar-crown-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
}

.avatar-crown-wrapper img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color);
  z-index: 1;
  position: relative;
}

/* ? Tilted crown using generic selector */
.avatar-crown-wrapper i.fas.fa-crown {
  position: absolute;
  top: -12px;
  left: 20%;
  transform: translateX(-50%) rotate(-20deg);
  font-size: 16px;
  z-index: 2;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

/* Username styling */
.top-voucher-left a {
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  color: var(--text-bright);
}

/* Chat-style vouch count box */
.vouch-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #2d6a4f;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}

.vouch-count:hover {
  transform: scale(1.05);
}

.vouch-count i {
  font-size: 14px;
}


.comment-box {
  background: #2a2a2a; /* Card background */
  padding: 12px 14px;
  border-left: 4px solid #00ff44; /* Default green */
  border-radius: 6px;
  font-size: 13px;
  color: #b0b0b0; /* Light text */
  position: relative;
  padding-left: 36px;
  margin-top: 10px;
}

.comment-box i {
  position: absolute;
  top: 14px;
  left: 12px;
  color: #7f56d9; /* Accent */
  font-size: 14px;
}

/* Vouch type borders */
.comment-green   {border-left-color: #7f56d9;} /* poweruser */
.comment-red     { border-left-color: #ff3b3b; } /* admin */
.comment-neutral { border-left-color: #828282; } /* muted/gray */

/* Vouch type borders */
	
.vouch-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  background: var(--primary-bg);
  box-shadow: 0 4px 20px rgba(127, 86, 217, 0.08);
}

.vouch-header h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.vouch-header h1 span a {
  color: var(--accent);
  text-decoration: none;
}

.vouch-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.vouch-meta-item {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  gap: 0.4rem;
}

.vouch-meta-item i {
  font-size: 1rem;
  color: var(--text-muted);
}

.vouch-meta-divider {
  height: 18px;
  width: 1px;
  background-color: var(--border-color);
  margin: 0 0.3rem;
}

	
	
	
	.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  color: #fff;
  background: #333;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

.badge i {
  font-size: 14px;
}

/* Trusted (Positive) */
.badge.trusted {
  background-color: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

/* Flagged (Negative) */
.badge.flagged {
  background-color: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}

/* Unrated (Neutral) */
.badge.unrated {
  background-color: #6b7280;
  box-shadow: 0 0 8px rgba(107, 114, 128, 0.5);
}

:root {

  --accent-glow: rgba(127, 86, 217, 0.5);

  --border-color: #444;
  --success: #3ecf8e;
  --danger: #ff3b3b;
  --neutral: #cccccc;
}

/* ===== HEADER SECTION ===== */
.vouch-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  background: var(--primary-bg);
  box-shadow: 0 4px 20px rgba(127, 86, 217, 0.08);
}

.vouch-header h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.vouch-header h1 span {
  color: var(--accent);
}

.vouch-header p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 0.4rem;
}

.vouch-header img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 1rem;
  box-shadow: 0 0 12px rgba(127,86,217,0.25);
}

/* === MAIN LAYOUT === */
.timeline-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  padding: 2rem;
  margin: auto;
}

@media (max-width: 1024px) {
  .timeline-container {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
}

/* === TIMELINE === */
.timeline {
  position: relative;
  border-left: 4px solid var(--accent);
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
}

.vouch-entry {
  position: relative;
  margin-bottom: 2.5rem;
}

.vouch-entry::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 4px;
  width: 22px;
  height: 22px;
  background: var(--card-bg);
  border: 4px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--primary-bg);
  z-index: 2;
}

.badge {
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge i { font-size: 0.9rem; }

.badge.recommended     { background: var(--success); color: #000; }
.badge.not-recommended { background: var(--danger); color: #fff; }
.badge.neutral         { background: var(--neutral); color: #000; }

.content {
  background: var(--card-bg);
  padding: 1.2rem 1.4rem;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}

.content strong {
  color: var(--accent);
}

.meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  border-top: 1px solid var(--border-color);
  padding-top: 0.4rem;
}

.meta span i {
  margin-right: 5px;
  color: var(--accent);
}

/* === vouch_statS PANEL === */
.vouch_stats {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.vouch_stat-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  /* box-shadow: 0 0 12px var(--accent-glow); */
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.vouch_stat-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.vouch_stat-icon {
  font-size: 1.5rem;
  width: 42px;
  height: 42px;
  background: var(--accent-glow);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.vouch_stat-details {
  display: flex;
  flex-direction: column;
}

.vouch_stat-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.vouch_stat-value {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--text-main);
}
 .vouch-avatar-wrapper {
      position: relative;
      width: 40px;
      height: 40px;
      margin-right: 10px;
    }

    .vouch-avatar-wrapper img {
      width: 100%;
      height: 100%;
      border-radius: 999px;
      object-fit: cover;
    }

    .sub-icon {
      position: absolute;
      bottom: -2px;
      right: -2px;
      background: #1a1a1a;
      border-radius: 999px;
      padding: 2px;
    }

    .sub-icon i {
      font-size: 13px;
      color: #7f56d9;
      background: #1a1a1a;
    }
.profile-compact-panel {
  width: 100%;
  background: #1f1f1f;
  border-left: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 0 10px var(--shadow-color);
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  color: var(--text-main);
  position: relative;
}

.profile-compact-cover {
  height: 100px;
  background: var(--secondary-bg);
  background-size: cover;
  background-position: center;
  position: relative;
}

.profile-compact-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.profile-overlap-header {
  position: absolute;
  bottom: -30px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.profile-compact-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--secondary-bg);
  box-shadow: 0 0 8px var(--accent-soft);
}

.profile-compact-userblock {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.profile-compact-username {
  font-size: 1.05rem;
  font-weight: bold;
  color: var(--admin);
  display: flex;
  align-items: center;
  gap: 6px;
  word-break: break-word;
}

.crown-badge {
  background: linear-gradient(145deg, #ffd700, #ffaa00);
  color: #1a1a1a;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
}

.profile-compact-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.profile-compact-body {
  padding: 45px 15px 15px; /* top padding adjusted for avatar overlap */
}

.profile-compact-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 15px;
}

.statrow-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 10px;
}

.statrow-card {
  flex: 1 1 calc(50% - 12px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background-color: var(--highlight-bg);
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  /* box-shadow: 0 0 8px rgba(127, 86, 217, 0.2); */
  transition: 0.2s ease-in-out;
}



.statrow-icon {
  background-color: rgba(127, 86, 217, 0.15);
  color: var(--accent-soft);
  padding: 10px;
  border-radius: 10px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.statrow-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.statrow-value {
  font-size: 1.1rem;
  color: var(--text-bright);
  font-weight: bold;
  line-height: 1.2;
}

.statrow-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.vouch-block {
  margin-top: 18px;
}

.vouch-total {
  color: var(--text-bright);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  text-align: center;
}

.vouch-bar {
  display: flex;
  justify-content: space-between;
  gap: 6px;
}

.vouch-box {
  flex: 1;
  background: var(--highlight-bg);
  border-radius: 8px;
  padding: 8px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-soft);
  border-left: 4px solid;
  text-align: center;
}

.vouch-box.positive {
  border-color: #2d6a4f;
}

.vouch-box.neutral {
  border-color: #999999;
}

.vouch-box.negative {
  border-color: var(--admin);
}

.vouch-box i {
  color: var(--accent-soft);
}
     .faded-hr {
            width: 80%;
            /* align-items: center; */
            /* display: flex; */
            /* justify-content: center; */
            /* align-items: flex-start; */
            height: 2px;
            border: none;
            background: linear-gradient(to right, transparent, #22232e, #22232e, transparent);
            /* border: 4px; */
            /* bottom: 4px; */
            margin-bottom: 2px;
        }
   

  .vouch-badge-container {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding-bottom: 5px; /* Top margin */
      /* height: 100vh; */
    }

    .vouch-badge-wrapper {
      display: flex;
      background-color: #15151c;
      padding: 6px;
      border-radius: 9999px;
      position: relative;
      z-index: 1;
    }

    .vouch-badge-wrapper::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 9999px;
      background-color: rgba(163, 135, 233, 0.05);
      box-shadow: 0 0 10px 3px rgba(163, 135, 233, 0.25);
      z-index: -1;
      animation: vouch-badge-ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
    }

    @keyframes vouch-badge-ping {
      0% {
        transform: scale(1);
        opacity: 1;
      }
      75% {
        transform: scale(1.2);
        opacity: 0;
      }
      100% {
        transform: scale(1.2);
        opacity: 0;
      }
    }

    .vouch-badge-left,
    .vouch-badge-right {
      display: flex;
      align-items: center;
      padding: 4px 12px;
      border-radius: 9999px;
      font-size: 13px;
    }
.usern {
    margin-left: 4px;
}
    .vouch-badge-left {
      background-color: #0f0f14;
      color: #b0b0c3;
    }

    .vouch-badge-left .icon {
      color: #a387e9;
      margin: 0 4px;
      font-size: 14px;
    }

    .vouch-badge-left .username {
      color: #a387e9;
      font-weight: 600;
      margin: 0 3px;
    }

    .vouch-badge-right {
      background-color: #1c1c26;
      color: #ffffff;
      font-weight: 500;
      margin-left: 6px;
    }

    .vouch-badge-right .bi {
      font-size: 13px;
      margin-right: 6px;
    }

    .vouch-badge-count {
      background-color: #2d2d3a;
      color: #a387e9;
      font-size: 12px;
      font-weight: 600;
      padding: 2px 6px;
      border-radius: 9999px;
      margin-left: 6px;
    }
		
		