.survey-export-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
}

.survey-export-actions a {
  min-height: 38px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 57, 53, .52);
  border-radius: 9px;
  background: rgba(239, 57, 53, .08);
  color: #ff716d;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.survey-export-actions a:hover {
  border-color: #ef3935;
  background: rgba(239, 57, 53, .15);
  color: #fff;
}

@media (max-width: 700px) {
  .survey-export-actions {
    width: 100%;
    justify-content: stretch;
    margin: 10px 0 0;
  }
  .survey-export-actions a { flex: 1; }
}

