/* Container */
.resume-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Header layout */
.resume-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.resume-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

/* Download button */
.download-btn {
  display: flex;
  align-items: center;
  gap: 6px;

  padding: 8px 14px;
  border-radius: 8px;

  background-color: #0095f6;
  color: white;
  font-size: 14px;
  font-weight: 600;

  text-decoration: none;
  transition: all 0.2s ease;
}

.download-btn:hover {
  background-color: #0077cc;
  transform: translateY(-1px);
}

/* PDF viewer */
.pdf-viewer iframe {
  width: 100%;
  height: 800px;
  border: none;
}