/* Profile Page */
.user-profile-page {
  width: 80%;
  margin: 0 auto;
}

.cover-photo {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    margin-bottom: 30px;
}

.profile-main-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
}

/* Generic Card */
.card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Left Column */
.profile-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.profile-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.custom-profile-picture {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
}


/* Middle Column */

.profile-middle {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Adds spacing between the new post and activity feed */
}
.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.activity-card textarea {
    width: 95%;
    height: 60px;
    padding: 10px;
    resize: none;
    border: 1px solid #ddd;
    border-radius: 6px;
}
.user-post {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
}
.user-post .post-meta {
    font-size: 12px;
    color: #999;
}

/* Right Column */
.profile-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* XP Progress */
.xp-progress-bar {
    background-color: #eee;
    border-radius: 8px;
    height: 10px;
    margin-top: 8px;
}
.xp-progress {
    height: 100%;
    background-color: #4caf50;
    border-radius: 8px;
}

.user-social-icons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.social-icon {
  font-size: 20px;
  color: #333;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #1da1f2; /* Twitter blue, you can adjust per platform */
}


/*ONBOARDING*/
.interest-options label {
  display: inline-block;
  margin: 5px 15px 10px 0;
  font-weight: 500;
}

.success {
  color: green;
  font-weight: bold;
  margin-top: 10px;
}


