.resume {
  background-color: white;
  padding: 30px;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  font-size: 14px;
}

.resume-header {
  display: flex;
  margin-bottom: 25px;
  gap: 20px;
}

.profile-image-container {
  flex-shrink: 0;
}

.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--light-gray);
  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-content {
  flex-grow: 1;
}

.resume h1 {
  font-size: 28px;
  margin-bottom: 5px;
  color: var(--text-color);
}

.resume-header p {
  margin-bottom: 10px;
  color: var(--dark-gray);
}

.resume-header #preview-title {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
}

.resume-section {
  margin-bottom: 25px;
}

.resume-section h2 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--medium-gray);
}

.experience-item, .education-item, .project-item {
  margin-bottom: 15px;
}

.item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.item-title {
  font-weight: 600;
}

.item-subtitle {
  color: var(--dark-gray);
}

.item-date {
  color: var(--dark-gray);
  font-size: 13px;
}

.item-description {
  margin-top: 5px;
  white-space: pre-line;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-item {
  background-color: var(--light-gray);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 13px;
}

.language-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.language-level {
  color: var(--dark-gray);
  font-size: 13px;
}

@media print {
  body {
    background-color: white;
  }
  
  .app-container {
    padding: 0;
    max-width: none;
  }
  
  header, .sidebar, .form-container {
    display: none;
  }
  
  .editor-container {
    display: block;
    height: auto;
  }
  
  .preview-container {
    height: auto;
    overflow: visible;
    padding: 0;
    box-shadow: none;
    background-color: white;
  }
  
  .resume {
    box-shadow: none;
    padding: 0;
  }
} 