/* Profile page styles */

/* Profile Card */
.profile-card {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1.5rem;
  font-family: system-ui, sans-serif;
  color: #222;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.profile-picture {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 4%;
  border: 3px solid #ddd;
}

.profile-info {
  flex: 1;
}

.profile-name {
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
  color: #111;
}

.total-files,
.total-views {
  margin: 0.2rem 0;
  font-size: 0.95rem;
  color: #555;
}

.profile-details {
  border-top: 1px solid #f2f2f2;
  padding-top: 1rem;
}

.profile-details h2 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: #222;
}

.profile-details ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.profile-details li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid #f5f5f5;
}

.profile-details li:last-child {
  border-bottom: none;
}

.profile-details strong {
  color: #444;
}

/* Comments activity */
.comments-activity-container {
  max-width: 900px;
  margin: 1.5rem auto;
  padding: 1rem 1.2rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.comments-activity-container h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #222;
}

.comment-activity {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #333;
}

.comment-activity:last-child {
  margin-bottom: 0;
}

.comment-activity a {
  color: #0077cc;
  text-decoration: none;
  font-weight: 500;
}

.comment-activity a:hover {
  text-decoration: underline;
}


