/* Button Fixes CSS */

/* Fix for Download CV and Download Cover Letter buttons to have the same width */
.download-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.download-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  text-align: center;
  box-sizing: border-box;
}

/* Override any other styles that might affect button width */
.btn-cv,
.btn-cover {
  width: 100% !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 100% !important;
  max-width: 100% !important;
}

/* Ensure text content is styled the same */
.btn-cv span,
.btn-cover span {
  flex: 1;
  text-align: center;
}

/* Fix for any potential parent container issues */
.profile-links {
  width: 100%;
}