/* ============================================================================
   BLDV UI 2.0 – Global Dark Esports Theme
   ========================================================================== */

/* 1. Body / Grundlayout */
body {
  background: radial-gradient(circle at top left, #1f2937 0, #020617 45%, #000 100%);
  color: #e5e7eb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Scrollbar minimal hübscher (nur Desktop) */
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background: #020617;
}
body::-webkit-scrollbar-thumb {
  background: #4b5563;
  border-radius: 999px;
}

/* 2. Container / Abstände */
.container,
.container-fluid {
  padding-top: 1.25rem;
  padding-bottom: 2rem;
}

/* 3. Cards – zentrales Element */
.card {
  background: radial-gradient(circle at top, #111827 0, #020617 60%);
  border: 1px solid rgba(148, 163, 184, 0.35); /* slate-400 */
  border-radius: 0.9rem;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.card-header {
  background: linear-gradient(to right, rgba(248, 113, 113, 0.08), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #9ca3af;
}

.card-footer {
  background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.7));
  border-top: 1px solid rgba(31, 41, 55, 0.8);
}

/* Hover-Effekt für klickbare Cards (z.B. Turnierkarten) */
.card-hover,
.card.tournament-card {
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s;
}
.card-hover:hover,
.card.tournament-card:hover {
  transform: translateY(-3px);
  border-color: rgba(248, 113, 113, 0.9); /* rose-400 */
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(248, 113, 113, 0.45);
}

/* 4. Typography */
h1, h2, h3, h4, h5 {
  color: #f9fafb;
  letter-spacing: 0.01em;
}

.text-muted {
  color: #9ca3af !important;
}

/* ==========================================================================
   Seasons (Public + Admin)
   Ziel: weniger "Formular"-Look, mehr Dashboard.
   ======================================================================= */

.bldv-seasons .list-group-item {
  border-color: rgba(148, 163, 184, 0.22) !important;
}

.bldv-seasons .table {
  border-color: rgba(148, 163, 184, 0.22) !important;
}

.bldv-seasons .table > :not(caption) > * > * {
  border-bottom-color: rgba(148, 163, 184, 0.18) !important;
}

.bldv-seasons .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Kleine Status-Chips (statt Badge-Konfetti) */
.bldv-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  font-size: .72rem;
  line-height: 1;
  letter-spacing: .03em;
  text-transform: uppercase;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.65);
  color: #cbd5e1;
}

.bldv-chip.chip-success {
  border-color: rgba(34, 197, 94, 0.55);
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
}

.bldv-chip.chip-info {
  border-color: rgba(56, 189, 248, 0.55);
  background: rgba(56, 189, 248, 0.12);
  color: #bae6fd;
}

.bldv-chip.chip-warn {
  border-color: rgba(245, 158, 11, 0.55);
  background: rgba(245, 158, 11, 0.12);
  color: #fde68a;
}

.bldv-chip.chip-muted {
  border-color: rgba(148, 163, 184, 0.30);
  background: rgba(148, 163, 184, 0.08);
  color: #cbd5e1;
}

/* Admin: Tabellen etwas "leichter" */
.bldv-seasons-admin .table thead th {
  color: #cbd5e1;
  font-weight: 600;
  letter-spacing: .02em;
}

.bldv-seasons-admin .alert {
  border-radius: 0.9rem;
  border-color: rgba(148, 163, 184, 0.22);
}

/* ==========================================================================
   Player of the Tournament – FUT-style Card
   ======================================================================= */

.pot-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(15, 23, 42, 0.85);
  background:
    radial-gradient(1200px 500px at 20% 10%, rgba(56, 189, 248, 0.14), transparent 55%),
    radial-gradient(900px 520px at 85% 20%, rgba(167, 139, 250, 0.14), transparent 60%),
    linear-gradient(135deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.92));

  will-change: transform;
  transform: translateZ(0);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}


/* Gold treatment for majors */
.pot-card.pot-card--major {
  border-color: rgba(245, 158, 11, 0.9);
  box-shadow:
    0 24px 90px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(245, 158, 11, 0.30);
}

.pot-card::before {
  content: "";
  position: absolute;
  inset: -40% -35% auto -35%;
  height: 180%;
  transform: rotate(14deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.05),
    transparent
  );
  pointer-events: none;
  opacity: 0.9;
}

.pot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.00) 35%,
    rgba(255, 255, 255, 0.18) 48%,
    rgba(255, 255, 255, 0.06) 56%,
    transparent 70%,
    transparent 100%
  );
  transform: translateX(-120%) skewX(-20deg);
  opacity: 0.35;
  pointer-events: none;
  animation: potShine 3.8s linear infinite;
}

.pot-card__inner {
  position: relative;
  z-index: 1;
  padding: 1.25rem;

  will-change: transform;
  transform: translateZ(0);
  transition: transform .25s ease, filter .25s ease;
  animation: potFloat 7s ease-in-out infinite;
}


.pot-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pot-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.30);
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
}

.pot-card--major .pot-card__label {
  border-color: rgba(245, 158, 11, 0.55);
  color: rgba(253, 230, 138, 0.95);
}

.pot-card__score {
  text-align: right;
  line-height: 1.1;
}

.pot-card__score .pot-card__scoreValue {
  font-weight: 800;
  font-size: 1.35rem;
  color: #f9fafb;
}

.pot-card__score .pot-card__scoreLabel {
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.95);
}

/* Hero area (Avatar + Name centered) */
.pot-card__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pot-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.75rem;
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.25);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.18), transparent 55%),
    linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(236, 72, 153, 0.15));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  margin-bottom: 0.75rem;
}

.pot-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pot-card--major .pot-card__avatar {
  border-color: rgba(245, 158, 11, 0.35);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.20), transparent 55%),
    linear-gradient(135deg, rgba(245, 158, 11, 0.26), rgba(250, 204, 21, 0.12));
}

.pot-card__name {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
  color: #f9fafb;
}

.pot-card__sub {
  margin: 0.15rem 0 0;
  color: rgba(148, 163, 184, 0.95);
  font-size: 0.85rem;
}

/* Split stats: 3 left, 3 right */
.pot-card__statsSplit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.pot-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pot-stat {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 0.85rem;
  padding: 0.65rem 0.7rem;
  background: rgba(2, 6, 23, 0.35);
  backdrop-filter: blur(6px);
}

.pot-stat__k {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.95);
}

.pot-stat__v {
  font-size: 1.0rem;
  font-weight: 800;
  color: #f9fafb;
}

.pot-card__footer {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: rgba(148, 163, 184, 0.95);
  font-size: 0.85rem;
}

.pot-card__link {
  color: rgba(226, 232, 240, 0.95);
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .pot-card:hover .pot-card__inner {
    animation-play-state: paused;
    transform: translateY(-6px) rotateX(2deg) rotateY(-2deg);
    filter: saturate(1.05);
  }
  .pot-card:hover::after {
    opacity: 0.6;
    animation-duration: 2.4s;
  }
}

.pot-card--major {
  animation: potPulseShadow 2.6s ease-in-out infinite;
}
.pot-card--major .pot-card__inner {
  animation-duration: 6.5s;
}

@keyframes potShine {
  0%   { transform: translateX(-120%) skewX(-20deg); }
  55%  { transform: translateX(120%) skewX(-20deg); }
  100% { transform: translateX(120%) skewX(-20deg); }
}

@keyframes potFloat {
  0%, 100% { transform: translateY(0) translateZ(0); }
  50%      { transform: translateY(-4px) translateZ(0); }
}

@keyframes potPulseShadow {
  0%, 100% {
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(245, 158, 11, 0.45);
  }
  50% {
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(245, 158, 11, 0.65), 0 0 22px rgba(245, 158, 11, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pot-card, .pot-card::after, .pot-card--major {
    animation: none !important;
    transition: none !important;
  }
}


.pot-card__link:hover {
  text-decoration: underline;
}

@media (max-width: 575.98px) {
  .pot-card__statsSplit {
    grid-template-columns: 1fr;
  }
}

/* 5. Buttons */
.btn {
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316, #f97316, #ef4444);
  border: none;
  color: #0b1120;
  box-shadow: 0 10px 25px rgba(248, 113, 113, 0.45);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #fb923c, #f97316);
  box-shadow: 0 16px 35px rgba(248, 113, 113, 0.6);
}

.btn-outline-light {
  border-color: rgba(156, 163, 175, 0.7);
  color: #e5e7eb;
}
.btn-outline-light:hover {
  background: rgba(148, 163, 184, 0.15);
  border-color: #e5e7eb;
}

/* Kleine Utility-Buttons (z.B. in Tabellen) */
.btn-sm {
  font-size: 0.75rem;
  padding: 0.22rem 0.7rem;
}

/* 6. Badges (inkl. LIVE, Status, Boost, etc.) */
.badge {
  border-radius: 999px;
  padding: 0.18rem 0.6rem;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge.bg-danger {
  background: linear-gradient(135deg, #fb7185, #ef4444) !important;
  box-shadow: 0 0 18px rgba(239, 68, 68, 0.8);
}

.badge.bg-warning {
  background: linear-gradient(135deg, #facc15, #f97316) !important;
  color: #111827 !important;
}

/* Dein "Boosted"-Badge etwas auffälliger */
.badge-boosted,
.badge.boosted {
  background: linear-gradient(135deg, #facc15, #f97316) !important;
  color: #111827 !important;
  box-shadow: 0 0 16px rgba(250, 204, 21, 0.7);
}

/* 7. Nav / Tabs */
.nav-pills .nav-link {
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  color: #9ca3af;
}
.nav-pills .nav-link.active {
  background: linear-gradient(135deg, #f97316, #ef4444);
  color: #0b1120;
  box-shadow: 0 12px 24px rgba(248, 113, 113, 0.55);
}

/* 8. Tabellen – für Admin & Stats */
.table {
  color: #e5e7eb;
  font-size: 0.86rem;
}
.table thead th {
  border-bottom-color: rgba(55, 65, 81, 0.9);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: #9ca3af;
}
.table tbody tr:hover {
  background-color: rgba(31, 41, 55, 0.85);
}

/* "Zebra" für große Tabellen */
.table-striped > tbody > tr:nth-of-type(odd) {
  --bs-table-accent-bg: rgba(15, 23, 42, 0.95);
}

/* 9. Kleine Panel-Titel (z.B. in Cards, Admin) */
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.68rem;
  color: #6b7280;
}

/* 10. Helper für "Highlight"-Boxen (z.B. Turnier-Highlights, Elo, Stats) */
.highlight-box {
  border-radius: 0.9rem;
  background: radial-gradient(circle at top left, rgba(248, 113, 113, 0.12), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(248, 113, 113, 0.35);
  padding: 0.9rem 1rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

/* 11. "Chip"-Style Labels (z.B. Turniertyp, Modus, Elo-Rang) */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
  font-size: 0.75rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: #e5e7eb;
}
.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f97316;
}

/* 12. Top-Navigation – BLDV Navbar */
.bldv-navbar {
  background: radial-gradient(circle at top left, #020617 0, #020617 40%, #000 100%);
  border-bottom: 1px solid rgba(248, 113, 113, 0.6);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}

.bldv-navbar .navbar-brand {
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(248, 113, 113, 0.85);
  color: #f97316 !important;
}

.bldv-navbar .navbar-brand span {
  color: #f9fafb;
}

.bldv-navbar .nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: #e5e7eb;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.bldv-navbar .nav-link:hover {
  color: #f97316;
}

.bldv-navbar .nav-item .nav-link.active,
.bldv-navbar .nav-item.show > .nav-link {
  color: #0b1120;
}

.bldv-navbar .nav-item .nav-link.active::after {
  content: '';
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f97316, #ef4444);
}

.bldv-navbar .badge-coins {
  background: radial-gradient(circle at top, #facc15, #f97316);
  color: #111827;
  box-shadow: 0 0 18px rgba(250, 204, 21, 0.75);
}

.bldv-navbar .nav-link .bi-bell-fill {
  filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.9));
}

/* 13. Profil Hero */
.bldv-profile-hero {
  background: radial-gradient(circle at top left, #020617 0, #020617 40%, #000 100%);
}

.bldv-profile-hero .badge-coins {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* leicht anderes Padding der Container im Profil */
.bldv-profile-hero .container {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

/* PATCH_009: Navbar Dropdown überall korrekt anzeigen (Overflow / Z-Index / Bootstrap Popper) */

/* 1) Stelle sicher, dass die Navbar selbst über Content liegt */
.navbar,
.bldv-navbar,
header .navbar,
.site-header .navbar {
  position: relative;
  z-index: 5000;
}

/* 2) Dropdown darf nicht abgeschnitten werden (häufigster Grund: overflow hidden in Header/Nav-Wrappers) */
header,
nav,
.navbar,
.navbar-collapse,
.navbar-nav,
.topbar,
.top-nav,
.nav-wrapper,
.site-header,
.bldv-navbar,
.bldv-navbar .navbar-collapse,
.bldv-navbar .navbar-nav {
  overflow: visible !important;
}

/* 3) Dropdown korrekt überlagern (Bootstrap 4/5) */
.dropdown,
.nav-item.dropdown {
  position: relative;
}

.dropdown-menu,
.dropdown-menu[data-bs-popper] {
  position: absolute !important;
  z-index: 6000 !important;
}

/* 4) Falls die Navbar fixed/sticky ist, nochmal absichern */
.navbar.fixed-top,
.navbar.sticky-top,
.bldv-navbar.fixed-top,
.bldv-navbar.sticky-top {
  z-index: 5500 !important;
}

/* 5) Wenn irgendwo ein übergeordneter Wrapper das Menü clippt, ist das hier der "Notausgang".
   (Scope bleibt bewusst auf typische Wrapper-Namen begrenzt.) */
#wrapper,
#page,
#layout,
.page,
.wrapper,
.page-wrapper,
.layout,
.main-wrapper {
  overflow: visible !important;
}

/* PATCH_010: Desktop-Navbar Dropdown absolut positionieren (Bootstrap navbar-nav position: static override) */
@media (min-width: 992px) {
  /* Bootstrap setzt .navbar-nav .dropdown-menu oft auf static; auf Desktop wollen wir Overlay */
  .navbar .navbar-nav .dropdown-menu,
  .bldv-navbar .navbar-nav .dropdown-menu,
  .navbar .navbar-nav .dropdown-menu[data-bs-popper],
  .bldv-navbar .navbar-nav .dropdown-menu[data-bs-popper] {
    position: absolute !important;
    inset: auto auto auto auto; /* neutral, Bootstrap/Popper darf top/left setzen */
    z-index: 7000 !important;
  }

  .navbar .navbar-nav .dropdown,
  .bldv-navbar .navbar-nav .dropdown,
  .navbar .navbar-nav .nav-item.dropdown,
  .bldv-navbar .navbar-nav .nav-item.dropdown {
    position: relative;
  }

  /* Rechtsausrichtung soll wirklich rechts bleiben */
  .navbar .navbar-nav .dropdown-menu-end,
  .bldv-navbar .navbar-nav .dropdown-menu-end {
    right: 0 !important;
    left: auto !important;
  }
}


/* POT + Rangliste Layout */

/* Layout: POT links, Rangliste rechts */
.pot-rank-row{display:grid;grid-template-columns:minmax(320px,420px) 1fr;gap:18px;align-items:start}
.pot-rank-left{display:flex;justify-content:flex-start}
.pot-rank-right{min-width:0}
.pot-rank-left .pot-card{margin:0;max-width:420px}

/* Rangliste */
.rank-card{border-radius:16px}
.rank-list{list-style:none;padding:0;margin:0}
.rank-item{display:flex;align-items:center;gap:10px;padding:10px 10px;border-bottom:1px solid rgba(255,255,255,.06)}
.rank-item:last-child{border-bottom:none}
.rank-pos{width:28px;height:28px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;
  font-weight:800;font-size:12px;background:rgba(255,255,255,.08);color:#fff}
.rank-name{font-weight:600;color:#e8e8e8;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.rank-item--gold .rank-pos{background:linear-gradient(135deg, rgba(255,215,0,.25), rgba(255,255,255,.08));box-shadow:0 0 0 1px rgba(255,215,0,.35) inset}

/* Mobile stacking */
@media (max-width: 880px){
  .pot-rank-row{grid-template-columns:1fr}
  .pot-rank-left .pot-card{max-width:100%}
}


/* === UserHub Avatar Hard-Fix (Navbar + Dropdown) === */
/* This block is intentionally high-specificity to win against any late-loaded CSS. */
.navbar.bldv-navbar img.bldv-nav-avatar{
  width:28px !important;
  height:28px !important;
  min-width:28px !important;
  min-height:28px !important;
  max-width:28px !important;
  max-height:28px !important;
  border-radius:999px !important;
  object-fit:cover !important;
  display:block !important;
}
.navbar.bldv-navbar .bldv-nav-avatar.bldv-nav-avatar--initial{
  width:28px !important;
  height:28px !important;
  min-width:28px !important;
  min-height:28px !important;
  border-radius:999px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  line-height:1 !important;
}

/* Dropdown avatar (slightly bigger) */
.navbar.bldv-navbar .dropdown-menu.bldv-userhub img.bldv-uh-avatar-img{
  width:34px !important;
  height:34px !important;
  min-width:34px !important;
  min-height:34px !important;
  max-width:34px !important;
  max-height:34px !important;
  border-radius:999px !important;
  object-fit:cover !important;
  display:block !important;
}
.navbar.bldv-navbar .dropdown-menu.bldv-userhub .bldv-uh-avatar{
  width:34px !important;
  height:34px !important;
  min-width:34px !important;
  min-height:34px !important;
  border-radius:999px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  line-height:1 !important;
}

/* Prevent any image inside the userhub dropdown from blowing up the layout */
.navbar.bldv-navbar .dropdown-menu.bldv-userhub img{
  max-width:100% !important;
  height:auto;
}


/* === UserHub: Name + Role inline, Club label underneath === */
.bldv-uh-nameRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  min-width:0;
}
.bldv-uh-nameRow .bldv-uh-name{
  flex:1 1 auto;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.bldv-uh-role{
  flex:0 0 auto;
  font-size:11px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:2px 8px;
  border-radius:999px;
  border:1px solid rgba(248,113,113,.35);
  background:rgba(248,113,113,.10);
  color:rgba(255,255,255,.90);
}
