* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #9d4edd;
  --primary-dark: #7209b7;
  --primary-light: #c77dff;
  --accent: #00f5ff;
  --accent-glow: #00b4d8;
  --bg-dark: #0a0e27;
  --bg-darker: #050810;
  --text-light: #e0aaff;
  --text-lighter: #f0f0f0;
  --success: #06d6a0;
  --error: #ff006e;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, var(--bg-darker) 0%, #1a0033 50%, var(--bg-dark) 100%);
  color: var(--text-light);
  overflow-x: hidden;
  position: relative;
}

.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.stars::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  box-shadow:
    100px 100px white, 200px 150px white, 300px 80px white,
    400px 200px white, 500px 50px white, 150px 300px white,
    250px 250px white, 350px 350px white, 450px 100px white,
    550px 200px white, 80px 250px white, 600px 350px white;
  opacity: 0.3;
  animation: twinkle 5s infinite;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  text-align: center;
  margin: 40px 0;
  animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo h1 {
  font-size: 4rem;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
  letter-spacing: 2px;
}

.tagline {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 300;
  letter-spacing: 1px;
}

.voting-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.input-group {
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.mobile-number-input {
  width: 100%;
  padding: 16px 20px;
  font-size: 1.1rem;
  background: rgba(114, 9, 183, 0.2);
  border: 2px solid var(--primary);
  border-radius: 12px;
  color: var(--text-lighter);
  transition: all 0.3s ease;
}
  


.username-input::placeholder {
  color: rgba(224, 170, 255, 0.5);
}

.username-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
  background: rgba(114, 9, 183, 0.3);
}

.info-text {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--accent-glow);
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 100%;
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.team-card {
  background: linear-gradient(135deg, rgba(114, 9, 183, 0.3), rgba(58, 12, 163, 0.2));
  border: 2px solid rgba(157, 78, 221, 0.5);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.team-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.team-card:hover {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(114, 9, 183, 0.5), rgba(58, 12, 163, 0.4));
  box-shadow: 0 0 30px rgba(157, 78, 221, 0.6), 0 0 60px rgba(0, 245, 255, 0.2);
  transform: translateY(-8px);
}

.team-card.voted {
  animation: pulse 0.6s ease-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.team-card-content {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.team-card h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--text-lighter);
}

/* Hide vote count from voting page */
.vote-count {
  display: none;
}

/* Add team icon styling */
.team-icon {
  font-size: 3rem;
  margin: 15px 0;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Add vote status badge styling */
.vote-status-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--success), #00d4aa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 20px rgba(6, 214, 160, 0.6);
}

.vote-status-badge.voted-badge-active {
  opacity: 1;
  transform: scale(1);
  animation: badge-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes badge-pop {
  0% {
    transform: scale(0) rotate(-20deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

.vote-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.vote-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.vote-button {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: 2px solid var(--accent);
  color: var(--text-lighter);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
  position: relative;
  z-index: 1;
}

.vote-button:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.6), 0 0 15px rgba(157, 78, 221, 0.8);
  transform: scale(1.05);
}

.vote-button:active {
  transform: scale(0.98);
}

/* Style disabled voted button */
.vote-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  background: linear-gradient(135deg, var(--success), #00d4aa);
  border-color: var(--success);
  box-shadow: 0 0 20px rgba(6, 214, 160, 0.5);
}

.vote-button.voted-button {
  background: linear-gradient(135deg, var(--success), #00d4aa);
  border-color: var(--success);
}

.vote-button.voted-button:hover {
  cursor: not-allowed;
  transform: scale(1);
  box-shadow: 0 0 20px rgba(6, 214, 160, 0.5);
}

.message {
  display: none;
  padding: 16px 24px;
  border-radius: 10px;
  font-weight: 600;
  animation: slideUp 0.4s ease-out;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.message.success {
  background: linear-gradient(135deg, rgba(6, 214, 160, 0.95), rgba(0, 180, 216, 0.95));
  color: var(--bg-darker);
  border: 2px solid var(--success);
  box-shadow: 0 0 30px rgba(6, 214, 160, 0.8);
  font-size: 1.1rem;
}

/* Sparkle animation for success messages */
.message.sparkle {
  animation: sparkle-message 0.6s ease-out;
}

@keyframes sparkle-message {
  0% {
    transform: translateX(-50%) scale(0.8);
    opacity: 0;
  }
  50% {
    transform: translateX(-50%) scale(1.1);
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}

.message.error {
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.9), rgba(199, 125, 255, 0.9));
  color: var(--text-lighter);
  border: 2px solid var(--error);
}

.footer {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(157, 78, 221, 0.3);
  color: var(--text-light);
  font-size: 0.9rem;
}

.admin-link {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 16px;
  background: rgba(114, 9, 183, 0.4);
  border: 1px solid var(--primary);
  color: var(--accent);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.admin-link:hover {
  background: rgba(114, 9, 183, 0.6);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

/* Admin Styles */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-controls {
  display: flex;
  gap: 15px;
}

.logout-button {
  padding: 10px 20px;
  background: rgba(255, 0, 110, 0.2);
  border: 1px solid var(--error);
  color: var(--error);
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logout-button:hover {
  background: rgba(255, 0, 110, 0.4);
  box-shadow: 0 0 15px rgba(255, 0, 110, 0.3);
}

.admin-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}

.section-title {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 20px;
  text-align: center;
}

.leaderboard-wrapper {
  background: rgba(114, 9, 183, 0.15);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.leaderboard {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.leaderboard-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(58, 12, 163, 0.3);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
  animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.leaderboard-row:hover {
  background: rgba(58, 12, 163, 0.5);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.rank {
  font-size: 2rem;
  font-weight: bold;
  min-width: 50px;
  text-align: center;
}

.team-info {
  flex: 1;
}

.team-info h3 {
  font-size: 1.3rem;
  color: var(--text-lighter);
}

.vote-info {
  text-align: right;
}

.votes {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.admin-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.action-button {
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: 2px solid var(--accent);
  color: var(--text-lighter);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.action-button:hover {
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.6), 0 0 15px rgba(157, 78, 221, 0.8);
  transform: scale(1.05);
}

.action-button.primary {
  font-size: 1.1rem;
  padding: 16px 40px;
}

/* Admin Card Styles */
.admin-card {
  background: rgba(114, 9, 183, 0.15);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(10px);
  margin-bottom: 30px;
}

.admin-card h3 {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.add-team-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.add-team-form input {
  flex: 1;
  min-width: 200px;
}

.add-team-form button {
  flex-shrink: 0;
}

/* Team Management Styles */
.team-management {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.team-control {
  background: rgba(58, 12, 163, 0.3);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 10px;
  padding: 16px;
  transition: all 0.3s ease;
}

.team-control:hover {
  border-color: var(--accent);
  background: rgba(58, 12, 163, 0.5);
}

.team-info-row {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.team-name-label {
  font-weight: 600;
  color: var(--text-lighter);
  flex: 1;
  min-width: 150px;
}

.team-votes {
  color: var(--accent);
  font-weight: bold;
}

.team-status {
  font-size: 0.9rem;
  padding: 4px 8px;
  border-radius: 6px;
}

.team-status.active {
  color: var(--success);
}

.team-status.inactive {
  color: #888;
}

.team-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-toggle,
.btn-delete {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-toggle {
  background: rgba(0, 245, 255, 0.2);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-toggle:hover {
  background: rgba(0, 245, 255, 0.4);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.btn-delete {
  background: rgba(255, 0, 110, 0.2);
  color: var(--error);
  border: 1px solid var(--error);
}

.btn-delete:hover {
  background: rgba(255, 0, 110, 0.4);
  box-shadow: 0 0 15px rgba(255, 0, 110, 0.3);
}

/* Statistics Summary Styles */
.stats-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.stat-box {
  background: rgba(114, 9, 183, 0.2);
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent);
  text-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
}

/* Detailed Leaderboard Styles */
.detailed-leaderboard {
  background: rgba(114, 9, 183, 0.15);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(10px);
  margin: 40px 0;
}

.leaderboard-detailed {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.leaderboard-detail-row {
  display: grid;
  grid-template-columns: 40px 150px 1fr 150px;
  gap: 15px;
  align-items: center;
  padding: 12px;
  background: rgba(58, 12, 163, 0.3);
  border-radius: 8px;
  border: 1px solid rgba(0, 245, 255, 0.1);
  transition: all 0.3s ease;
}

.leaderboard-detail-row:hover {
  background: rgba(58, 12, 163, 0.5);
  border-color: var(--accent);
}

.detail-rank {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--accent);
  text-align: center;
}

.detail-name {
  font-weight: 600;
  color: var(--text-lighter);
}

.detail-bar-container {
  height: 24px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  overflow: hidden;
}

.detail-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.5s ease;
  border-radius: 12px;
}

.detail-stats {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  font-size: 0.9rem;
}

.detail-votes {
  color: var(--text-light);
}

.detail-percentage {
  color: var(--accent);
  font-weight: bold;
}

/* Login Styles */
.login-form {
  max-width: 400px;
  margin: auto;
  padding: 40px;
  background: rgba(114, 9, 183, 0.2);
  border: 2px solid var(--primary);
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.login-form h1 {
  margin-bottom: 30px;
  color: var(--accent);
}

.login-input {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 15px;
  background: rgba(114, 9, 183, 0.2);
  border: 2px solid var(--primary);
  border-radius: 10px;
  color: var(--text-lighter);
  font-size: 1rem;
}

.login-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.error-message {
  color: var(--error);
  margin-bottom: 20px;
  font-weight: 600;
}

.back-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-link:hover {
  text-decoration: underline;
  color: var(--primary-light);
}

/* Results Styles */
.results-container {
  justify-content: space-between;
}

.results-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  position: relative;
}

.podium-position {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 30px 20px;
  background: linear-gradient(135deg, rgba(114, 9, 183, 0.3), rgba(0, 245, 255, 0.1));
  border: 2px solid var(--primary);
  border-radius: 12px 12px 0 0;
  min-width: 180px;
  animation: popIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(50px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.podium-position.tall {
  height: 320px;
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(0, 245, 255, 0.6);
}

.podium-position.medium {
  height: 240px;
}

.podium-position.short {
  height: 160px;
}

.medal-icon {
  font-size: 4rem;
  margin-bottom: 15px;
}

.team-name {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--text-lighter);
  margin-bottom: 10px;
  text-align: center;
}

.vote-count-large {
  font-size: 2.5rem;
  color: var(--accent);
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
}

/* Vote Percentage in Podium */
.vote-percentage {
  font-size: 1.1rem;
  color: var(--accent-glow);
  font-weight: 600;
}

.position-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.results-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

#confetti {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
}
/* ============================= */
/* 📱 MOBILE RESPONSIVE FIXES    */
/* ============================= */

/* Small phones (max 480px) */
@media (max-width: 480px) {
  .logo h1 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 0.9rem;
  }

  .stats-summary {
    grid-template-columns: 1fr;
  }

  .stat-box {
    padding: 16px;
  }

  .podium {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
  }

  .podium-position {
    min-width: 90%;
    width: 100%;
    height: auto !important;
    padding: 20px;
  }

  .medal-icon {
    font-size: 3rem;
  }

  .team-name {
    font-size: 1.2rem;
  }

  .vote-count-large {
    font-size: 2rem;
  }

  .results-actions {
    flex-direction: column;
    width: 100%;
  }

  .action-button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .leaderboard-detail-row {
    grid-template-columns: 30px 1fr;
    grid-template-areas:
      "rank name"
      "bar bar"
      "stats stats";
    gap: 10px;
  }

  .detail-rank {
    grid-area: rank;
  }

  .detail-name {
    grid-area: name;
    text-align: left;
  }

  .detail-bar-container {
    grid-area: bar;
    height: 16px;
  }

  .detail-stats {
    grid-area: stats;
    justify-content: space-between;
  }

  .vote-button {
    font-size: 0.9rem;
    padding: 12px;
  }

  .team-card h2 {
    font-size: 1.3rem;
  }

  .team-icon {
    font-size: 2.5rem;
  }
}

/* Tablets (481px–768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .logo h1 {
    font-size: 2.8rem;
  }

  .stats-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .podium {
    gap: 15px;
    flex-wrap: wrap;
  }

  .podium-position {
    min-width: 150px;
    height: auto;
    padding: 20px;
  }

  .leaderboard-detail-row {
    grid-template-columns: 40px 120px 1fr 100px;
    gap: 10px;
  }

  .detail-name {
    font-size: 0.95rem;
  }

  .detail-votes,
  .detail-percentage {
    font-size: 0.85rem;
  }
}

/* Laptops / small desktops (769px–1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .logo h1 {
    font-size: 3.2rem;
  }

  .podium {
    gap: 20px;
  }

  .podium-position {
    min-width: 160px;
  }

  .leaderboard-detail-row {
    grid-template-columns: 50px 150px 1fr 120px;
  }
}

/* General small screen tweaks */
@media (max-width: 1024px) {
  body {
    padding: 0 10px;
  }

  .container {
    width: 95%;
    padding: 10px;
  }

  .results-section {
    gap: 40px;
  }

  .leaderboard-detailed {
    gap: 10px;
  }

  .team-card {
    padding: 16px;
  }

  .vote-button {
    font-size: 1rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .leaderboard-detail-row {
    padding: 10px;
  }
}






