/* pdf-export.css  teste hospedagem*/

#btn-exportar-pdf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c0392b;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
  font-family: inherit;
  width: 100%;
  justify-content: center;
}

#btn-exportar-pdf:hover {
  background: #a93226;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(192, 57, 43, 0.3);
}

#btn-exportar-pdf:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

#btn-exportar-pdf i {
  font-size: 1.1rem;
}