/*Ressources pdf*/
.doc-list {
  list-style: none;
  padding-left: 0;
}

.doc-list li {
  margin: 10px 0;
}

.doc-list a {
  text-decoration: none;
  color: #ec8f05;
  font-weight: 500;
  transition: color 0.2s ease;
}

.doc-list a:hover {
  color: #d97b00;
}

.download-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-top: 5px;
}

.download-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #ec8f05;
  color: #ffffff !important;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.3s ease;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}

.download-button:hover {
  transform: scale(1.05);
  background-color: #d97706;
  cursor: pointer;
}