.profile-container {
  display: flex;
  gap: 30px;
}

.user-info {
  background-color: #00bcd4;
  color: white;
  padding: 20px;
  border-radius: 12px;
  width: 300px;
  position: relative;
}

.user-info img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.user-info h3 {
  margin-bottom: 5px;
}

.user-info p {
  margin-bottom: 8px;
  font-size: 14px;
}

.edit-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  color: #00bcd4;
  padding: 6px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}

.progress-info {
  flex: 1;
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.progress-info h3 {
  margin-bottom: 20px;
  color: #00bcd4;
}

.proficiency-chart {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
}

.activity-log {
  margin-top: 20px;
}

.activity-log table {
  width: 100%;
  border-collapse: collapse;
}

.activity-log th, .activity-log td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  text-align: left;
  font-size: 14px;
}

.activity-log th {
  background-color: #f1f1f1;
}