.pdf-skills {
  text-align: left;
  padding: 15px;
  margin-top: 10px;
}

.pdf-title {
  margin-top: 10px;
  margin-bottom: 0px;
}

.pdf-subtitle {
  margin: 0;
}

.marginlr {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

/* PDF Download Icon Button */
.pdf-download-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  color: white;
  background-color: #231E39;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  font-size: 20px;
}

.pdf-download-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.pdf-download-icon:active {
  transform: scale(0.95);
}

/* Mobile PDF canvas styling */
#pdfFiles canvas {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* PDF iframe styling */
#pdfFiles iframe {
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pdf-download-icon {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
    font-size: 18px;
  }
  
  .pdf-skills {
    padding: 10px;
  }
}