.btn-download-excel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #217346;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-download-excel .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.btn-download-excel:hover {
  background-color: #1b5a37;
  transform: translateY(-1px);
}

.btn-download-excel:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
  .btn-download-excel {
    width: 100%;
    justify-content: center;
  }
}
