/* User Information Styles */
.user-info-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.user-info-panel {
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  & .user-name-link {
    text-decoration: none;
    color: inherit;
    &:hover {
      color: var(--accent-primary); /* Standardized variable */
    }
  }
  & h1 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 5px;
    color: var(--accent-primary); /* Use consistent var for yellow */
  }
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* Social Icons Styles */
.social-icons {
  display: flex;
  gap: 1rem;
  opacity: 1;
  transition: opacity 0.5s;
  margin-bottom: 10px;
  margin-top: 5px;
  color: var(--text-secondary) !important; /* Use var for muted text */
  & a {
    color: var(--text-secondary) !important;
    font-size: 24px;
    transition: color 0.3s;
    &:hover {
      color: var(--accent-primary) !important;
    }
  }
}

.user-location-container {
  display: flex;
  margin-top: 5px;
  align-items: center;
  gap: 5px; /* Adjust the gap between the icon and the text */
  & .material-symbols-outlined {
    font-size: 1.2em; /* Adjust the size of the icon */
    color: var(--text-secondary) !important; 
  }
  & h2 {
    margin: 0;
  }
}

/* Light Mode Adjustments */
@media (prefers-color-scheme: light) {
  .social-icons {
    color: var(--text-secondary) !important;
    & a {
      color: var(--text-secondary) !important;
    }
  }
  .user-location-container .material-symbols-outlined {
    color: var(--text-secondary) !important;
  }
}

/* Responsive Design */
@media (max-width: 600px) {
  .profile-pic {
    width: 120px;
    height: 120px;
  }
  .social-icons {
    gap: 0.8rem;
    font-size: 20px;
  }
}