/* Global styles */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background: transparent;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #f5f5f5;

  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  gap: 100px;
  align-items: center; /* vertical align card & spotify */
  /* optional: add max-width or width if you want */
}




/* Card */
.card {
  background: #2e2e3f;
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  max-width: 400px;
  width: 100%;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00b0ff;
}

.info {
  flex: 1;
}

.user-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.username {
  font-size: 1.2em;
  font-weight: 600;
}

#copyBtn {
  background: #444;
  border: none;
  color: white;
  padding: 5px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

#copyBtn:hover {
  background: #00b0ff;
}

.status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 8px;
}

.status-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: 40px;
}


/* Status colors */


/* Spotify styles (from your last message) */
.spotify-container {
  margin-top: 2rem;
  text-align: center;
  color: #b9bbbe;
  background: rgba(30, 30, 47, 0.8); /* dark translucent */
  padding: 15px 20px;
  border-radius: 12px;
  max-width: 400px;
}


.spotify-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.spotify-track img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.spotify-track .track-name {
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

.spotify-track .track-artist {
  font-size: 0.9rem;
  color: #b9bbbe;
}

.spotify-embed iframe {
  width: 100% !important;
  height: 100% !important;
  border-radius: 12px;
  pointer-events: auto;
  display: block;
}



.spotify-embed {
  width: 400px;      /* or whatever width you want */
  height: 80px;      /* height for Spotify controls */
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1rem;
  pointer-events: auto;
  box-sizing: border-box;
  background-color: #121212;  /* dark bg for Spotify */
}

