body {
  color: #333; /* Dark text color */
}

#content {
  width: 80%;
  margin: 20px auto;
}

.guildIdentity .user-card {
  display: grid; /* Use grid layout */
  grid-template-columns: 60px 1fr auto; /* Three columns: logo, info, button */
  gap: 15px; /* Spacing between grid items */
  align-items: center; /* Vertically center items */
  background-color: #1a6ecc;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.guildIdentity .user-card img {
  grid-column: 1; /* Place logo in the first column */
}

.guildIdentity .user-info {
  grid-column: 2; /* Place user info in the second column */
}

.guildIdentity .user-card button {
  grid-column: 3; /* Place button in the third column */
}

.guildIdentity .user-card:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* More pronounced shadow */
}

.guildIdentity .avatar {
  object-fit: contain;
  width: 60px;
  height: 60px;
  border: 2px solid #ddd; /* Light border */
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid #555; /* Add a border to the avatar */
}

.guildIdentity .user-id {
  color: #2b2525; /* Slightly darker text */
}

.guildIdentity .user-info {
  display: flex;
  flex-direction: column;
}

.guildIdentity .username {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 5px;
}

.guildIdentity .user-id {
  font-size: 0.9em;
  color: #ccc;
}
