.profile-container {
  max-width: 700px;
  margin: 30px auto;
  background: #f9f9f9;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}

.profile-container h2 {
  margin-bottom: 15px;
  border-bottom: 2px solid #e2e2e2;
  padding-bottom: 8px;
  color: #333;
}

.profile-info p {
  font-size: 16px;
  margin: 8px 0;
}

.articles-list {
  margin-top: 30px;
}

.articles-list h3 {
  margin-bottom: 10px;
  color: #555;
}

.article-item {
  background: white;
  border-radius: 6px;
  padding: 12px 20px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: background-color 0.3s ease;
}

.article-item:hover {
  background-color: #f1f1f1;
}

.article-item p.status {
  color: #888;
  font-size: 14px;
  margin-top: 5px;
}

.article-item p.status.rejected {
  color: red;
  font-weight: bold;
}