.profile-skill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(183, 28, 28, 0.1);
  color: var(--red);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin: 4px;
}

.profile-skill-remove {
  background: none;
  border: none;
  color: var(--red);
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  opacity: 0.7;
}

.profile-skill-remove:hover {
  opacity: 1;
}

.profile-avatar-wrapper {
  position: relative;
}

.profile-avatar-large {
  width: 100px;
  height: 100px;
  overflow: hidden;
}

.avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile-avatar-upload {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 14px;
  transition: transform 0.2s;
}

.profile-avatar-upload:hover {
  transform: scale(1.1);
}

.resume-upload-area {
  border: 2px dashed #ddd;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.resume-upload-area:hover,
.resume-upload-area.dragover {
  border-color: var(--red);
  background: rgba(183, 28, 28, 0.03);
}

.resume-upload-area i {
  font-size: 2.5rem;
  color: #ccc;
  margin-bottom: 12px;
}

.resume-upload-area p {
  color: #666;
  margin-bottom: 4px;
}

.resume-upload-area small {
  color: #999;
}

#resumeUploaded {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.resume-file-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.resume-file-info i {
  font-size: 2rem;
  color: #dc3545;
  margin-bottom: 0;
}

.resume-file-info strong {
  display: block;
  color: var(--dark);
}

.resume-file-info small {
  color: #666;
}

.resume-actions {
  display: flex;
  gap: 8px;
}

.resume-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
}

.resume-actions .btn i {
  font-size: 14px;
}

.experience-item,
.education-item {
  background: var(--gray);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
}

.experience-item:last-child,
.education-item:last-child {
  margin-bottom: 0;
}

.experience-header,
.education-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.experience-title,
.education-title {
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 4px;
  font-size: 1rem;
}

.experience-company,
.education-school {
  color: var(--red);
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 500;
}

.experience-dates,
.education-dates {
  color: #888;
  font-size: 13px;
  margin: 0;
}

.experience-desc,
.education-desc {
  color: #666;
  font-size: 14px;
  margin: 12px 0 0;
  line-height: 1.6;
}
