/* Normal player marker */
.marker-ring {
    width: 20px;
    height: 20px;
    background-color: white;
    border: 3px solid #FF533F; /* Gudnak Accent */
    border-radius: 9999px; /* full circle */
    box-sizing: border-box;
  }

  /* LFG player marker with glowing effect */
  .marker-lfg-ring {
    width: 24px;
    height: 24px;
    padding: 2px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #6366f1, #ec4899, #6366f1);
    background-size: 600% 600%;
    animation: glowing-ring 3s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .marker-inner {
    width: 100%;
    height: 100%;
    background-color: white;
    border: 3px solid #FF533F; /* Gudnak Accent */
    border-radius: 9999px;
    box-sizing: border-box;
  }

  /* Cluster marker */
  .custom-cluster {
    background-color: #FF533F;
    color: white;
    border-radius: 9999px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 40px;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 0 4px white; /* outer white ring */
  }

  /* LFG glowing ring animation */
  @keyframes glowing-ring {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

/* Styles for the map on player.html */
.player-map {
    height: 300px;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Apply Gudnak accent to markers on player.html */
.player-map .leaflet-marker-icon {
    border: 3px solid #FF533F; /* Gudnak Accent */
    border-radius: 50%;
}

/* Cluster marker styles for player.html */
.player-map .custom-cluster {
    background-color: #FF533F;
    color: white;
    border-radius: 9999px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 40px;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 0 4px white; /* outer white ring */
}